/* ========================================
   CUSTOM FONTS - Premium Typography
   ======================================== */

/* CustomHeading - Bold Weight (700) */
@font-face {
    font-family: 'CustomHeading';
    src: url('font/f1.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CustomHeading - Regular Weight (400) */
@font-face {
    font-family: 'CustomHeading';
    src: url('font/f2.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CustomBody - Medium Weight (500) */
@font-face {
    font-family: 'CustomBody';
    src: url('font/f3.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CustomBody - Regular Weight (400) */
@font-face {
    font-family: 'CustomBody';
    src: url('font/f4.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CustomAccent - Bold Weight (700) */
@font-face {
    font-family: 'CustomAccent';
    src: url('font/f5.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* NTBrickSans - Custom User Font */
@font-face {
    font-family: 'NTBrickSans';
    src: url('assets/NTBrickSans.otf') format('opentype'),
        url('assets/NTBrickSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Enhanced Color Palette - Futuristic Neon */
    --color-bg: #0a0a0f;
    --color-bg-secondary: #050508;
    --color-pink: #FF00D6;
    --color-pink-bright: #FF3DE6;
    --color-purple: #9D4EDD;
    --color-purple-dark: #7B2CBF;
    --color-white: #FFFFFF;
    --color-gray: #9999BB;
    --color-gray-light: #C8C8E1;
    --color-gray-dark: #666688;

    /* Enhanced Neon Glow Effects */
    --glow-pink: 0 0 15px rgba(255, 0, 214, 0.6),
        0 0 30px rgba(255, 0, 214, 0.4),
        0 0 45px rgba(255, 0, 214, 0.2);
    --glow-pink-strong: 0 0 20px rgba(255, 0, 214, 0.8),
        0 0 40px rgba(255, 0, 214, 0.6),
        0 0 60px rgba(255, 0, 214, 0.4);
    --glow-purple: 0 0 15px rgba(157, 78, 221, 0.6),
        0 0 30px rgba(157, 78, 221, 0.4);
    --glow-white: 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);

    /* Typography - Specific Font Assignments */
    --font-heading: 'NTBrickSans', sans-serif;
    /* AAYAM / HERO headings */
    --font-rotating: 'NTBrickSans', sans-serif;
    /* Rotating tech words */
    --font-body: 'NTBrickSans', sans-serif;
    /* Body / Buttons / Forms */
    --font-ui: 'NTBrickSans', sans-serif;
    /* UI elements */

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Text Selection Color */
::selection {
    background-color: var(--color-pink);
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--color-pink);
    color: var(--color-white);
    text-shadow: none;
}

body {
    background: linear-gradient(135deg,
            #0a0a0f 0%,
            #1a0a2f 25%,
            #0f0a1f 50%,
            #1a0a2f 75%,
            #0a0a0f 100%);
    background-attachment: fixed;
    position: relative;
    color: var(--color-white);
    font-family: var(--font-body);
    /* overflow-x: hidden; */

    /* Premium Font Rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
    letter-spacing: 0.3px;
}

/* Animated Background Overlay with Enhanced Depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background-stars.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

#canvas-container {
    display: none;
    /* Hide Three.js canvas in favor of static bg */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Twinkle Container */
#twinkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    /* Below navbar (10000) but above content */
}

.twinkle-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle-anim 3s infinite ease-in-out;
}

@keyframes twinkle-anim {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Navbar - Enhanced Premium Design */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    /* Responsive padding */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 0, 214, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu>a:not(.btn-nav-ticket) {
    display: none;
}

.top-nav:hover {
    border-bottom-color: rgba(255, 0, 214, 0.35);
    background: rgba(10, 10, 15, 0.85);
}

.brand-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
    /* Increased height for better visibility */
}

.brand-logo:hover {
    transform: scale(1.05) rotate(2deg);
    /* Interactive tilt */
    filter: drop-shadow(0 0 15px rgba(255, 0, 214, 0.6));
    /* Glow effect */
}

.nav-logo-img {
    height: 60px;
    /* Adjusted height */
}

.nav-logo-icon {
    height: 100%;
    width: auto;
    object-fit: contain;
    margin-right: 15px;
    /* Spacing between icon and text */
    filter: drop-shadow(0 0 5px rgba(255, 0, 214, 0.4));
}

.brand-main {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
    position: relative;
    text-shadow:
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(255, 0, 214, 0.4);
    font-style: normal;
    line-height: 1;
}

/* Create geometric effect with pseudo-elements */
.brand-main::before {
    content: 'AAYAM';
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-pink);
    z-index: -1;
    letter-spacing: 8px;
    filter: blur(0px);
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-left: 1rem;
    border-left: 2px solid var(--color-pink);
    line-height: 1;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.brand-logo:hover .brand-sub {
    color: var(--color-pink);
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #e2e8f0;
    /* Soft white with blue tint */
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    transition: all 0.4s ease-in-out;
    padding-bottom: 4px;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
    /* Soft highlight */
    transition: width 0.4s ease-in-out;
    box-shadow: none;
}

.nav-link:hover {
    color: var(--color-pink);
    text-shadow: 0 0 15px rgba(255, 0, 214, 0.5);
    font-weight: 700;
    transform: scale(1.1);
}

.nav-link:hover::after {
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
}

.btn-nav-ticket {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    color: #fff;
    font-family: var(--font-body);
    padding: 0.7rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    /* Medium-Bold */
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Subtle depth */
    position: relative;
    overflow: hidden;
}

.btn-nav-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-nav-ticket:hover::before {
    left: 100%;
}

.btn-nav-ticket:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255, 0, 214, 0.4);
}

.btn-nav-ticket:active {
    transform: scale(0.98) translateY(0);
}

/* Hero Poster - Enhanced Layout */
.hero-poster {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 5rem;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    /* Ratio approx 37% - 62% */
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-top: 0;
    width: 95%;
    /* Use slightly more width */
    max-width: 1600px;
}

/* Left Column - Revert to Left Align */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align flex items to start */
    max-width: 100%;
    z-index: 2;
    text-align: left;
}

.hero-overline {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-overline .slash {
    color: var(--color-pink);
    margin-right: 8px;
    text-shadow: var(--glow-pink);
    font-weight: 700;
}

.hero-overline .dim {
    color: var(--color-gray);
}

.poster-headline {
    font-family: 'NTBrickSans', sans-serif !important;
    font-size: 3rem;
    /* Reduced from clamp(3.2rem, 6vw, 4rem) */
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--color-gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    text-align: left;
}

.poster-headline .text-pink {
    color: var(--color-pink);
    -webkit-text-fill-color: var(--color-pink);
    background: none;
    text-shadow: 0 0 10px rgba(255, 0, 214, 0.5);
    /* Simple glow, no glitch */
    font-weight: 800;
    font-size: 4rem;
    /* Reduced from clamp */
    display: block;
    /* Ensure it sits on its own line correctly */
    margin-top: 0.5rem;
}


.poster-headline .italic {
    font-style: italic;
    padding-right: 0px;
}

/* #featured typo removed */

/* Fixed layout for pink text - removed animation/glitch */
.rotating-text {
    display: inline-block;
    font-family: var(--font-rotating);
    color: var(--color-pink) !important;
    -webkit-text-fill-color: var(--color-pink) !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    min-width: 400px;
    /* Fixed width to prevent moving */
    text-align: left;
    vertical-align: baseline;
    position: relative;
    white-space: nowrap;
    overflow: visible;
    text-shadow: 0 0 15px rgba(255, 0, 214, 0.6);
    filter: none;
}

.rotating-text .char {
    display: inline-block;
    /* Removed flip animation */
    opacity: 1;
    transform: none;
}

/* Removed @keyframes flipChar */

@keyframes textFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.poster-desc {
    color: var(--color-gray-light);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.poster-desc .bold {
    font-weight: 700;
    color: var(--color-white);
}

.poster-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: fit-content;
    align-items: flex-start;
    /* Left align form inputs */
    width: 100%;
}

.input-skew {
    background: rgba(255, 255, 255, 0.97);
    border: 2px solid transparent;
    padding: 1.1rem 1.3rem;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #000;
    border-left: 5px solid var(--color-pink);
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 54px;
    font-weight: 500;
}

.input-skew:focus {
    outline: none;
    border-color: var(--color-pink);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 25px rgba(255, 0, 214, 0.5),
        0 0 50px rgba(255, 0, 214, 0.3);
    transform: translateX(8px);
}

.input-skew::placeholder {
    color: #777;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.btn-skew-pink {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    color: #fff;
    border: none;
    padding: 1rem 1.8rem;
    /* Reduced padding */
    font-family: var(--font-body);
    font-size: 1.2rem;
    /* Reduced size */
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    /* clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    box-shadow: var(--glow-pink);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    /* Reduced height */
    touch-action: manipulation;
    letter-spacing: 1.5px;
    width: auto;
    max-width: 350px;
}

.btn-skew-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-skew-pink:hover::before {
    left: 100%;
}

.btn-skew-pink:hover {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
    box-shadow: 0 0 35px rgba(255, 0, 214, 0.9),
        0 0 70px rgba(255, 0, 214, 0.6),
        0 18px 45px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px) scale(1.03);
}

.btn-skew-pink:active {
    transform: translateY(0) scale(0.98);
}

/* Right Side */
.hero-right {
    position: relative;
    height: 550px;
    /* Increased height slightly */
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center content within right column */
    align-items: center;
    transform: scale(0.95);
    /* Increased scale slightly */
}

.graphic-composition {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.big-x {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 720px;
    /* Increased from 600px */
    height: 720px;
    /* Increased from 600px */
    background: url(./assets/asset\ 53.svg);
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 20px;
}

.big-x:hover {
    filter: drop-shadow(0 0 40px rgba(255, 0, 214, 0.2));
}

.star-icon {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    color: var(--color-pink);
    font-size: 10rem;
    animation: pulse-star 3s infinite ease-in-out;
    text-shadow: 0 0 35px var(--color-pink), 0 0 70px var(--color-pink);
    filter: drop-shadow(0 0 25px var(--color-pink));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

@keyframes pulse-star {

    0%,
    100% {
        transform: translateX(-50%) scale(1.6);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
}

/* Update star icon to use asset 52 (falling star) */
.star-icon i {
    display: none;
    /* Hide font-awesome icon */
}

.star-icon::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('assets/asset 52.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* No background color - transparent */
}

.massive-text-group {
    position: relative;
    z-index: 5;
    text-align: center;
}

.massive-ayam {
    font-family: 'NTBrickSans', var(--font-heading);
    font-size: 13rem;
    /* Increased from 10rem */
    line-height: 0.75;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -6px;
    z-index: 5;
    text-shadow: 5px 5px 0px #000, 10px 10px 0px rgba(255, 0, 214, 0.2);
    margin: 0;
    padding: 0;
}

.pink-ring-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    /* Reduced from 120% to fit better */
    height: auto;
    transform: translate(-50%, -50%);
    /* Strictly center */
    pointer-events: none;
    z-index: 10;
    display: none;
}

.pink-bar-container {
    z-index: 5;
    margin-top: -4px;
}

.pink-bar {
    background: var(--color-pink);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Increased from 2rem */
    font-weight: 900;
    padding: 0.7rem 3.5rem;
    transform: skew(-10deg);
    border-radius: 0px;
    letter-spacing: 3px;
    box-shadow: 0 0 40px rgba(255, 0, 214, 0.6);
}

.pink-bar:hover {
    box-shadow: 0 0 60px rgba(255, 0, 214, 0.8),
        0 0 120px rgba(255, 0, 214, 0.5);
}

.bottom-stats {
    margin-top: 1rem;
    z-index: 5;
    text-wrap: nowrap;
    font-style: italic;
    font-size: 4rem;
    font-weight: 800;
    display: flex;
    gap: 3rem;
    position: relative;
    justify-content: center;
    text-transform: uppercase;
}

.tagline {
    position: absolute;
    bottom: -0px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 2rem;
    letter-spacing: 5px;
    /* Base color fallback */
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
    font-weight: 700;

    /* Shining Glass Effect */
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0.35) 30%,
            rgba(255, 255, 255, 0.9) 45%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.9) 55%,
            rgba(255, 255, 255, 0.35) 70%);
    background-size: 250% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Animation: 6s total, shine moves across, then pauses */
    animation: shine-glass 6s infinite linear;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes shine-glass {
    0% {
        background-position: 100% 0;
    }

    20% {
        /* Shine passes through quickly */
        background-position: -100% 0;
    }

    100% {
        /* Stay waiting for the rest of the interval */
        background-position: -100% 0;
    }
}

.stat-pink {
    color: var(--color-pink);
    font-weight: 900;
    margin-right: 5px;
}

.ufo-mascot {
    position: absolute;
    bottom: -160px;
    right: -80px;
    z-index: 10;
    /* Float animation */
    animation: float-mascot 4s infinite ease-in-out;
}

.mascot-img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 214, 0.5));
    transform: rotate(-5deg);
}

@keyframes float-mascot {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Sections - Enhanced Layout */
.section {
    padding: 5rem 0;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 0, 214, 0.3);
}

.section-heading .slash {
    color: var(--color-pink);
    text-shadow: var(--glow-pink);
}

.cursor-star {
    position: absolute;
    background: #e600ff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle-anim 3s infinite ease-in-out;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card-skew {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-left: 4px solid var(--color-pink);
    transform: skew(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.card-skew::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 214, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-skew:hover::before {
    opacity: 1;
}

.card-skew:hover {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-bright) 100%);
    color: #fff;
    transform: skew(-5deg) translateY(-12px);
    box-shadow: 0 0 30px rgba(255, 0, 214, 0.6),
        0 0 60px rgba(255, 0, 214, 0.4),
        0 20px 70px rgba(0, 0, 0, 0.5);
    border-left-color: #fff;
}

.card-skew h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.card-skew p {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.footer-simple {
    text-align: center;
    padding: 3rem 2rem;
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--color-gray-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Twinkling Stars (Diamond Shape) */
.twinkle-star {
    position: absolute;
    background-image: url('assets/asset 56.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    opacity: 0;
    /* Removed clip-path to use the image asset instead */
    animation: twinkle-anim 1s infinite ease-in-out;
}

/* Distant Background Stars (Dots) */
.distant-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    /* Stronger glow and visibility as requested */
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.9);
    animation: distant-glow 8s infinite ease-in-out;
}

@keyframes distant-glow {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }

    50% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.2);
    }
}

/* Floating Particles (Futuristic Effect) */
.floating-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 0, 214, 0.6), rgba(157, 78, 221, 0.3));
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px rgba(255, 0, 214, 0.4);
    animation: floatUp 20s infinite ease-in-out;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }

    10% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50vh) translateX(20px);
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(-20px);
    }
}



/* Mouse Sparkle Trail */
.cursor-star {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    animation: sparkle-bounce-fall 3s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    background: transparent !important;
    background-color: transparent !important;
    /* Will be set by JS */
}

.cursor-star i {
    display: block;
    background: transparent;
}

@keyframes sparkle-bounce-fall {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        transform: translate(-50%, -50%) scale(1.1) rotate(20deg);
        opacity: 1;
    }

    40% {
        transform: translate(-50%, -50%) scale(1) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 150px) scale(0) rotate(180deg);
        opacity: 0;
    }
}

@keyframes sparkle-fall {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 100px) scale(0.5) rotate(180deg);
        opacity: 0;
    }

}

@keyframes twinkle-anim {
    0% {
        opacity: 0;
        transform: scale(0.4) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(2) rotate(45deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.4) rotate(90deg);
    }
}

/* ========================================
   RESPONSIVE DESIGN - Mobile First
   ======================================== */

/* Tablet & Small Desktop (768px - 1024px) */
@media (max-width: 1024px) {
    .top-nav {
        /* background: #fc0c0c; */
        display: flex;
        flex-direction: row;
        /* ✅ keep horizontal */
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        /* gap: 0.5rem; */
    }

    .star-icon {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 115;
        color: var(--color-pink);
        font-size: 8rem;
        animation: pulse-star 3s infinite ease-in-out;
        text-shadow: 0 0 35px var(--color-pink), 0 0 70px var(--color-pink);
        filter: drop-shadow(0 0 25px var(--color-pink));
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
    }

    .nav-menu>a:not(.btn-nav-ticket) {
        display: none;
    }

    .btn-nav-ticket {
        font-size: 1.2rem;
        padding: 0.2rem 0.8rem;
        margin-right: 2rem;

    }


    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        order: 1;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .poster-headline {
        font-size: 4.5rem;
    }

    .hero-overline {
        font-size: 1.2rem;
    }

    .poster-desc {
        font-size: 1rem;
    }

    .hero-right {
        height: 500px;
    }

    .massive-ayam {
        font-size: 12rem;
    }

    .pink-bar {
        font-size: 3rem;
        padding: 0.6rem 2rem;
    }

    .bottom-stats {
        font-size: 2.5rem;
        gap: 2rem;
    }

    .big-x {
        width: 600px;
        height: 600px;
    }

    .mascot-img {
        width: 220px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .rotating-text {
        min-width: 450px;
        width: 450px;
    }

    .poster-headline {
        font-size: 3.6rem;
        text-align: center;
    }

    .poster-headline .text-pink {
        font-size: 3.8rem;
        text-align: center;
        width: 100%;
        padding: 0.5rem;
    }

    .btn-skew-pink {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

}

/* Mobile Landscape & Small Tablets (600px - 767px) */
@media (max-width: 767px) {
    .top-nav {
        padding: 1rem 1.5rem;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1rem;
    }


    .brand-logo {
        font-size: 1.3rem;
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        display: none;
        /* Hide on mobile, can add hamburger menu later */
    }

    .container {
        width: 95%;
    }

    .hero-poster {
        padding-top: 120px;
        padding-bottom: 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        height: 450px;
        margin-bottom: 2rem;
        margin-top: 0;
    }

    .hero-overline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .poster-headline {
        font-size: 3.5rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .poster-desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .poster-form {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .input-skew {
        width: 100%;
        max-width: 350px;
    }

    .input-skew {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .btn-skew-pink {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }

    .massive-ayam {
        font-size: 8rem;
        letter-spacing: -4px;
    }

    .pink-bar {
        font-size: 2rem;
        padding: 0.5rem 1.5rem;
        letter-spacing: 2px;
    }

    .bottom-stats {
        font-size: 2rem;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .tagline {
        font-size: 0.8rem;
        letter-spacing: 3px;
        bottom: -60px;
    }

    .big-x {
        width: 450px;
        height: 450px;
    }

    .star-icon {
        font-size: 3rem;
        top: -40px;
    }

    .ufo-mascot {
        bottom: -60px;
        right: -30px;
    }

    .mascot-img {
        width: 180px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-skew {
        padding: 2rem;
    }

    .card-skew h3 {
        font-size: 1.8rem;
    }

    .rotating-text {
        min-width: 350px;
        width: 350px;
    }
}

/* Mobile Portrait (320px - 599px) */
@media (max-width: 599px) {
    .top-nav {
        padding: 1rem;
    }

    .brand-logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .brand-sub {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
        font-size: 0.8rem;
    }

    .hero-poster {
        padding-top: 100px;
    }

    .hero-overline {
        font-size: 0.85rem;
    }

    .poster-headline {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .poster-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .input-skew {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .btn-skew-pink {
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
    }

    .hero-right {
        height: 380px;
    }

    .massive-ayam {
        font-size: 5.5rem;
        letter-spacing: -2px;
        text-shadow: 4px 4px 0px #000, 8px 8px 0px rgba(255, 0, 214, 0.2);
    }

    .pink-bar {
        font-size: 1.5rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }

    .bottom-stats {
        font-size: 1.5rem;
        gap: 1rem;
        flex-direction: column;
        margin-top: 1.5rem;
    }

    .stat-item {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 2px;
        bottom: -50px;
    }

    .big-x {
        width: 320px;
        height: 320px;
    }

    .star-icon {
        font-size: 2.5rem;
        top: -30px;
        width: 50px;
        height: 50px;
    }

    .pink-ring-img {
        width: 130%;
    }

    .ufo-mascot {
        bottom: -50px;
        right: -20px;
    }

    .mascot-img {
        width: 140px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .card-skew {
        padding: 1.5rem;
        transform: skew(-3deg);
    }

    .card-skew:hover {
        transform: skew(-3deg) translateY(-5px);
    }

    .card-skew h3 {
        font-size: 1.5rem;
    }

    .card-skew p {
        font-size: 0.95rem;
    }

    .footer-simple {
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 1.5rem 1rem;
    }

    .rotating-text {
        min-width: 280px;
        width: 280px;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .poster-headline {
        font-size: 2rem;
    }

    .massive-ayam {
        font-size: 4.5rem;
    }

    .pink-bar {
        font-size: 1.2rem;
    }

    .bottom-stats {
        font-size: 1.2rem;
    }

    .big-x {
        width: 280px;
        height: 280px;
    }

    .mascot-img {
        width: 120px;
    }

    .hero-right {
        height: 320px;
    }

    .rotating-text {
        min-width: 200px;
        width: 200px;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-poster {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 2rem;
    }

    .hero-right {
        height: 350px;
    }

    .massive-ayam {
        font-size: 6rem;
    }

    .big-x {
        width: 400px;
        height: 400px;
    }
}

/* ========================================
   TRUSTED BY SECTION (MARQUEE)
   ======================================== */
.divoftrusted {
    /* margin: 0 auto; */
    background: #000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.trusted-section {
    position: relative;
    width: 100%;
    /* frosted glass effect dark */
    /* background: rgba(10, 10, 15, 0.4); */
    /* background: rgb(158, 11, 11); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    /* Taller to match image */
    z-index: 20;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    overflow: hidden;
    margin: 0 auto;
}

.trusted-container {
    width: 100%;
    /* Full width for marquee */
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.trusted-label {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.trusted-label::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1rem;
    background: var(--color-gray);
    margin-left: 2rem;
    vertical-align: middle;
    opacity: 0.5;
}

.marquee-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    /* Wide spacing */
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.brand-item {
    color: var(--color-gray);
    font-family: var(--font-ui);
    font-size: 1.6rem;
    font-weight: 700;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: default;
    user-select: none;
    white-space: nowrap;
    filter: grayscale(100%);
}

.brand-item i {
    font-size: 1.6rem;
}

.brand-item:hover {
    color: #fff;
    opacity: 1;
    filter: grayscale(0%);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Specific Logo Styles to mimic brands */
.brand-item.small-caps {
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-ui);
    font-weight: 600;
}

.brand-item.bold-condensed {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 2rem;
}

/* Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }

    /* 1/3 for 3 groups */
}

/* Add Responsive Adjustments */
@media (max-width: 768px) {
    .trusted-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .trusted-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .trusted-label::after {
        display: none;
    }

    .marquee-wrapper {
        width: 100%;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
}

/* ========================================
   MODERN FOOTER (CONTACT US)
   ======================================== */
.footer-modern {
    background: linear-gradient(0deg, #000 0%, rgba(10, 10, 15, 0.95) 100%);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
    position: relative;
    border-top: 1px solid rgba(255, 0, 214, 0.2);
    overflow: hidden;
    margin-top: 4rem;
    text-align: center;
}

/* Background Texture for Footer */
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 100%, rgba(157, 78, 221, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 5%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 2vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Middle column slightly offset if needed, or same layout */
.footer-col.center-col {
    margin-top: 0;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-name {
    font-family: var(--font-heading);
    font-size: clamp(0.6rem, 1vw, 2rem);

    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-role {
    font-family: var(--font-ui);
    font-size: clamp(0.6rem, 1vw, 2rem);

    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-email {
    font-family: var(--font-ui);
    font-size: clamp(0.6rem, 1vw, 2rem);

    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.contact-email:hover {
    color: var(--color-pink);
    text-shadow: 0 0 10px rgba(255, 0, 214, 0.4);
}

.contact-phone {
    font-family: var(--font-ui);
    font-size: clamp(0.6rem, 1vw, 2rem);

    color: var(--color-gray-light);
}

/* Business Section */
.footer-business {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.business-label {
    font-family: var(--font-heading);
    color: var(--color-pink);
    /* Accent color */
    font-size: clamp(0.6rem, 2vw, 2rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.business-email {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1vw, 2rem);
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.business-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    transition: width 0.3s ease;
}

.business-email:hover {
    color: var(--color-pink);
    text-shadow: 0 0 20px rgba(255, 0, 214, 0.6);
}

.business-email:hover::after {
    width: 100%;
}

/* Brand Text at Bottom */
.footer-brand {
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: -2px;
    transition: all 0.5s ease;
    display: block;
    line-height: 0;
}

.footer-brand:hover .brand-text {
    -webkit-text-stroke: 2px rgba(255, 0, 214, 0.4);
    text-shadow: 0 0 50px rgba(255, 0, 214, 0.2);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--color-gray);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--color-pink);
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 214, 0.6);
}

.footer-bottom {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    padding-top: 2rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .brand-text {
        font-size: 4rem;
    }
}

/* ========================================
   MERCHANDISE SECTION - PREMIUM UPGRADE
   ======================================== */
.merch-section {
    padding: 6rem 0;
    position: relative;
    /* Subtle Grid Background for the section */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

.merch-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.merch-scroll-container {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 3rem 1.5rem;
    padding-bottom: 4rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    justify-content: flex-start;
    perspective: 1000px;
    /* Enable 3D perspective */
}

/* Hide scrollbar */
.merch-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Premium Card Design */
.merch-card {
    min-width: 380px;
    /* Increased base width */
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Hexagonal clip path top-right */
    clip-path: polygon(20px 0, 100% 0,
            100% calc(100% - 20px), calc(100% - 20px) 100%,
            0 100%, 0 20px);
    border-radius: 0;
    /* Handled by clip-path */
    padding: 3rem;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(1.1);
    /* Base scale up */
}

/* Hover State - Lift and Glow */
.merch-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.15);
    /* Keep scale on hover */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 214, 0.15);
    /* Soft pink ambient */
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.9), rgba(15, 15, 20, 0.95));
}

/* Animated Border Gradient via Pseudo-element */
.merch-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    /* Border width */
    background: linear-gradient(45deg, transparent, rgba(255, 0, 214, 0.6), transparent);
    /* Define standard mask property for compatibility */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    clip-path: inherit;
    /* Match card shape */
    pointer-events: none;
}

.merch-card:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, var(--color-purple), var(--color-pink));
}

.merch-visual {
    width: 100%;
    height: 300px;
    /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2.5rem;
    /* Grid background inside the visual area */
    background-image:
        linear-gradient(rgba(255, 0, 214, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 214, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 8px;
    /* Inner radius */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Base styles for Image */
.merch-visual img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    /* Use lighten/screen to make the black background invisible against the dark card */
    mix-blend-mode: lighten;
    filter: contrast(1.1) brightness(1.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.merch-card:hover .merch-visual img {
    transform: scale(1.15) translateY(-10px) rotate(-3deg);
    filter: contrast(1.2) brightness(1.2) drop-shadow(0 0 10px rgba(255, 0, 214, 0.5));
}

/* Fallback Icon Styles (if used) */
.merch-visual i {
    font-size: 7rem;
    /* Larger icons */
    color: var(--color-gray-light);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    opacity: 1 !important;
    /* Force visibility */
}

.merch-card:hover .merch-visual i {
    transform: scale(1.15) translateY(-10px);
    color: var(--color-white);
    filter: drop-shadow(0 15px 30px rgba(255, 0, 214, 0.4));
}

.visual-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--color-pink) 0%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.2;
    /* Increased base opacity */
    transition: all 0.5s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.visual-glow.purple {
    background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
}

.merch-card:hover .visual-glow {
    opacity: 0.6;
    width: 160px;
    height: 160px;
}

/* Floor Reflection Effect */
.merch-visual::after {
    content: '';
    position: absolute;
    bottom: 20px;
    width: 60%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scale(0.5);
}

.merch-card:hover .merch-visual::after {
    opacity: 0.6;
    transform: scale(1);
    bottom: 10px;
}

.merch-info {
    text-align: center;
    width: 100%;
    z-index: 2;
}

.merch-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.merch-price {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--color-pink);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Tags */
.merch-tag {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: var(--color-pink);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.merch-tag.new {
    background: var(--color-purple);
}

.merch-tag.limited {
    background: #fff;
    color: #000;
}

.btn-merch {
    margin-top: 4rem;
    display: inline-block;
}

/* Responsive */
@media (min-width: 1024px) {
    .merch-scroll-container {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
    }

    .merch-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .merch-section {
        padding: 4rem 0;
    }

    .merch-scroll-container {
        padding: 2rem 5%;
        gap: 1.5rem;
    }

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

    .merch-card {
        min-width: 260px;
        padding: 1.5rem;
    }
}

/* Update Merch Text Sizes for Scaled Cards */
.merch-name {
    font-size: 1.8rem;
}

.merch-price {
    font-size: 1.4rem;
}

.merch-tag {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

/* ========================================
   SPONSORS PAGE STYLES
   ======================================== */

.page-header {
    padding-top: 150px;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 0, 214, 0.4);
    line-height: 1.1;
}

.page-title .slash {
    color: var(--color-pink);
    margin-left: 10px;
}

.page-subtitle {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-gray-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.sponsors-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.sponsor-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    position: relative;
    overflow: hidden;
}

.sponsor-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 214, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-pink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 214, 0.2);
}

.sponsor-item:hover::before {
    opacity: 1;
}

.sponsor-logo-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.sponsor-logo-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.4s ease;
}

.sponsor-item:hover .sponsor-logo-box img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.sponsor-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
    transition: color 0.3s ease;
}

.sponsor-item:hover .sponsor-label {
    color: #fff;
    text-shadow: 0 0 10px var(--color-pink);
}

/* Response Fix for Sponsors */
@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header {
        padding-top: 120px;
    }
}

/* ========================================
   PREMIUM 3D PRELOADER
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: 1000px;
}

.loader-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(157, 78, 221, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes grid-move {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px);
    }
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.ring-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate-ring 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
}

.ring-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 214, 0.2), transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.loader-text-group {
    text-align: center;
    margin-bottom: 2rem;
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: glitch-text 3s infinite;
}

.loader-subtitle {
    font-family: var(--font-ui);
    color: var(--color-pink);
    font-size: 0.9rem;
    letter-spacing: 6px;
    opacity: 0.8;
}

.loader-progress-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
    box-shadow: 0 0 10px var(--color-pink);
    transition: width 0.1s linear;
}

/* Exit Animation Classes */
.preloader-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-out;
}

.content-visible {
    animation: zoom-in-content 1s ease-out forwards;
}

@keyframes zoom-in-content {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   CYBERPUNK BRAND PRELOADER (UPDATED)
   ======================================== */

.brand-loader-group {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central 3D Logo */
.logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    /* Adjust based on your asset aspect ratio */
    height: auto;
    z-index: 20;
    perspective: 800px;
}

.loader-brand-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
    animation: floating-logo 4s ease-in-out infinite, glitch-anim 5s infinite linear alternate-reverse;
}

.logo-pulse-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 214, 0.4), transparent 70%);
    mix-blend-mode: screen;
    animation: pulse-aura 2s ease-in-out infinite;
    z-index: -1;
}

/* Animated SVG Ring */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.ring-progress {
    transition: stroke-dashoffset 0.1s linear;
    stroke-dashoffset: 1760;
    /* Circumference of r=280 -> 2*PI*280 ≈ 1759.3 */
}

/* Glitch Overlay */
.glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 25;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Initializing Text */
.loader-status-text {
    margin-top: -80px;
    /* Pull up closer to ring */
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 30;
    text-shadow: 0 0 10px rgba(255, 0, 214, 0.6);
}

#percent-text {
    color: var(--color-pink);
    font-weight: 900;
}

/* Animations */
@keyframes floating-logo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-aura {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes glitch-anim {
    0% {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }

    92% {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }

    94% {
        clip-path: inset(10% 0 85% 0);
        transform: translateX(-5px);
    }

    96% {
        clip-path: inset(80% 0 5% 0);
        transform: translateX(5px);
    }

    98% {
        clip-path: inset(50% 0 30% 0);
        transform: translateX(-2px);
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }
}

/* Particles */
.particle-dot {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    animation: drift-particle linear infinite;
}

@keyframes drift-particle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Mobile Adjustments for Preloader */
@media (max-width: 768px) {
    .brand-loader-group {
        width: 350px;
        height: 350px;
    }

    .logo-wrapper {
        width: 200px;
    }

    .progress-ring {
        /* Need to scale SVG properly via viewBox ideally, but for simple fix: */
        transform: rotate(-90deg) scale(0.6);
    }
}

/* ========================================
   SIMPLE PRELOADER (Minimal)
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-count {
    font-family: var(--font-heading);
    /* Or generic sans-serif if preferred */
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

/* Exit Transition */
.preloader-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* ========================================
   EVENTS CAROUSEL - Redesign
   ======================================== */
.events-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.events-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    /* More space */
    height: 650px;
    /* Taller for better proportion */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    /* Enhanced depth */
}

/* Navigation Buttons - Glass & Neon */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 0, 214, 0.15);
    border-color: var(--color-pink);
    color: var(--color-pink);
    box-shadow: 0 0 20px rgba(255, 0, 214, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 5%;
}

/* Adjusted for better visibility */
.next-btn {
    right: 5%;
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Hide overflow for carousel effect */
    display: flex;
    justify-content: flex-start;
    /* Start from left so JS translation is accurate */
    align-items: center;
    padding-bottom: 20px;
    /* Space for reflection/shadows */
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    /* Apple-like smooth spring */
    align-items: center;
    /* We will use JS to translate the track */
}

.carousel-slide {
    min-width: 360px;
    max-width: 360px;
    margin: 0 40px;
    /* Better separation */
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
    transform: scale(0.85) rotateY(15deg);
    /* Subtle 3D rotation for side cards */
    filter: blur(2px) grayscale(60%);
    position: relative;
    user-select: none;
    transform-style: preserve-3d;
    /* Prevent selection while dragging */
}

.carousel-slide.current-slide {
    opacity: 1;
    transform: scale(1.15) rotateY(0deg) !important;
    /* Force straight */
    filter: blur(0) grayscale(0);
    z-index: 10;
    /* Box-shadow for active card handled in .event-card to avoid clipping */
}

/* Glass Card Style */
.event-card {
    background: rgba(20, 20, 28, 0.4);
    /* Slightly darker base for better contrast */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Highlight top */
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    /* Highlight left */
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    /* Deeper shadow */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 540px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Neon Glow Border on Focused Card */
.current-slide .event-card {
    border-color: rgba(255, 0, 214, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 0, 214, 0.2),
        /* Subtle ring */
        inset 0 0 30px rgba(255, 0, 214, 0.05);
}

.current-slide .event-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 0, 214, 0.3),
        inset 0 0 40px rgba(255, 0, 214, 0.08);
}

.card-image-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-poster {
    transform: scale(1.05);
}

.poster-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 15, 1), transparent);
    opacity: 0.8;
}

.card-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-type {
    font-family: var(--font-ui);
    color: var(--color-pink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Register Button - Neon Pink Pill */
/* Register Button - Neon Pink Pill + Shine Effect */
.btn-register-event {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 214, 0.4);
    transition: all 0.3s ease;
    flex: 1;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-register-event::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.btn-register-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 214, 0.6);
}

.btn-register-event:hover::after {
    left: 150%;
    transition: left 0.7s ease;
}

/* Rulebook Button - Transparent Glass */
.btn-rulebook {
    background: transparent;
    border: 1px solid var(--color-pink);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-rulebook:hover {
    background: rgba(255, 0, 214, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 214, 0.2);
}

/* Dots Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-indicator {
    border: none;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.carousel-indicator.current-slide {
    background: var(--color-pink);
    box-shadow: 0 0 10px rgba(255, 0, 214, 0.5);
    width: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-grid .hero-left {
        order: 2;
    }

    .hero-grid .hero-right {
        order: 1;
        height: 400px;
    }

    .carousel-slide {
        min-width: 280px;
        margin: 0 10px;
        transform: scale(0.9);
        opacity: 0.7;
    }

    .carousel-slide.current-slide {
        transform: scale(1);
        opacity: 1;
    }

    .event-card {
        height: 480px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   FUTURISTIC MERCHANDISE SECTION
   ======================================== */
.merch-section-futuristic {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    /* Removed heavy background to let page bg show through */
}

/* Background Glow */
.merch-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.floating-particle.p1 {
    width: 4px;
    height: 4px;
    top: 80%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particle.p2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.floating-particle.p3 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 40%;
    animation-delay: 6s;
}

/* Wrapper */
.merch-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Heading */
.section-heading-neon {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(255, 0, 214, 0.6), 0 0 20px rgba(255, 0, 214, 0.3);
}

/* Glass Container */
.merch-glass-container {
    width: 100%;
    max-width: 1000px;
    background: rgba(20, 10, 30, 0.3);
    /* Reduced opacity from 0.6 */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2), inset 0 0 20px rgba(138, 43, 226, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tab Navigation */
.merch-tabs-wrapper {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.merch-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.merch-tab.active {
    color: #ff00d6;
    /* Neon Pink */
    text-shadow: 0 0 8px rgba(255, 0, 214, 0.6);
}

.merch-tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    /* Will be moved by JS */
    height: calc(100% - 10px);
    width: 0;
    /* Will be set by JS */
    background: rgba(255, 0, 214, 0.1);
    border: 1px solid #ff00d6;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 0, 214, 0.2);
}

/* Content Grid */
.merch-content-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    justify-content: space-between;
}

/* Left: Showcase */
.merch-showcase-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.merch-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 0, 214, 0.1);
    border: 1px solid rgba(255, 0, 214, 0.3);
    color: #ff00d6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.merch-arrow:hover {
    background: #ff00d6;
    color: #fff;
    box-shadow: 0 0 15px #ff00d6;
    transform: scale(1.1);
}

.merch-image-card {
    width: 320px;
    height: 380px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.merch-img-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.merch-image-card:hover .merch-img {
    transform: scale(1.05);
}

.inner-card-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

/* Right: Details */
.merch-details-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.merch-title-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.merch-desc {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.merch-price-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: #ff00d6;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

/* Buy Button */
/* Merch Typography Refinement */
/* Merch Typography Refinement */
.merch-title-large {
    font-family: 'NTBrickSans', sans-serif;
    /* Pixel/Block font */
    font-weight: 700;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.merch-desc {
    font-family: 'NTBrickSans', sans-serif;
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.merch-price-tag {
    font-family: 'NTBrickSans', sans-serif;
    font-size: 1.8rem;
    color: var(--color-pink);
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 0, 214, 0.4);
}

.merch-tab {
    font-family: 'NTBrickSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-buy-neon span {
    font-family: 'NTBrickSans', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Buy Button - Updated to White Block Style */
.btn-buy-neon {
    position: relative;
    padding: 0.8rem 3rem;
    background: #fff;
    /* Solid white */
    border: none;
    border-radius: 2px;
    /* Slight rounded corners but mostly square */
    color: #000;
    /* Black text */
    font-family: 'NTBrickSans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-buy-neon:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.btn-glow {
    display: none;
    /* Removed internal glow for clean block look */
}

/* Deco Text */
.deco-text-right {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

/* Decoration Elements */
.merch-deco {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.merch-deco.top-left {
    top: 20px;
    left: 20px;
    border-top: 2px solid #ff00d6;
    border-left: 2px solid #ff00d6;
}

.merch-deco.bottom-right {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid #d500f9;
    border-right: 2px solid #d500f9;
}

/* Responsive */
@media (max-width: 900px) {

    .merch-content-grid {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .merch-showcase-left {
        width: 100%;
    }

    .merch-details-right {
        align-items: center;
    }

    .section-heading-neon {
        font-size: 2.2rem;
    }

    .merch-title-large {
        font-size: 2.2rem;
    }
}

/* Responsive Typography Adjustments for New Font and Logo */
@media (max-width: 768px) {
    .massive-ayam {
        font-size: 6rem;
        line-height: 1;
        letter-spacing: -2px;
    }

    .pink-bar {
        font-size: 1.5rem;
        padding: 0.5rem 2rem;
    }

    .brand-logo {
        height: 40px;
    }

    .nav-menu {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 1rem;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        width: 100%;
        justify-content: flex-start;
        padding-right: 1rem;
        /* Prevent cut-off */
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }
}

@media (max-width: 480px) {
    .massive-ayam {
        font-size: 18vw;
        /* Viewport based for very small screens */
    }
}

/* Footer Logo Styling */
.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.footer-logo-img {
    height: 120px;
    /* Adjust size as needed */
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 0, 214, 0.3));
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 25px rgba(255, 0, 214, 0.6));
}

/* Style fixes for brand text and logo flex layout */
.brand-text-group {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    /* Space between text and logo */
}

/* Ensure the logo image doesn't dominate if text is present */
.nav-logo-img {
    height: 50px;
    /* Slightly smaller to match text height */
    width: auto;
}

/* Ensure massive text uses the font properly */
.massive-ayam {
    font-family: 'NTBrickSans', sans-serif !important;
}

/* Ensure poster headline and other main headings use the pixel font */
.poster-headline {
    font-family: 'NTBrickSans', sans-serif !important;
}

.section-heading,
.section-heading-neon,
.footer-heading {
    font-family: 'NTBrickSans', sans-serif !important;
}

/* Make nav logo cleaner */
.nav-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Center the poster form inputs and button */
.poster-form {
    align-items: center;
    width: 100%;
}

.input-skew {
    width: 100%;
    max-width: 400px;
}

.btn-skew-pink {
    width: 100%;
    max-width: 400px;
}

/* Ensure desktop alignment overrides any lingering center styles */
@media (min-width: 769px) {
    .poster-headline {
        text-align: left;
    }

    .hero-grid {
        text-align: left;
    }

    .star-icon {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        color: var(--color-pink);
        font-size: 8rem;
        animation: pulse-star 3s infinite ease-in-out;
        text-shadow: 0 0 35px var(--color-pink), 0 0 70px var(--color-pink);
        filter: drop-shadow(0 0 25px var(--color-pink));
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
    }

}

/* Ensure mobile stacking remains */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .poster-form {
        align-items: center;
    }

    .rotating-text {
        text-align: center;
        white-space: normal;
    }
}

/* Force remove any lingering glitch effects on hero text */
.poster-headline .text-pink {
    animation: none !important;
    transform: none !important;
}

.rotating-text {
    animation: none !important;
}

/* Ensure desktop alignment overrides any lingering center styles */
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 0.6fr 1fr;
        /* 37% - 63% on large screens */
    }
}

/* Adjust star icon size if huge */
.star-icon {
    font-size: 6rem;
    /* Reduced from 10rem */
    width: 40px;
    height: 40px;
    top: -40px;
}

/* Ensure massive text group creates a proper stacking context for centering */
.massive-text-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

/* ========================================
   ANTI-GRAVITY EVENTS CALENDAR
   ======================================== */
.events-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: #0b0b0f;
    /* Dark background */
    min-height: 100vh;
}

/* Background Grid Texture */
.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.events-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Day Selector Tabs */
.calendar-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.calendar-tab {
    background: transparent;
    border: none;
    color: var(--color-gray);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    cursor: pointer;
    padding-bottom: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-tab:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.calendar-tab.active {
    color: var(--color-pink);
    text-shadow: 0 0 15px rgba(255, 0, 214, 0.6);
}

.calendar-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-pink);
    box-shadow: 0 0 10px var(--color-pink);
    border-radius: 2px;
}

/* Filters */
.calendar-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-light);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 0, 214, 0.15);
    border-color: var(--color-pink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 214, 0.2);
}

/* Timeline Structure */
.timeline-container {
    position: relative;
    padding: 2rem 0;
    min-height: 500px;
}

/* Center Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-pink), transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--color-pink);
    z-index: 0;
}

/* Event Item */
.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Space out time and card */
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating Layout */
/* Odd items: Time Left, Card Right */
.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(odd) .event-time-wrapper {
    width: 45%;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(odd) .event-card-wrapper {
    width: 45%;
    padding-left: 0;
}

/* Even items: Card Left, Time Right */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .event-time-wrapper {
    width: 45%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-item:nth-child(even) .event-card-wrapper {
    width: 45%;
    padding-right: 0;
}

/* Time Styling */
.event-time-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.event-time {
    font-family: 'NTBrickSans', sans-serif;
    font-size: 2rem;
    color: var(--color-pink);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 214, 0.4);
}

.event-category {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Connector Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #0b0b0f;
    border: 2px solid var(--color-pink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 10px var(--color-pink);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--color-pink);
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 20px var(--color-pink);
}

/* Floating Card */
.event-card-wrapper {
    perspective: 1000px;
}

.anti-gravity-card {
    /* Transparent background with lined theme graph (grid) */
    background-image:
        linear-gradient(rgba(255, 0, 214, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 214, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: rgba(5, 5, 10, 0.2);
    /* Very mostly transparent */

    backdrop-filter: blur(4px);
    /* Light blur */
    border: 1px solid rgba(255, 0, 214, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(255, 0, 214, 0.1);
    /* Subtle neon glow */
    animation: floatingCard 6s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

/* Individual float offsets to make them feel organic */
@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.anti-gravity-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 0, 214, 0.5);
    box-shadow: 0 15px 40px rgba(255, 0, 214, 0.15);
    background: rgba(25, 25, 40, 0.8);
    animation-play-state: paused;
    /* Stop floating on hover for stability */
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-family: var(--font-ui);
    color: var(--color-gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-meta {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-gray);
    font-family: var(--font-ui);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-item i {
    color: var(--color-pink);
}

/* Modal Styling */
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.event-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.event-modal {
    background: #111;
    border: 1px solid var(--color-pink);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(255, 0, 214, 0.2);
}

.event-modal-overlay.open .event-modal {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--color-pink);
}

.modal-title {
    font-family: 'NTBrickSans', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-time {
    color: var(--color-pink);
    font-size: 1.2rem;
    font-family: var(--font-ui);
    margin-bottom: 1.5rem;
    display: block;
}

.modal-desc {
    color: #ccc;
    font-family: var(--font-ui);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-modal-action {
    background: var(--color-pink);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-modal-action:hover {
    background: #d500f9;
    box-shadow: 0 0 20px rgba(213, 0, 249, 0.5);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        /* Force stack */
        padding-left: 50px;
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(odd) .event-time-wrapper,
    .timeline-item:nth-child(even) .event-time-wrapper {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .timeline-item:nth-child(odd) .event-card-wrapper,
    .timeline-item:nth-child(even) .event-card-wrapper {
        width: 100%;
        padding: 0;
    }

    .timeline-dot {
        left: 20px;
        top: 2rem;
        /* Align with time text approx */
        transform: translate(-50%, -50%);
    }

    .poster-headline {
        font-size: 2.6rem;
        text-align: center;
    }

    .poster-headline .text-pink {
        font-size: 2.8rem;
        text-align: center;
        width: 100%;
        padding: 0.5rem;
    }

    .btn-skew-pink {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }


    .timeline-item:hover .timeline-dot {
        transform: translate(-50%, -50%) scale(1.3);
    }

    .calendar-tabs {
        gap: 1.5rem;
    }

    .calendar-tab {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo-icon {
        height: 40px;
        margin-right: 10px;
    }

    .nav-logo-img {
        height: 35px;
    }

    .top-nav {
        padding: 0.8rem 1rem;
        display: flex;
    }

    .poster-headline {
        font-size: 1.6rem;
        text-align: center;
    }

    .poster-headline .text-pink {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
        padding: 0.5rem;
    }

    .btn-skew-pink {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .calendar-tabs {
        gap: 1rem;
    }

    .calendar-tab {
        font-size: 0.9rem;
        padding-bottom: 0.2rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .event-modal {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-time {
        font-size: 1rem;
    }
}

/* Footer Responsive Fix */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-col {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-card {
        width: 100%;
        max-width: 350px;
    }

    .star-icon {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        color: var(--color-pink);
        font-size: 8rem;
        animation: pulse-star 3s infinite ease-in-out;
        text-shadow: 0 0 35px var(--color-pink), 0 0 70px var(--color-pink);
        filter: drop-shadow(0 0 25px var(--color-pink));
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
    }

}

/* =========================================
   ADDITIONAL MOBILE RESPONSIVENESS
   ========================================= */

/* Tablet & Mobile Improvements (max-width: 768px) */
@media (max-width: 768px) {
    .section-heading-neon {
        font-size: 2.5rem;
        /* Scale down heading */
    }

    .top-nav {
        display: flex;
        /* flex-direction: column; */
        /* gap: 1rem; */
        padding: 1rem;
        justify-content: space-between;
        align-items: center;
    }

    .brand-logo {
        margin-bottom: 0.5rem;
    }

    .nav-menu>a:not(.btn-nav-ticket) {
        display: none;
    }

    .btn-nav-ticket {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
        margin-right: 2rem;
        right: 0;
        position: absolute;
    }

    .merch-glass-container {
        padding: 2rem 1.5rem;
        /* Reduce padding */
    }

    /* Ensure Merch Image scales */
    .merch-image-card {
        width: 100%;
        max-width: 320px;
        /* Keep max width but allow shrinking */
        height: auto;
        aspect-ratio: 4/5;
        /* Maintain aspect ratio */
    }

    /* Adjust Featured Carousel for Tablet */
    .carousel-slide {
        min-width: 260px;
        /* Slightly smaller min-width */
    }

    .event-card {
        height: 450px;
        /* Reduced height */
    }

    .star-icon {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        color: var(--color-pink);
        font-size: 8rem;
        animation: pulse-star 3s infinite ease-in-out;
        text-shadow: 0 0 35px var(--color-pink), 0 0 70px var(--color-pink);
        filter: drop-shadow(0 0 25px var(--color-pink));
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
    }

}

/* Mobile Specific (max-width: 480px) */
@media (max-width: 480px) {

    /* Navbar Compacting */
    .top-nav {
        display: flex;
        /* flex-direction: column; */
        gap: 1rem;
        padding: 1rem;
        justify-content: space-between;
    }

    .brand-logo {
        margin-bottom: 0.5rem;
    }

    .nav-menu>a:not(.btn-nav-ticket) {
        display: none;
    }

    .btn-nav-ticket {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
        margin-left: 2rem;
    }

    /* Typography Scaling */
    .poster-headline {
        font-size: 2rem;
    }

    .section-heading-neon {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .merch-title-large {
        font-size: 2rem;
    }

    /* Carousel on Mobile */
    .carousel-wrapper {
        padding: 0 1rem;
    }

    .carousel-slide {
        min-width: 85vw;
        /* Almost full width for mobile focus */
        margin: 0 5px;
    }

    .event-card {
        height: 400px;
        /* Shorter card */
    }

    .card-details {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.5rem;
    }

    /* Timeline Mobile */
    .timeline-container {
        padding: 0;
    }

    .timeline-item {
        padding-left: 30px;
        /* Less indentation */
    }

    .timeline-line {
        left: 10px;
    }

    .timeline-dot {
        left: 10px;
    }

    .event-time {
        font-size: 1.5rem;
    }

    /* Merch Mobile */
    .merch-content-grid {
        gap: 2rem;
    }

    .merch-arrow {
        width: 35px;
        height: 35px;
    }

    /* Footer Mobile */
    .footer-logo-img {
        height: 80px;
    }

    .footer-socials {
        gap: 1rem;
    }

    .social-link i {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {

    .top-nav {
        /* background: #fc0c0c; */
        display: flex;
        flex-direction: row;
        /* ✅ keep horizontal */
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        /* gap: 0.5rem; */
    }

    .nav-menu>a:not(.btn-nav-ticket) {
        display: none;
    }

    .btn-nav-ticket {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
        margin-left: 0.8rem;

    }

    .brand-logo {
        /* background: #000; */
        width: auto;
        gap: -0.2rem;
    }

    .star-icon {
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        color: var(--color-pink);
        font-size: 10rem;
        animation: pulse-star 3s infinite ease-in-out;
        text-shadow: 0 0 35px var(--color-pink), 0 0 70px var(--color-pink);
        filter: drop-shadow(0 0 25px var(--color-pink));
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
    }

}

/* =========================================
   COMING SOON PLACEHOLDER
   ========================================= */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
    /* Adjust height as needed */
    text-align: center;
    position: relative;
    z-index: 10;
}

.coming-soon-content {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border: 1px solid rgba(255, 0, 214, 0.3);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 0, 214, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(255, 0, 214, 0.25);
    border-color: rgba(255, 0, 214, 0.5);
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-pink);
    text-shadow: 0 0 20px rgba(255, 0, 214, 0.6);
    margin: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
}

.coming-soon-subtitle {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--color-gray-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.lock-icon {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
    animation: pulse-lock 2s infinite ease-in-out;
}

@keyframes pulse-lock {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 15px var(--color-pink);
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        min-height: 300px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-content {
        padding: 2rem 1.5rem;
        width: 90%;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }
}