:root {
    --bg-body: #05070e;
    --bg-nav-footer: #070912;
    --text-primary: #ffffff;
    --accent-cyan: #00fff7;
    --accent-purple: #b84dff;
    --accent-pink: #ff3d9a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--bg-body);
    color: var(--text-primary);
    cursor: none;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hide default cursor on all interactive elements */
a, button, input, textarea, select, .team-card, .nav-link, .social-link, .logo img, .menu-toggle {
    cursor: none !important;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    a, button, input, textarea, select, .team-card, .nav-link, .social-link, .logo img, .menu-toggle {
        cursor: auto !important;
    }
    
    .custom-cursor {
        display: none;
    }
    
    * {
        -webkit-tap-highlight-color: rgba(0, 255, 247, 0.2);
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    background-color: rgba(0, 255, 247, 0.1);
    backdrop-filter: blur(5px);
    left: 0;
    top: 0;
}

.cursor-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
    transition: font-size 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.custom-cursor.hover {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 255, 247, 0.2);
    border-color: var(--accent-purple);
}

.custom-cursor.hover .cursor-text {
    font-size: 24px;
    color: var(--accent-purple);
    text-shadow: 0 0 15px var(--accent-purple);
}

/* Navbar */
.navbar {
    background-color: var(--bg-nav-footer);
    padding: 1.2rem 3rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 247, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 247, 0.5));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, filter;
}

.logo img:hover {
    filter: drop-shadow(0 0 25px rgba(0, 255, 247, 0.9));
    transform: scale(1.08) rotate(5deg);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px var(--accent-cyan);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

@media (hover: none) and (pointer: coarse) {
    .menu-toggle {
        cursor: pointer !important;
    }
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    animation: glitchTitle 5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 247, 0.5);
    position: relative;
    will-change: transform;
}

@keyframes glitchTitle {
    0%, 94%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    95% {
        transform: translate(-3px, 3px) skew(0.5deg);
        filter: hue-rotate(90deg);
    }
    96% {
        transform: translate(3px, -3px) skew(-0.5deg);
        filter: hue-rotate(180deg);
    }
    97% {
        transform: translate(-2px, -2px) skew(0.3deg);
        filter: hue-rotate(270deg);
    }
    98% {
        transform: translate(2px, 2px) skew(-0.3deg);
        filter: hue-rotate(360deg);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.hero-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 247, 0.1), transparent 70%);
    animation: pulse 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    z-index: 1;
    will-change: transform, opacity;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}

/* Section Title */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team-section {
    padding: 8rem 2rem;
    background-color: var(--bg-nav-footer);
}

.team-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.team-cards {
    display: flex;
    gap: 2rem;
    animation: scrollTeam 40s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes scrollTeam {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.team-card {
    min-width: 280px;
    background: rgba(7, 9, 18, 0.6);
    border: 2px solid rgba(0, 255, 247, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    will-change: transform, border-color, box-shadow;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 50px rgba(184, 77, 255, 0.5);
}

.team-pfp {
    margin-bottom: 1.5rem;
}

.pfp-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    border: 3px solid var(--accent-cyan);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform, box-shadow;
}

.team-card:hover .pfp-placeholder {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 40px var(--accent-purple);
    border-color: var(--accent-pink);
    color: var(--accent-purple);
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Game Videos Section */
.videos-section {
    padding: 8rem 2rem;
    background-color: var(--bg-body);
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.video-category {
    margin-bottom: 5rem;
}

.video-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-nav-footer);
    border: 2px solid rgba(0, 255, 247, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, border-color, box-shadow;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(184, 77, 255, 0.4);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.video-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.video-card:hover .video-placeholder svg {
    color: var(--accent-purple);
    transform: scale(1.2);
}

.video-placeholder span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
}

/* Art & Artwork Section */
.artwork-section {
    padding: 8rem 2rem;
    background-color: var(--bg-nav-footer);
}

.artwork-content {
    max-width: 1400px;
    margin: 0 auto;
}

.art-style-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.subsection-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.art-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    opacity: 0.9;
}

.artwork-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.artwork-item {
    background: var(--bg-body);
    border: 2px solid rgba(0, 255, 247, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.artwork-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(184, 77, 255, 0.4);
}

.artwork-placeholder {
    aspect-ratio: 4/3;
    background: var(--bg-nav-footer);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.artwork-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.artwork-item:hover .artwork-placeholder svg {
    color: var(--accent-purple);
    transform: scale(1.1) rotate(5deg);
}

.artwork-caption {
    padding: 1.5rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Game Mechanics Section */
.mechanics-section {
    padding: 8rem 2rem;
    background-color: var(--bg-body);
}

.mechanics-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.mechanic-card {
    background: var(--bg-nav-footer);
    border: 2px solid rgba(0, 255, 247, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, border-color, box-shadow;
}

.mechanic-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 50px rgba(184, 77, 255, 0.5);
}

.mechanic-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mechanic-card:hover .mechanic-icon {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px var(--accent-purple);
}

.mechanic-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.mechanic-card:hover .mechanic-icon svg {
    color: var(--accent-purple);
}

.mechanic-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mechanic-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.85;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background-color: var(--bg-body);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(7, 9, 18, 0.6);
    border: 2px solid rgba(0, 255, 247, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, border-color, box-shadow;
}

.about-content:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 50px rgba(184, 77, 255, 0.4);
    transform: translateY(-5px);
}

.about-text {
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* Socials Section */
.socials-section {
    padding: 8rem 2rem;
    background-color: var(--bg-nav-footer);
}

.socials-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: rgba(7, 9, 18, 0.6);
    border: 2px solid rgba(0, 255, 247, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    will-change: transform, border-color, background;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(184, 77, 255, 0.1);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateX(25px) scale(1.02);
    border-color: var(--accent-purple);
    background: rgba(184, 77, 255, 0.15);
    box-shadow: 0 0 40px rgba(184, 77, 255, 0.5);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-cyan);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform, box-shadow;
}

.social-link:hover .social-icon {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 0 30px var(--accent-purple);
    background: var(--accent-purple);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    color: var(--bg-body);
}

/* Footer */
.footer {
    background-color: var(--bg-nav-footer);
    padding: 3rem 2rem;
    border-top: 2px solid rgba(0, 255, 247, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 247, 0.5));
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 7rem);
    }

    .team-card {
        min-width: 250px;
    }

    .about-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(7, 9, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(0, 255, 247, 0.3);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 2px;
    }

    .team-section,
    .about-section,
    .socials-section {
        padding: 5rem 1rem;
    }

    .coming-soon {
        min-height: 60vh;
        padding: 3rem 1rem;
    }

    .videos-section,
    .artwork-section,
    .mechanics-section {
        padding: 5rem 1rem;
    }

    .video-grid,
    .artwork-gallery,
    .mechanics-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-title,
    .subsection-title {
        font-size: 1.5rem;
    }

    .art-description,
    .mechanic-description {
        font-size: 0.95rem;
    }

    .mechanic-icon {
        width: 70px;
        height: 70px;
    }

    .mechanic-icon svg {
        width: 35px;
        height: 35px;
    }

    .team-card {
        min-width: 220px;
        padding: 1.5rem;
    }

    .pfp-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.85rem;
    }

    .coming-soon-title {
        font-size: clamp(2rem, 8vw, 4rem);
        letter-spacing: 3px;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .glitch-line {
        width: 200px;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .social-link {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
        gap: 1.5rem;
    }

    .social-link:hover {
        transform: translateX(10px);
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .footer {
        padding: 2.5rem 1.5rem;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    /* Hide custom cursor on mobile */
    .custom-cursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        width: 80%;
    }

    .hero {
        padding-top: 70px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .team-section,
    .about-section,
    .socials-section {
        padding: 4rem 1rem;
    }

    .coming-soon {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .videos-section,
    .artwork-section,
    .mechanics-section {
        padding: 4rem 1rem;
    }

    .category-title,
    .subsection-title {
        font-size: 1.3rem;
    }

    .mechanic-card {
        padding: 2rem;
    }

    .mechanic-icon {
        width: 60px;
        height: 60px;
    }

    .mechanic-icon svg {
        width: 30px;
        height: 30px;
    }

    .mechanic-title {
        font-size: 1.2rem;
    }

    .team-card {
        min-width: 200px;
        padding: 1.25rem;
    }

    .pfp-placeholder {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .coming-soon-title {
        font-size: clamp(1.75rem, 9vw, 3rem);
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .coming-soon-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .glitch-line {
        width: 150px;
        height: 2px;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .social-link {
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .social-link:hover {
        transform: translateY(-5px);
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* Landscape phones and small tablets */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }

    .coming-soon {
        min-height: 100vh;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .team-section,
    .about-section,
    .socials-section {
        padding: 4rem 2rem;
    }
}

/* Large desktops */
@media (min-width: 1920px) {
    .nav-container,
    .footer-content {
        max-width: 1600px;
    }

    .about-content {
        max-width: 1100px;
    }

    .socials-container {
        max-width: 1000px;
    }

    .hero-title {
        font-size: 10rem;
    }

    .section-title {
        font-size: 5rem;
    }

    .about-text {
        font-size: 1.4rem;
    }
}