/* ===== FONT FACE DECLARATIONS ===== */
@font-face {
    font-family: 'Anklepants';
    src: url('../images/anklepants.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-cyan: #0abdf0;
    --primary-pink: #fe0101;
    --primary-purple: #a855f7;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --card-bg: rgba(20, 20, 20, 0.8);
    
    /* Fonts */
    --font-primary: 'Barlow', sans-serif;
    --font-secondary: 'K2D', sans-serif;
    --font-headings: 'Anklepants', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* 2025 Responsive Breakpoints */
    --bp-mobile-xs: 320px;      /* Extra small mobile (portrait) */
    --bp-mobile-sm: 360px;      /* Standard Android (360×800) */
    --bp-mobile-md: 390px;      /* iPhone 12/13/14 (390×844) */
    --bp-mobile-lg: 480px;      /* Small mobile (landscape) */
    --bp-mobile-xl: 600px;      /* Large phones landscape */
    --bp-tablet-sm: 768px;      /* Small tablets (portrait) */
    --bp-tablet-lg: 1024px;     /* Large tablets (landscape) */
    --bp-desktop-sm: 1280px;    /* Small desktops/laptops */
    --bp-desktop-md: 1440px;    /* Large desktops */
    --bp-desktop-lg: 1920px;    /* Standard HD */
    --bp-desktop-xl: 2560px;    /* Ultra-wide/4K */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide default cursor only when custom cursor is active on desktop */
@media (hover: hover) and (pointer: fine) {
    body.custom-cursor-active,
    body.custom-cursor-active * {
        cursor: none !important;
    }
}

/* Show default cursor on touch devices and hide custom cursor */
@media (hover: none) and (pointer: coarse) {
    body, * {
        cursor: auto !important;
    }
    
    .custom-cursor {
        display: none !important;
    }
}

/* ===== HEADING STYLES ===== */
h1, h2, h3, h4, h5, h6,
.glitch-text,
.section-title,
.world-title,
.twitch-section-title {
    font-family: var(--font-headings);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 2px solid rgba(10, 189, 240, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(10, 189, 240, 0.15);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(10, 189, 240, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.08);
}

.logo-main {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(10, 189, 240, 0.4));
}

.logo-container:hover .logo-main {
    filter: drop-shadow(0 0 25px rgba(10, 189, 240, 0.8));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(10, 189, 240, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
    display: none;
}

.logo-container:hover .logo-glow {
    display: none;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-pink));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(10, 189, 240, 0.5);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    width: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.5) 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(10, 189, 240, 0.03) 2px, rgba(10, 189, 240, 0.03) 4px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: clamp(20px, 5vw, 40px) clamp(10px, 3vw, 20px);
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: clamp(200px, 35vw, 600px);
    width: auto;
    margin-bottom: clamp(10px, 2vw, 20px);
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 20px rgba(10, 189, 240, 0.5));
    animation: fadeIn 1s ease-out;
}

.glitch-text {
    font-size: clamp(28px, 8vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 8px);
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1.1;
    margin: 0;
}

/* Glitch animation removed - static gradient only */

.hero-subtitle {
    font-size: clamp(14px, 3vw, 24px);
    margin: clamp(15px, 2vw, 20px) 0 clamp(20px, 3vw, 40px);
    color: var(--gray-text);
    letter-spacing: clamp(0.5px, 0.5vw, 2px);
}

.hero-buttons {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: clamp(10px, 1.2vw, 15px) clamp(20px, 4vw, 40px);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--light-text);
    box-shadow: 0 5px 20px rgba(10, 189, 240, 0.4);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(10, 189, 240, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-cyan);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: clamp(20px, 3vw, 30px);
    height: clamp(35px, 6vw, 50px);
    border: 2px solid var(--primary-cyan);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: var(--section-padding);
    background: var(--darker-bg);
}

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

.section-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-text);
    font-family: var(--font-secondary);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-video {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feature-video video {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-cyan);
    font-weight: 700;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-text);
    font-family: var(--font-secondary);
}

/* ===== PROCEDURAL WORLD SECTION ===== */
.procedural-world {
    position: relative;
    padding: 150px 0;
    min-height: 600px;
    overflow: hidden;
}

.world-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.world-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.world-video-bg .overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.world-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.world-icon {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}

.world-subtitle {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.world-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.world-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-text);
    font-family: var(--font-secondary);
}

/* ===== TWITCH INTEGRATION SECTION ===== */
.twitch-integration {
    padding: var(--section-padding);
    background: var(--darker-bg);
}

.twitch-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Thumbnail Styles */
.video-thumbnail-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-thumbnail-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 70px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.play-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-thumbnail-link:hover .play-icon {
    filter: brightness(1.2);
}

.video-credit {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
}

.video-credit a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.video-credit a:hover {
    text-decoration: underline;
}

.twitch-section-title {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.twitch-faq {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.twitch-qa {
    background: rgba(20, 20, 20, 0.6);
    border-left: 3px solid var(--primary-cyan);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.twitch-qa:hover {
    background: rgba(20, 20, 20, 0.8);
    border-left-color: var(--primary-purple);
}

.qa-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.qa-question:hover {
    color: var(--primary-cyan);
}

.qa-question:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

.qa-question .qa-label {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    flex-shrink: 0;
}

.qa-question h4 {
    font-size: 19px;
    margin: 0;
    color: var(--light-text);
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.qa-question:hover h4 {
    color: var(--primary-cyan);
}

.qa-toggle {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--primary-cyan);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-toggle svg {
    transition: transform 0.3s ease;
}

.twitch-qa.expanded .qa-toggle svg {
    transform: rotate(180deg);
}

.qa-answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-left: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.twitch-qa.expanded .qa-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px;
}

.qa-answer .qa-label {
    color: #00ff88;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
}

.qa-content {
    flex: 1;
}

.qa-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.qa-content p:last-child {
    margin-bottom: 0;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(10, 189, 240, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(10, 189, 240, 0.2);
    border-color: var(--primary-cyan);
}

.faq-item h3 {
    font-size: 27px;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.faq-item a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.faq-item a:hover {
    color: var(--primary-purple);
}

/* ===== MERCH SECTION ===== */
.merch {
    padding: var(--section-padding);
    background: var(--darker-bg);
    text-align: center;
}

.merch-banner {
    margin: 60px 0 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.merch-banner:hover {
    transform: scale(1.02);
}

.merch-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== UPDATES SECTION ===== */
.updates {
    padding: var(--section-padding);
    background: var(--dark-bg);
    text-align: center;
}

.updates-subtitle {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gray-text);
    font-weight: 600;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.update-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.update-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 40px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-card:hover .card-overlay {
    transform: translateY(0);
}

.update-card:hover img {
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    padding: 80px 0 0;
    border-top: 2px solid rgba(10, 189, 240, 0.3);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0 40px;
    align-items: start;
}

/* Footer Brand Section with Logos */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logos {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 0 1 auto;
    min-width: 100px;
}

.footer-main-logo,
.footer-studio-logo,
.footer-publisher-logo {
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(10, 189, 240, 0.2));
}

.footer-main-logo:hover,
.footer-studio-logo:hover,
.footer-publisher-logo:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 4px 12px rgba(10, 189, 240, 0.4));
}

.logo-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-cyan);
    font-weight: 600;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
    font-family: var(--font-headings);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
    font-family: var(--font-secondary);
}

.footer-copyright {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
    opacity: 0.8;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    margin: 0;
}

.footer-column ul li a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-secondary);
}

.footer-column ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-8px);
    display: inline-block;
    transition: all 0.3s ease;
    color: var(--primary-cyan);
}

.footer-column ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 8px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* SEO Text Section */
.footer-seo {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 189, 240, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(10, 189, 240, 0.2);
    border-radius: 12px;
    margin: 40px 0;
}

.footer-seo p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 0;
    font-family: var(--font-secondary);
}

.footer-seo strong {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    
    border-top: 1px solid rgba(10, 189, 240, 0.2);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-text {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
}

.heart {
    color: var(--primary-pink);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logos {
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1; /* Make brand section full width */
    }
    
    .footer-logos {
        justify-content: flex-start;
    }
    
    .footer-seo {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr; /* Three columns for GAME, COMMUNITY, RESOURCES */
        gap: 20px;
        padding: 40px 0 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1; /* Make brand section full width */
        margin-bottom: 10px;
    }
    
    .footer-logos {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-main-logo,
    .footer-studio-logo,
    .footer-publisher-logo {
        height: 50px;
    }
    
    .footer-brand-info {
        text-align: center;
    }
    
    .footer-brand-info h3 {
        font-size: 20px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-column {
        gap: 15px; /* Tighter spacing for mobile */
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 12px;
        text-align: center;
    }
    
    .footer-column ul {
        gap: 8px; /* Tighter link spacing */
        align-items: center;
    }
    
    .footer-column ul li {
        text-align: center;
    }
    
    .footer-column ul li a {
        font-size: 11px;
    }
    
    /* Remove arrow indicator on mobile centered layout */
    .footer-column ul li a::before {
        display: none;
    }
    
    .footer-column ul li a:hover {
        padding-left: 0;
    }
    
    .footer-seo {
        padding: 20px;
    }
    
    .footer-seo p {
        font-size: 13px;
    }
    
    .footer-bottom-text {
        font-size: 12px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(10, 189, 240, 0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(10, 189, 240, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */

/* 
 * 2025 BREAKPOINT STRATEGY
 * Based on BrowserStack Responsive Design Guidelines
 * 
 * Approach: Hybrid (Device-based + Content-based)
 * 
 * MOBILE BREAKPOINTS (Most Common 2025 Devices):
 * - 320px-359px:  Extra small mobile (smallest modern devices)
 * - 360px-389px:  Standard Android (360×800 - most common globally)
 * - 390px-480px:  iPhone 12/13/14/15 (390×844) & Google Pixel (393×873)
 * - 481px-600px:  Small mobile landscape
 * 
 * TABLET BREAKPOINTS:
 * - 601px-768px:  Small tablets portrait (iPad Mini)
 * - 769px-1024px: Large tablets landscape (iPad, iPad Air)
 * 
 * DESKTOP BREAKPOINTS:
 * - 1025px-1280px: Small desktops/laptops
 * - 1281px-1440px: Large desktops (1366×768, 1440p)
 * - 1441px-1920px: HD displays (1920×1080)
 * - 1921px-2560px: Full HD / QHD
 * - 2560px+:       Ultra-wide / 4K displays
 * 
 * KEY FEATURES:
 * - Fluid scaling with clamp() between breakpoints
 * - Device-specific optimizations for top 2025 devices
 * - Orientation-aware breakpoints
 * - Touch-friendly targets on mobile (44px minimum)
 * - Zoom-friendly at all breakpoints (80%-200%)
 */

/* ===== ORIENTATION BREAKPOINTS ===== */

/* General mobile fix - disable distracting animations on all mobile/tablet devices */
@media (max-width: 768px) {
    /* Disable distracting color animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
}

/* Mobile Portrait Orientation */
@media (max-width: 768px) and (orientation: portrait) {
    .hero-content {
        padding: clamp(25px, 5vh, 40px) clamp(15px, 4vw, 25px);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        min-height: 44px; /* Touch-friendly minimum */
    }
}

/* Mobile Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
    }
    
    .hero-logo {
        max-height: 150px;
    }
    
    .glitch-text {
        font-size: clamp(20px, 5vw, 40px);
    }
    
    .hero-subtitle {
        font-size: clamp(11px, 2vw, 14px);
    }
    
    .scroll-indicator {
        bottom: 10px;
    }
}

/* Tablet Portrait Orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .twitch-layout {
        grid-template-columns: 1fr;
    }
}

/* ===== DESKTOP BREAKPOINTS (2025 STANDARD) ===== */

/* Ultra-wide screens (2560x1440 and above) */
@media (min-width: 2560px) {
    .glitch-text {
        font-size: 100px;
        letter-spacing: 10px;
    }
    
    .hero-logo {
        max-height: 700px;
    }
    
    .hero-subtitle {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .btn {
        padding: 18px 50px;
        font-size: 18px;
    }
}

/* Large screens (1920x1080 to 2560x1440) */
@media (min-width: 1921px) and (max-width: 2559px) {
    .glitch-text {
        font-size: 90px;
        letter-spacing: 9px;
    }
    
    .hero-logo {
        max-height: 650px;
    }
    
    .hero-subtitle {
        font-size: 28px;
        letter-spacing: 2.5px;
    }
}

/* Standard desktop (1200px to 1920px) */
@media (min-width: 1201px) and (max-width: 1920px) {
    .glitch-text {
        font-size: 70px;
        letter-spacing: 7px;
    }
    
    .hero-logo {
        max-height: 500px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .feature-item {
        gap: 40px;
    }
}

/* Laptop/Small Desktop (992px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .glitch-text {
        font-size: 60px;
        letter-spacing: 5px;
    }
    
    .hero-logo {
        max-height: 400px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .feature-item {
        gap: 40px;
    }
}

/* Tablet landscape (768px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .glitch-text {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .hero-logo {
        max-height: 320px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    /* === MOBILE MENU FOR TABLETS === */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 28px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* === FEATURES - STACKED LAYOUT === */
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .feature-video {
        order: 1;
    }
    
    .feature-content {
        order: 2;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 36px;
    }
    
    .feature-content p {
        font-size: 17px;
    }
    
    /* === TWITCH - STACKED LAYOUT === */
    .twitch-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .video-container,
    .video-thumbnail-container {
        order: 1;
    }
    
    .twitch-faq {
        order: 2;
    }
    
    /* === FOOTER === */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small Mobile Landscape - 481px–600px (2025 Standard) */
@media (min-width: 481px) and (max-width: 600px) {
    /* Disable distracting animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .glitch-text {
        font-size: 34px;
        letter-spacing: 2px;
    }
    
    .hero-logo {
        max-height: 250px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 0.7px;
    }
    
    .btn {
        padding: 11px 26px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .feature-content h3 {
        font-size: 30px;
    }
}

/* Small Tablets Portrait - 601px–768px (2025 Standard) */
@media (min-width: 601px) and (max-width: 768px) {
    /* Disable distracting animations on mobile/tablet for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .glitch-text {
        font-size: 40px;
        letter-spacing: 3px;
    }
    
    .hero-logo {
        max-height: 300px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        letter-spacing: 0.9px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    /* === MOBILE MENU === */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 26px;
        text-align: center;
    }
    
    /* === FEATURES === */
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
        direction: ltr;
    }
    
    .feature-video {
        order: 1;
    }
    
    .feature-content {
        order: 2;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 32px;
    }
    
    /* === TWITCH === */
    .twitch-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-container,
    .video-thumbnail-container {
        order: 1;
    }
    
    .twitch-faq {
        order: 2;
    }
    
    /* === OTHER === */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        font-size: 18px;
    }
}

/* Tablet portrait (640px to 768px - Legacy support) */
@media (min-width: 641px) and (max-width: 768px) {
    .glitch-text {
        font-size: 40px;
        letter-spacing: 3px;
    }
    
    .hero-logo {
        max-height: 280px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 0.8px;
    }
    
    .btn {
        padding: 11px 28px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices (below 640px) - COMPREHENSIVE MOBILE FIX */
@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }
    
    /* Disable distracting animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        /* Use a static gradient instead of animated one */
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    /* === NAVIGATION === */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 24px;
        text-align: center;
    }
    
    /* === HERO === */
    .glitch-text {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero-logo {
        max-height: 240px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 12px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        min-height: 44px;
    }
    
    /* === FEATURES SECTION - MOBILE LAYOUT === */
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    /* Video on top, full width */
    .feature-video {
        order: 1;
        width: 100%;
    }
    
    /* Content below, centered */
    .feature-content {
        order: 2;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-content p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    /* === TWITCH INTEGRATION - MOBILE LAYOUT === */
    .twitch-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Video container on top */
    .video-container,
    .video-thumbnail-container {
        order: 1;
        width: 100%;
    }
    
    /* Q&A below, centered */
    .twitch-faq {
        order: 2;
    }
    
    .twitch-section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .twitch-qa {
        padding: 20px;
    }
    
    .qa-question h4 {
        font-size: 16px;
    }
    
    .qa-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Prevent super tall answers */
    .qa-answer {
        margin-left: 0;
    }
    
    .twitch-qa.expanded .qa-answer {
        max-height: 500px;
        overflow-y: auto;
    }
    
    /* === WORLD SECTION === */
    .world-title {
        font-size: 32px;
    }
    
    /* === FAQ SECTION === */
    .faq-item {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* === FOOTER - MOBILE LAYOUT === */
    /* Keep 3-column layout for GAME, COMMUNITY, RESOURCES */
    .footer-column {
        align-items: center;
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    /* === UPDATES SECTION === */
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* === MISC === */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .platform-btn {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Side-by-side platform buttons on mobile */
    .modal .platform-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }
    
    .modal .platform-buttons .platform-btn {
        flex: 1 1 0;
        min-width: 0;
    }
    
    /* Icon-focused mobile layout */
    .modal .platform-buttons .platform-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .modal .platform-buttons .platform-icon img {
        width: 50px;
        height: 50px;
    }
    
    .modal .platform-buttons .platform-name {
        font-size: 11px;
        margin-bottom: 0;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Hide subtext and arrow on mobile */
    .modal .platform-buttons .platform-action {
        display: none;
    }
    
    .modal .platform-buttons .arrow-icon {
        display: none;
    }
    
    .modal .platform-buttons .platform-btn-content {
        align-items: center;
    }
}

/* ===== 2025 DEVICE-SPECIFIC BREAKPOINTS ===== */

/* Extra Small Mobile - 320px (Smallest modern devices) */
@media (min-width: 320px) and (max-width: 359px) {
    /* Disable distracting animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .glitch-text {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .hero-logo {
        max-height: 180px;
    }
    
    .hero-subtitle {
        font-size: 11px;
    }
    
    .btn {
        padding: 9px 16px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
}

/* Standard Android - 360×800 (Most common mobile globally) */
@media (min-width: 360px) and (max-width: 389px) {
    /* Disable distracting animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .glitch-text {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
    
    .hero-logo {
        max-height: 210px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.6px;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 12px;
        min-height: 44px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* === FEATURES === */
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        direction: ltr;
    }
    
    .feature-video {
        order: 1;
    }
    
    .feature-content {
        order: 2;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    /* === TWITCH === */
    .twitch-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-container,
    .video-thumbnail-container {
        order: 1;
    }
    
    .twitch-faq {
        order: 2;
    }
    
    .twitch-qa {
        padding: 16px;
    }
    
    .qa-question h4 {
        font-size: 14px;
    }
    
    .qa-content p {
        font-size: 13px;
    }
    
    /* === OTHER === */
    .world-title {
        font-size: 30px;
    }
}

/* iPhone 12/13/14 - 390×844 & Google Pixel - 393×873 */
@media (min-width: 390px) and (max-width: 480px) {
    /* Disable distracting animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .glitch-text {
        font-size: 30px;
        letter-spacing: 1.8px;
    }
    
    .hero-logo {
        max-height: 225px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 0.7px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    /* === FEATURES === */
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        direction: ltr;
    }
    
    .feature-video {
        order: 1;
    }
    
    .feature-content {
        order: 2;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 26px;
    }
    
    .feature-content p {
        font-size: 15px;
    }
    
    /* === TWITCH === */
    .twitch-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-container,
    .video-thumbnail-container {
        order: 1;
    }
    
    .twitch-faq {
        order: 2;
    }
    
    .twitch-qa {
        padding: 18px;
    }
    
    .qa-question h4 {
        font-size: 15px;
    }
    
    .qa-content p {
        font-size: 13px;
    }
    
    /* === OTHER === */
    .world-title {
        font-size: 32px;
    }
    
    .intro-text {
        font-size: 16px;
    }
}

/* Small mobile (below 375px - Legacy support) */
@media (max-width: 375px) {
    /* Disable distracting animations on mobile for headings */
    .glitch-text,
    h1.glitch-text,
    h2.glitch-text,
    h3.glitch-text,
    h1,
    h2,
    h3 {
        animation: none !important;
        transition: none !important;
        --gradient-x: 50% !important;
        --gradient-y: 50% !important;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .glitch-text {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .hero-logo {
        max-height: 200px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 26px;
    }
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border: 2px solid rgba(10, 189, 240, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 60px rgba(10, 189, 240, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 36px;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-pink);
    background: rgba(254, 1, 1, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
    font-family: var(--font-headings);
}

.modal-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    font-family: var(--font-secondary);
}

.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(10, 189, 240, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(10, 189, 240, 0.3);
    background: rgba(20, 20, 20, 1);
}

.platform-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 189, 240, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.platform-btn:hover .platform-icon {
    background: rgba(10, 189, 240, 0.2);
    transform: scale(1.05);
}

.platform-btn:hover .platform-icon img {
    filter: brightness(1.1);
}

.arrow-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.platform-btn:hover .arrow-icon {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.platform-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.platform-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light-text);
    font-family: var(--font-headings);
}

.platform-action {
    font-size: 16px;
    color: var(--gray-text);
    font-family: var(--font-secondary);
}

.platform-btn:hover .platform-action {
    color: var(--primary-cyan);
}

.quest-btn:hover {
    border-color: var(--primary-cyan);
}

.steam-btn:hover {
    border-color: var(--primary-cyan);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ===== KEYWORD HIGHLIGHT ===== */
.highlight {
    color: var(--primary-cyan);
    font-weight: 700;
}


