@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@200;300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-glass: rgba(15, 15, 15, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-tertiary: #444444;
    --accent: rgb(255, 100, 0);
    --accent-glow: rgba(255, 100, 0, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --shadow: rgba(0, 0, 0, 0.3);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-animation::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}
.bg-animation::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite reverse;
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav:hover {
    background: rgba(15, 15, 15, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}
.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a:hover {
    color: var(--text-primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

.hero {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 2rem;
}
.hero-content {
    text-align: center;
    max-width: 1200px;
    position: relative;
    width: 100%;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    flex-wrap: wrap;
}
.hero-title .word {
    display: flex;
    align-items: center;
    position: relative;
}
.hero-title .word .char {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    animation: charFlip 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-title .logo-char {
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg) scale(0.5);
    animation: logoCharFlip 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-title .logo-char img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}
.hero-title .lambda-char {
    font-size: 1.1em;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    animation: charFlip 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-title .lambda-char img {
    height: 0.7em;
    color: var(--accent);
    vertical-align: middle;
    transform: translateY(-6px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter:
        sepia(1)
        saturate(7000%)
        brightness(0.7)
        hue-rotate(90deg);
    }

.hero-title .word:first-child .char:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:first-child .char:nth-child(2) { animation-delay: 0.3s; }
.hero-title .word:first-child .char:nth-child(3) { animation-delay: 0.4s; }
.hero-title .word:first-child .char:nth-child(4) { animation-delay: 0.5s; }
.hero-title .word:first-child .char:nth-child(5) { animation-delay: 0.6s; }
.hero-title .word:first-child .char:nth-child(6) { animation-delay: 0.7s; }
.hero-title .word:first-child .char:nth-child(7) { animation-delay: 0.8s; }

.hero-title .word:last-child .char:nth-child(1) { animation-delay: 1.0s; }
.hero-title .word:last-child .char:nth-child(2) { animation-delay: 1.1s; }
.hero-title .word:last-child .char:nth-child(3) { animation-delay: 1.2s; }
.hero-title .word:last-child .char:nth-child(4) { animation-delay: 1.3s; }
.hero-title .word:last-child .char:nth-child(5) { animation-delay: 1.4s; }
.hero-title .word:last-child .lambda-char { animation-delay: 1.5s; }
.hero-title .word:last-child .char:nth-child(7) { animation-delay: 1.6s; }
.hero-title .word:last-child .char:nth-child(8) { animation-delay: 1.7s; }
.hero-title .word:last-child .char:nth-child(9) { animation-delay: 1.8s; }
@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3.5rem);
        letter-spacing: 0.06em;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        letter-spacing: 0.04em;
        flex-direction: column;
        gap: 0.1em;
    }
}
.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: aurapulse 3s ease-out 2.5s infinite alternate;
    z-index: -1;
}
.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: subtitleSlide 1.5s cubic-bezier(0.23, 1, 0.32, 1) 2.5s forwards;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}
.hero-subtitle::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    animation: underlineExpand 1s ease-out 3.5s forwards;
}
.hero-description {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    animation: descriptionFade 1.2s ease-out 3.2s forwards;
    font-weight: 400;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    animation: actionsRise 1s cubic-bezier(0.23, 1, 0.32, 1) 4s forwards;
}
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(15, 15, 15, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}

.links-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.link-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    group: hover;
}
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.link-card:hover::before {
    opacity: 1;
}
.link-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.link-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.link-card:hover .link-icon {
    background: var(--accent);
    transform: scale(1.1);
}
.link-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--text-primary);
    transition: fill 0.3s ease;
}
.link-card:hover .link-icon svg {
    fill: var(--bg-primary);
}
.link-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.link-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.team-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
    opacity: 0.3;
}
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem auto;
}
.team-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}
.team-member {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-member:hover::before {
    opacity: 1;
}
.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: all 0.4s ease;
    z-index: 1;
}
.team-member:hover .member-avatar {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow);
}
.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.member-avatar.placeholder {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--text-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}
.member-info {
    position: relative;
    z-index: 1;
}
.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.member-role {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.member-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 60px;
}
.member-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-link:hover::before {
    opacity: 1;
}
.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.social-link:hover svg {
    fill: var(--bg-primary);
    transform: scale(1.1);
}

.social-link.steam {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
}
.social-link.steam:hover {
    background: linear-gradient(135deg, #66c0f4 0%, #00adee 100%);
}

.faq-section {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite;
}
.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}
.faq-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1.5rem;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.faq-item.active {
    border-color: var(--accent-glow);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.faq-item.active::before {
    opacity: 0.1;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}
.faq-icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-secondary);
    transition: all 0.3s ease;
}
.faq-icon::before {
    width: 10px;
    height: 2px;
}
.faq-icon::after {
    width: 2px;
    height: 10px;
}
.faq-item.active .faq-icon {
    border-color: var(--accent);
    background: var(--accent);
    transform: rotate(45deg);
}
.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--bg-primary);
}
.faq-item.active .faq-icon::after {
    opacity: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
    max-height: 1000px;
}
.faq-answer-content {
    padding: 0 2.5rem 2rem 2.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.faq-answer-content p {
    margin-bottom: 1rem;
}
.faq-answer-content p:last-child {
    margin-bottom: 0;
}
.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.faq-answer-content li {
    margin-bottom: 0.5rem;
    color: var(--text-tertiary);
}
.faq-answer-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.faq-answer-content code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent);
    border: 1px solid var(--border);
}
.faq-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 0.5rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

footer {
    margin-top: 8rem;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.footer-content {
    max-width: 600px;
    margin: 0 auto;
}
.disclaimer {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.footer-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.5;
}


@keyframes charFlip {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) rotateX(45deg);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}
@keyframes logoCharFlip {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg) scale(0.5);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) rotateX(45deg) scale(0.8);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
    }
}
@keyframes aurapulse {
    0% {
        width: 600px;
        height: 300px;
        opacity: 0.1;
    }
    100% {
        width: 800px;
        height: 400px;
        opacity: 0.3;
    }
}
@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 200px;
        opacity: 0.6;
    }
}
@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        letter-spacing: 0.3em;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0.15em;
    }
}
@keyframes descriptionFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
@keyframes actionsRise {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
        padding: 1rem 1.5rem;
    }
    .nav-content {
        gap: 2rem;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .links-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .team-member {
        padding: 2rem 1.5rem;
    }
    .member-socials {
        gap: 0.8rem;
    }
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}