/* ============================================
   FLASHBACK 90's / 2K - Main Stylesheet
   Retro 90s/2000s Aesthetic
   ============================================ */

/* CSS Variables */
:root {
    /* Neon Colors */
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --neon-purple: #bf00ff;
    --neon-green: #00ff66;
    --neon-orange: #ff6600;
    
    /* Main Palette */
    --primary: #ff00ff;
    --secondary: #00ffff;
    --accent: #ffff00;
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #ffffff;
    
    /* Gradients */
    --gradient-90s: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    --gradient-vaporwave: linear-gradient(180deg, #1a0a2e 0%, #16213e 50%, #0f0f23 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b, #feca57, #ff9ff3);
    
    /* Typography */
    --font-pixel: 'Press Start 2P', cursive;
    --font-display: 'Bangers', cursive;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Scanlines Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.2;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 20s infinite;
}

.float-item:nth-child(1) { left: 5%; animation-delay: 0s; }
.float-item:nth-child(2) { left: 15%; animation-delay: 2s; }
.float-item:nth-child(3) { left: 25%; animation-delay: 4s; }
.float-item:nth-child(4) { left: 40%; animation-delay: 6s; }
.float-item:nth-child(5) { left: 55%; animation-delay: 8s; }
.float-item:nth-child(6) { left: 70%; animation-delay: 10s; }
.float-item:nth-child(7) { left: 80%; animation-delay: 12s; }
.float-item:nth-child(8) { left: 90%; animation-delay: 14s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(255, 0, 255, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    background: none;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
    transform: scale(1.05);
}

.navbar.scrolled .nav-logo-img {
    height: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.btn-nav-ticket {
    background: var(--gradient-90s);
    padding: 10px 20px !important;
    border-radius: 30px;
    color: var(--dark) !important;
    font-weight: 700 !important;
    animation: glow-pulse 2s infinite;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-pink);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    background: var(--gradient-vaporwave);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(191, 0, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 100;
    max-width: 900px;
}

.logo-container {
    margin-bottom: 20px;
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    background: none;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid var(--neon-pink);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.6); }
}

.badge-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--neon-pink);
}

.hero-location {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.hero-location i {
    color: var(--neon-pink);
    margin-right: 8px;
    animation: bounce 1s infinite;
}

.hero-prizes {
    padding: 15px 30px;
    margin-bottom: 25px;
    display: inline-block;
    font-size: 1.1rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    
    
}

@keyframes prize-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    letter-spacing: 5px;
    background: var(--gradient-90s);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 0, 255, 0.8)); }
}

.title-sub {
    display: block;
    font-family: var(--font-pixel);
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    margin-top: -10px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlight {
    color: var(--neon-yellow);
    font-weight: 700;
}

.hero-genres {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.genre {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.genre.rap {
    background: rgba(255, 102, 0, 0.2);
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
}

.genre.pop {
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.genre.rnb {
    background: rgba(191, 0, 255, 0.2);
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
}

.genre.rock {
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.genre:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px currentColor;
}

.hero-challenge {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--light);
}

.hero-challenge strong {
    color: var(--neon-green);
    font-size: 1.6rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-90s);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--dark);
}

.btn-glow {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.4); }
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Countdown */
.countdown-container {
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 0 10px;
}

.countdown-label {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--neon-yellow);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-item {
    background: rgba(10, 10, 26, 0.95);
    border: 3px solid var(--neon-pink);
    border-radius: 12px;
    padding: 15px 10px;
    min-width: 80px;
    flex: 1 1 70px;
    max-width: 120px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5), inset 0 0 15px rgba(255, 0, 255, 0.15);
    position: relative;
    z-index: 100;
}

.countdown-value {
    display: block;
    font-family: var(--font-pixel);
    font-size: 1.8rem;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
    line-height: 1.2;
}

.countdown-unit {
    display: block;
    font-size: 0.65rem;
    color: #00ffff;
    margin-top: 8px;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 0 10px #00ffff;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.section-title .title-emoji {
    display: inline-block;
    animation: wiggle 1s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ============================================
   EVENT SECTION
   ============================================ */
.event-section {
    background: linear-gradient(180deg, var(--darker) 0%, #1a0a2e 100%);
}

.event-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.big-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-box {
    background: rgba(255, 0, 255, 0.1);
    border-left: 4px solid var(--neon-pink);
    padding: 20px 30px;
    border-radius: 0 15px 15px 0;
    font-size: 1.4rem !important;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-90s);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
    letter-spacing: 2px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Nostalgia Box */
.nostalgia-box {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.nostalgia-box h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--neon-cyan);
}

.artists-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.artists-cloud span {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
}

.artists-cloud span:hover {
    background: var(--neon-pink);
    color: var(--dark);
    transform: scale(1.1);
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    background: linear-gradient(180deg, #1a0a2e 0%, var(--darker) 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.date-card {
    border-color: var(--neon-pink);
}

.date-card:hover {
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.time-card {
    border-color: var(--neon-cyan);
}

.time-card:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.price-card {
    border-color: var(--neon-green);
}

.price-card:hover {
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.info-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
}

.info-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.price-tag {
    font-family: var(--font-display);
    font-size: 3rem !important;
    color: var(--neon-green) !important;
    text-shadow: 0 0 20px var(--neon-green);
}

.price-tag span {
    font-size: 1rem;
    font-family: var(--font-body);
}

/* Food & Drinks */
.food-drinks-section {
    margin-top: 40px;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--neon-yellow);
    letter-spacing: 2px;
}

.food-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity {
    background: rgba(255, 255, 0, 0.05);
    border: 2px solid var(--neon-yellow);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.2);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.amenity h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-yellow);
    margin-bottom: 10px;
}

.amenity p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    background: var(--darker);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.venue-name h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-pink);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.venue-vibe {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 30px;
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 0, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.address-box i {
    font-size: 2rem;
    color: var(--neon-pink);
}

.street {
    font-size: 1.2rem;
    font-weight: 600;
}

.city {
    color: rgba(255, 255, 255, 0.7);
}

.transport-tips {
    margin-bottom: 30px;
}

.transport-tips h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.transport-tips ul {
    list-style: none;
}

.transport-tips li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.transport-tips li i {
    color: var(--neon-cyan);
    width: 20px;
}

.btn-maps {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 15px 30px;
}

.btn-maps:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.map-container iframe {
    display: block;
}

/* ============================================
   TICKETS SECTION
   ============================================ */
.tickets-section {
    background: linear-gradient(180deg, var(--darker) 0%, #1a0a2e 50%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.tickets-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tickets-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Ticket Mockup */
.ticket-mockup {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
}

.ticket-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.ticket-header {
    background: var(--gradient-90s);
    padding: 15px;
    text-align: center;
}

.ticket-type {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: 3px;
}

.ticket-body {
    padding: 30px;
    text-align: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
}

.ticket-body h3 {
    font-family: var(--font-pixel);
    font-size: 1rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.ticket-date {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ticket-venue {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.ticket-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

.ticket-barcode {
    font-family: monospace;
    font-size: 1.5rem;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, 0.5);
}

/* Tickets Info */
.tickets-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.tickets-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.tickets-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.perk i {
    color: var(--neon-green);
    font-size: 1.2rem;
}

.cta-buttons {
    margin-bottom: 30px;
}

.btn-ticket {
    background: var(--gradient-90s);
    color: var(--dark);
    font-size: 1.2rem;
    padding: 20px 40px;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.5);
}

.tickets-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.tickets-note i {
    margin-right: 5px;
}

.urgency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid var(--neon-orange);
    padding: 20px;
    border-radius: 15px;
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 102, 0, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 102, 0, 0.5); }
}

.urgency-box p {
    font-weight: 700;
    color: var(--neon-orange);
}

.fire-emoji {
    font-size: 1.5rem;
    animation: fire-dance 0.5s infinite;
}

@keyframes fire-dance {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

/* ============================================
   ORGANIZER SECTION - LIÈGE LÉVIATHANS
   ============================================ */
.organizer-section {
    background: linear-gradient(180deg, var(--darker) 0%, #0d1a0d 50%, var(--darker) 100%);
    position: relative;
}

.organizer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.organizer-image {
    position: relative;
}

.team-photo {
    width: 100%;
    border-radius: 20px;
    border: 3px solid #4CAF50;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

.team-logo {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: var(--darker);
    border-radius: 50%;
    padding: 10px;
    border: 3px solid #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.organizer-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.organizer-sport {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-weight: 600;
}

.organizer-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.organizer-goal {
    display: flex;
    gap: 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.goal-icon {
    font-size: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon .swiss-flag {
    width: 60px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.goal-text h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.goal-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.btn-leviathans {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 15px 30px;
}

.btn-leviathans:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.organizer-cta {
    margin-bottom: 20px;
}

.organizer-thanks {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .organizer-content {
        grid-template-columns: 1fr;
    }
    
    .organizer-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-logo {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .organizer-goal {
        flex-direction: column;
        text-align: center;
    }
    
    .team-logo {
        width: 80px;
        height: 80px;
    }
    
    .organizer-info h3 {
        font-size: 2rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, #1a0a2e 0%, var(--darker) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.faq-item h4 i {
    font-size: 1.3rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.faq-item p a {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item p a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--darker);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 0, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-pixel);
}

.footer-logo .glitch {
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    display: block;
}

.footer-sub {
    font-size: 1rem;
    color: var(--neon-cyan);
    display: block;
    margin-top: 5px;
}

.footer-event-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-pink);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.retro-text {
    font-style: italic;
    color: var(--neon-pink);
    opacity: 0.7;
}

/* ============================================
   GLITCH EFFECT
   ============================================ */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite linear alternate-reverse;
    color: var(--neon-cyan);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite linear alternate-reverse;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
    20% { clip-path: inset(10% 0 70% 0); transform: translate(3px, 0); }
    40% { clip-path: inset(50% 0 30% 0); transform: translate(-3px, 0); }
    60% { clip-path: inset(30% 0 50% 0); transform: translate(3px, 0); }
    80% { clip-path: inset(70% 0 10% 0); transform: translate(-3px, 0); }
    100% { clip-path: inset(80% 0 5% 0); transform: translate(3px, 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(60% 0 20% 0); transform: translate(3px, 0); }
    20% { clip-path: inset(70% 0 10% 0); transform: translate(-3px, 0); }
    40% { clip-path: inset(30% 0 50% 0); transform: translate(3px, 0); }
    60% { clip-path: inset(50% 0 30% 0); transform: translate(-3px, 0); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(3px, 0); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(-3px, 0); }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .tickets-content {
        grid-template-columns: 1fr;
    }
    
    .tickets-visual {
        order: 2;
    }
    
    .tickets-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 2px solid var(--neon-pink);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-genres {
        gap: 10px;
    }
    
    .genre {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .countdown {
        gap: 10px;
        max-width: 100%;
    }
    
    .countdown-item {
        padding: 12px 8px;
        min-width: 65px;
        flex: 1 1 60px;
        max-width: 90px;
    }
    
    .countdown-value {
        font-size: 1.4rem;
    }
    
    .countdown-unit {
        font-size: 0.55rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .tickets-perks {
        grid-template-columns: 1fr;
    }
    
    .ticket-mockup {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title .title-line {
        font-size: 2.5rem;
    }
    
    .hero-title .title-sub {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 55px;
        flex: 1 1 50px;
        max-width: 75px;
        padding: 10px 5px;
        border-width: 2px;
    }
    
    .countdown-value {
        font-size: 1.1rem;
    }
    
    .countdown-unit {
        font-size: 0.5rem;
        letter-spacing: 0;
        margin-top: 5px;
    }
    
    .countdown-label {
        font-size: 1rem;
    }
}
