/* ========================================
   CVE IN SPACE - ABOUT PAGE SPECIFIC STYLES
   Theme: Enhanced Cosmic / Glassmorphism
   ======================================== */

.about-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.2), transparent 75%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section {
    margin-bottom: 120px;
    position: relative;
}

.glass-card {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(99, 102, 241, 0.15);
}

.legacy-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legacy-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.9;
}

.quote-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--accent-light);
    font-weight: 600;
}

.team-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin-top: 50px;
}

.member-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.member-avatar-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.member-avatar-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

.member-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    background: var(--bg-secondary);
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-role-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.role-tag {
    padding: 0.3rem 1rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    .legacy-title {
        font-size: 2rem;
    }
    .about-hero {
        padding-top: 140px;
    }
}
