/* Members */
.members-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.member-pod {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-pod:hover {
    border-color: #10b981;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.member-visual {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8fafc;
}

.member-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f8fafc;
}

.member-avatar-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #f1f5f9;
}

.avatar-icon {
    width: 80px;
    height: 80px;
}

.member-identity {
    text-align: center;
    padding: 1rem;
}

.member-names {
    margin-bottom: 0.75rem;
}

.name-primary {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.2rem 0;
}

.name-secondary {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-style: italic;
}

.member-bio-data {
    margin-bottom: 1rem;
}

.bio-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0.2rem;
    padding: 0.25rem 0.5rem;
    background: #f8fafc;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #475569;
}

.bio-icon {
    font-size: 0.875rem;
}

.member-connections {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.75rem;
}

.connections-label {
    font-size: 0.65rem;
    color: #64748b;
    margin-bottom: 0.375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connections-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.connection-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.connection-link:hover {
    text-decoration: none;
}

.platform-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 968px) {
    .members-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .members-title {
        font-size: 2rem;
    }

    .members-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .member-visual {
        height: 320px;
    }

    .member-pod:nth-child(odd),
    .member-pod:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 480px) {
    .members-revolution-section {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .member-visual {
        height: 280px;
    }

    .member-identity {
        padding: 0.875rem;
    }
}

/* Timeline */
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 3em 0;
    max-width: 1200px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #34b7a7 0%, #2ca89a 100%);
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(52, 183, 167, 0.3);
}
.timeline-item {
    position: relative;
    margin: 3em 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.timeline-item:nth-child(even) {
    animation-delay: 0.2s;
}
.timeline-item:nth-child(odd) {
    animation-delay: 0.1s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.timeline-item:nth-child(even) .timeline-content {
    float: right;
    padding: 25px 35px 20px 35px;
    text-align: left;
}
.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 100%;
    border-style: solid;
    border-width: 12px 15px 12px 0;
    border-color: transparent rgba(255,255,255,0.95) transparent transparent;
    filter: drop-shadow(-2px 0 4px rgba(0,0,0,0.1));
}
.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    text-align: right;
    padding: 25px 35px 20px 35px;
}
.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 100%;
    border-style: solid;
    border-width: 12px 0 12px 15px;
    border-color: transparent transparent transparent rgba(255,255,255,0.95);
    filter: drop-shadow(2px 0 4px rgba(0,0,0,0.1));
}
.timeline-icon {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34b7a7 0%, #2ca89a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(52, 183, 167, 0.4);
    border: 3px solid white;
    transition: all 0.3s ease;
}
.timeline-icon:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 183, 167, 0.6);
}
.timeline-year {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    font-size: 18px;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}
.timeline-year:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}
.timeline-content {
    position: relative;
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
.timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34b7a7 0%, #45c4b4 100%);
}
.timeline-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.timeline-content .work-category {
    display: inline-block;
    font-weight: 600;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(52, 183, 167, 0.3);
    transition: all 0.3s ease;
}

.timeline-content .work-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
    line-height: 1.3;
}
.timeline-content .work-date {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 10px;
}
.timeline-content .work-role {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 8px;
}
.timeline-content .work-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    font-style: italic;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    .timeline-icon {
        left: 30px;
    }
    .timeline-content {
        width: calc(100% - 80px);
        float: none !important;
        text-align: left !important;
        margin-left: 80px;
    }
    .timeline-content::before {
        left: -15px !important;
        right: auto !important;
        border-width: 12px 15px 12px 0 !important;
        border-color: transparent rgba(255,255,255,0.95) transparent transparent !important;
    }
}