/* ===================================
   AniMo Gaming - Rockstar Edition
   GTA VI Inspired Cinematic Design
   =================================== */

:root {
    /* Rockstar Palette */
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-orange: #f59e0b;
    --accent-green: #10b981;
    --bg-primary: #050505;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body.locked {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===================================
   Background Elements (Fix for Visibility)
   =================================== */
.video-background,
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    transition: opacity 1s ease;
    /* Smooth fade out */
    height: 100vh;
    z-index: 9000;
    /* Above nav/content, below splash */
    pointer-events: none;
    overflow: hidden;
    /* background: var(--bg-primary); REMOVED to allow video visibility */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.video-overlay,
.grid-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    display: none;
    /* Hidden to make video solid visible */
}

canvas#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   Scroll Snapping Sections
   =================================== */
section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 80px;
    padding: 80px 0;
}


/* ===================================
   Ken Burns Animation (Rockstar Style)
   =================================== */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.slide-background,
.game-image,
.zone-showcase-image,
.about-img {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1;
    display: block;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    .logo-icon {
        font-size: 2.2rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-left: 3rem;
    margin-right: auto;
}

.nav-link {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(200, 200, 200, 0.8) 50%,
            rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 0.7rem 1.4rem;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.03);
    /* Fallback for container */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Base style for the glass tab background since text-clipping uses the background */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: inherit;
    z-index: -1;
    transition: inherit;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    display: none;
}

/* Navigation Search Bar */
.nav-search {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
    position: relative;
    z-index: 1001;
}

@media (max-width: 1200px) {
    .nav-search {
        margin: 0 2rem;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .nav-search {
        display: none;
    }
}

.search-container {
    position: relative;
    width: 100%;
}

#gameSearchInput {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem 1.2rem 0.8rem 3rem;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#gameSearchInput:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

#gameSearchInput:focus+.search-icon {
    color: var(--accent-cyan);
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 500px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
    padding: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    z-index: 2000;
}


/* Plans Section Styles Re-implemented */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.plan-card.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.search-item-img {
    width: 45px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-item-info h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
}

.search-item-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
}

.nav-link:hover {
    text-shadow:
        0 0 10px var(--accent-cyan),
        0 0 20px var(--accent-cyan),
        0 0 40px rgba(6, 182, 212, 0.5);
    animation: lightningFlicker 0.15s infinite alternate;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes lightningFlicker {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 10px var(--accent-cyan);
    }

    100% {
        opacity: 1;
        text-shadow:
            0 0 20px var(--accent-cyan),
            0 0 40px var(--accent-cyan),
            0 0 60px rgba(6, 182, 212, 0.8);
    }
}

.cta-button {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.cta-button.profile-active {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.cta-button.profile-active::before {
    content: '👤 ';
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

/* Utility to hide video smoothly */
.video-background.hidden {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.86, 0, 0.07, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .cta-button {
        display: none;
        /* Hide on mobile to save space, or move into nav-links */
    }
}

/* ===================================
   Hero Slider (GTA VI Style)
   =================================== */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.slide-content {
    position: absolute;
    bottom: 12%;
    left: 8%;
    max-width: 900px;
    z-index: 10;
}

.slide-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.slide-title {
    font-size: clamp(2.2rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}

@media (max-width: 768px) {
    .slide-title {
        letter-spacing: -1px;
    }
}

.slide-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .slide-stats {
        gap: 1.5rem;
    }
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
}

.primary-button,
.secondary-button {
    padding: 1.2rem 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.primary-button {
    background: #fff;
    color: #000;
}

.primary-button:hover {
    background: var(--accent-cyan);
    color: #fff;
    transform: scale(1.05);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* Verticle Dot Navigation */
.slider-dots {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.dot {
    width: 3px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.5s;
}

.dot.active {
    background: #fff;
    height: 70px;
}

/* ===================================
   Rockstar Style Sections
   =================================== */
.section-header {
    position: relative;
    padding: 100px 4rem 40px;
    z-index: 10;
    text-align: left;
}

.section-badge {
    color: var(--accent-cyan);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.section-description {
    color: #888;
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 1rem;
}

.games-section .section-badge {
    color: var(--game-accent);
}

.games-section .gradient-text-animated {
    background: linear-gradient(135deg, var(--game-accent) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Games Section - Fit to screen */
.games-section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 0 2rem 0;
    /* Tighter padding */
    overflow: hidden;
    background: #000;
}

.section-bg-theme {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(50px) brightness(0.2);
    opacity: 0;
    transition: 1s ease-in-out;
    z-index: 0;
}

.games-section {
    --game-accent: var(--accent-cyan);
    transition: --game-accent 0.5s ease;
}

.section-bg-theme.active {
    opacity: 0.6;
}

.section-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 0;
    pointer-events: none;
}

.section-bg-video.active {
    opacity: 1;
}

.section-bg-theme {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.5);
    opacity: 0;
    transition: 1s ease-in-out;
    z-index: 0;
}


.games-container-3d {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 2000px;
}

.coverflow-wrapper {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    margin-top: 4rem;
}

.coverflow-item {
    position: absolute;
    width: 280px;
    height: 380px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverflow-item.active {
    transform: translate3d(0, 0, 300px);
    z-index: 100;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--game-accent);
    border: 2px solid var(--game-accent);
}

/* 3D Angling */
.coverflow-item.prev-1 {
    transform: translate3d(-240px, 0, 100px) rotateY(45deg);
    z-index: 50;
}

.coverflow-item.next-1 {
    transform: translate3d(240px, 0, 100px) rotateY(-45deg);
    z-index: 50;
}

.coverflow-item.prev-2 {
    transform: translate3d(-440px, 0, 0) rotateY(60deg);
    z-index: 30;
    opacity: 0.6;
}

.coverflow-item.next-2 {
    transform: translate3d(440px, 0, 0) rotateY(-60deg);
    z-index: 30;
    opacity: 0.6;
}

.coverflow-item.prev-3 {
    transform: translate3d(-600px, 0, -100px) rotateY(70deg);
    z-index: 10;
    opacity: 0.2;
}

.coverflow-item.next-3 {
    transform: translate3d(600px, 0, -100px) rotateY(-70deg);
    z-index: 10;
    opacity: 0.2;
}

.coverflow-item.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, -500px);
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.coverflow-item.active:hover img {
    transform: scale(1.1);
}

.game-title-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: 0.4s;
}

.coverflow-item.active .game-title-overlay {
    opacity: 1;
}

.game-title-overlay h4 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.game-title-overlay span {
    color: var(--game-accent);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.coverflow-controls {
    display: flex;
    gap: 2rem;
    margin-top: 5rem;
    z-index: 10;
}

.cover-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.cover-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* Zones - Stable Cinematic Layout */
.zones-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    gap: 0;
}

.zone-showcase-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.zone-showcase-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.zone-showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    padding: 5rem;
}

.zone-showcase-content {
    max-width: 500px;
}

.zone-number {
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.1;
    line-height: 0.8;
    position: absolute;
    top: 10%;
    right: 10%;
}

.zone-showcase-content h3 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

/* ===================================
   Responsive Changes
   =================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .slide-content {
        left: 5%;
        bottom: 15%;
        width: 90%;
    }

    .slide-title {
        font-size: 4rem;
    }

    .section-header {
        padding: 80px 1.5rem 30px;
    }

    .section-title {
        font-size: 3rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .game-card {
        height: 400px;
    }

    .zones-showcase {
        grid-template-columns: 1fr;
    }

    .zone-showcase-item {
        height: 60vh;
    }

    .zone-showcase-overlay {
        padding: 2rem;
    }

    .zone-showcase-content h3 {
        font-size: 2.5rem;
    }

    section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        scroll-snap-align: none;
    }

    html {
        scroll-snap-type: none;
    }
}

/* ===================================
   Avengers Style Announcement (Epic Reveal)
   Modified for GTA VI Style Consistency (Compacted)
   =================================== */
.avengers-reveal {
    text-align: center;
    position: relative;
    padding: 60px 0;
    /* Reduced padding */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

@font-face {
    font-family: 'Pricedown';
    src: url('https://db.onlinewebfonts.com/t/2c8c3683f3e2efce944d1808603612f0.woff2') format('woff2');
    /* Fallback or local if available */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.avengers-reveal .slide-title {
    font-family: 'Pricedown', 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 #000;
    margin-bottom: 1rem;
    /* Compacted */
    line-height: 1;
}

.avengers-reveal .slide-title .gradient-text-animated {
    color: #FFD700;
    /* Gold for better visibility */
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 2px 2px 0 #000;
    display: block;
    /* Ensure it wraps if needed or sits on new line cleanly */
    margin-top: 0.5rem;
}

.avengers-reveal .section-badge {
    font-family: 'Inter', sans-serif;
    letter-spacing: 8px !important;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.countdown-container-epic {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    /* Reduced gap */
    margin: 1.5rem 0;
    /* Reduced margin */
    width: 100%;
}

.countdown-box-epic {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.countdown-box-epic .value {
    font-size: clamp(3rem, 6vw, 5rem);
    /* Slightly smaller max for better fit */
    font-weight: 900;
    font-family: 'Pricedown', 'Orbitron', var(--font-display);
    color: #fff;
    line-height: 1;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #000;
    padding: 0 1rem;
    display: block;
    text-align: center;
}

.countdown-box-epic .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-cyan);
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* Calendar Style */
.epic-calendar {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    margin-top: 3rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.calendar-month {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.calendar-day {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

/* ===================================
   Splash Screen (The Announcement)
   =================================== */
.splash-screen {
    position: fixed;
    inset: 0;
    background: transparent;
    /* Video fully visible */
    /* backdrop-filter: blur(5px); REMOVED for clarity */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.8s ease;
}

.splash-screen.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    max-width: 900px;
    width: 90%;
    transition: opacity 0.5s ease;
}

.splash-content.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===================================
   Contact Form Styles
   =================================== */
.contact-section {
    background: var(--bg-primary);
}

/* Profile Image Upload */
.avatar-wrapper {
    position: relative;
    cursor: pointer;
}

.avatar-upload-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
}

.avatar-wrapper:hover .avatar-upload-overlay {
    opacity: 1;
}

.avatar-upload-overlay svg {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr !important;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.form-group select option {
    background: #111;
    color: #fff;
}

.full-width {
    width: 100%;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .splash-content {
        width: 100%;
        padding: 0 1rem;
    }

    .splash-content .slide-title {
        font-size: 2.5rem !important;
        letter-spacing: -1px;
    }

    .countdown-container-epic {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }

    .countdown-box-epic .value {
        font-size: 2.5rem !important;
    }

    .countdown-box-epic .label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
    }

    .logo-icon {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .primary-button,
    .secondary-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .slide-cta {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* Animations Helper */
.fadeInUp {
    animation: fadeInUp 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apex Tech Showcase Section */
.tech-showcase-section {
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, transparent 80%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tech-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.tech-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Base Tech Card */
.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-content p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Featured Tech (PS6 Concept) */
.featured-tech {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(37, 99, 235, 0.3);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 4rem;
}

.featured-tech .tech-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.tag-concept {
    font-size: 0.7rem;
    background: #3b82f6;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.tech-specs {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tech-specs li {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Stats */
.tech-stat {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-top: auto;
}

.tech-stat span {
    font-size: 3rem;
    color: #fde047;
    /* Yellow Accent */
    margin-right: 0.5rem;
    font-family: var(--font-display);
}

/* Social Footer in Tech Section */
.tech-footer-social {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.tech-footer-social p {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.instagram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.5);
}

.tech-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    .featured-tech {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .featured-tech .tech-content h3 {
        justify-content: center;
    }

    .tech-specs {
        justify-content: center;
    }
}

/* ===================================
   Thor Cursor System (Hammer & Lightning)
   =================================== */
html,
body,
a,
button,
.coverflow-item {
    cursor: none !important;
    /* Hide default cursor */
}

.thor-cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
}

.thor-hammer-icon {
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3ClinearGradient id='headGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d1d5db;stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:%239ca3af;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%234b5563;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23headGrad)' d='M464 48H48c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16z'/%3E%3Cpath fill='%236b7280' d='M48 48l416 0c8.8 0 16 7.2 16 16l0 8c0 -8.8 -7.2 -16 -16 -16l-416 0c-8.8 0 -16 7.2 -16 16l0 -8c0 -8.8 7.2 -16 16 -16z'/%3E%3Cpath fill='%231f2937' d='M464 192l-416 0c-8.8 0 -16 -7.2 -16 -16l0 -8c0 8.8 7.2 16 16 16l416 0c8.8 0 16 -7.2 16 -16l0 8c0 8.8 -7.2 16 -16 16z'/%3E%3Cpath fill='none' stroke='%23374151' stroke-width='4' d='M128 48v160M384 48v160M32 112h448'/%3E%3Crect width='40' height='220' x='236' y='208' fill='%23451a03' rx='4'/%3E%3Cpath fill='%2378350f' d='M236 240l40 0l0 10l-40 0zM236 270l40 0l0 10l-40 0zM236 300l40 0l0 10l-40 0zM236 330l40 0l0 10l-40 0zM236 360l40 0l0 10l-40 0z'/%3E%3Cpath fill='none' stroke='%23451a03' stroke-width='6' d='M256 428c-10 0-20 10-20 25s10 25 20 25s20-10 20-25s-10-25-20-25z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
    transform: rotate(-15deg);
    transition: transform 0.1s ease, filter 0.2s ease;
    position: relative;
    z-index: 10002;
}

/* Constant Worthy Glow */
.thor-cursor-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10000;
}

.thor-cursor-container.clicking .thor-hammer-icon {
    transform: rotate(0deg) scale(0.85);
    filter: drop-shadow(0 0 25px #0ea5e9) brightness(1.3);
}

/* Multi-Arc Lightning Burst */
.lightning-burst {
    position: absolute;
    top: 30%;
    /* Align with hammer head */
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 10005;
}

.lightning-arc {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -75px;
    left: -75px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform-origin: center;
}

.thor-cursor-container.clicking .lightning-arc {
    animation: arcStrikes 0.3s ease-out forwards;
}

@keyframes arcStrikes {
    0% {
        transform: scale(0.5) rotate(var(--rot));
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: scale(1.3) rotate(var(--rot));
        opacity: 1;
    }

    100% {
        transform: scale(1.5) rotate(var(--rot));
        opacity: 0;
    }
}

/* Shockwave Effect */
.hammer-shockwave {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #38bdf8;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
}

.thor-cursor-container.clicking .hammer-shockwave {
    animation: shockwaveAnim 0.4s ease-out forwards;
}

@keyframes shockwaveAnim {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
    }
}

/* Lightning Arc SVG Assets (Procedural) */
.arc-1 {
    --rot: 0deg;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-width='2' d='M50 50L60 30L80 35L90 10'/%3E%3C/svg%3E");
}

.arc-2 {
    --rot: 72deg;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-width='2' d='M50 50L70 60L85 50L100 70'/%3E%3C/svg%3E");
}

.arc-3 {
    --rot: 144deg;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-width='2' d='M50 50L40 70L20 65L10 90'/%3E%3C/svg%3E");
}

.arc-4 {
    --rot: 216deg;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-width='2' d='M50 50L30 40L15 50L0 30'/%3E%3C/svg%3E");
}

.arc-5 {
    --rot: 288deg;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-width='2' d='M50 50L45 25L65 15L55 0'/%3E%3C/svg%3E");
}

.lightning-flash {
    position: fixed;
    inset: 0;
    background: white;
    opacity: 0;
    z-index: 9998;
    pointer-events: none;
}

.lightning-flash.active {
    animation: flashAnim 0.15s ease-out;
}

@keyframes flashAnim {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0.15;
    }

    100% {
        opacity: 0;
    }
}

/* ===================================
   About Us Section Styles
   =================================== */
.about-section {
    padding: 10rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Give more space to images */
    gap: 4rem;
    align-items: start;
}

.about-content {
    position: relative;
    z-index: 10;
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-sub-title {
    font-family: var(--font-display);
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 3rem 0 2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: 0.3s;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .about-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-image-grid {
        grid-template-columns: 1fr;
    }
}

.about-img {
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-img:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent-cyan);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-img.tall {
    grid-row: span 2;
    height: 370px;
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-img {
        height: 200px !important;
    }

    .about-img.tall {
        height: 200px !important;
        grid-row: span 1;
    }

    .about-grid {
        gap: 3rem;
    }

    .section-title {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
    }
}

/* ===================================
   Wolverine Style "Blood Swell" Text
   =================================== */
.wolverine-text {
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to top,
            #dc2626 0%,
            #dc2626 45%,
            #ffffff 55%,
            #ffffff 100%);
    background-size: 100% 200%;
    background-position: 0 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bloodSwell 4s infinite ease-in-out;
    filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.4));
    position: relative;
    display: inline-block;
}

@keyframes bloodSwell {

    0%,
    100% {
        background-position: 0 0%;
    }

    50% {
        background-position: 0 15%;
        /* Red swells upward */
    }
}

.wolverine-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-stroke: 1px rgba(220, 38, 38, 0.2);
    filter: blur(2px);
}