/* ==========================================
   ULTRA WESTIE FEST - GLOBAL DESIGN SYSTEM
   ========================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --neon-pink: hsl(328, 100%, 54%);
    --neon-cyan: hsl(180, 100%, 47%);
    --neon-yellow: hsl(57, 100%, 50%);
    --neon-purple: hsl(280, 100%, 55%);
    --obsidian: hsl(240, 15%, 5%);
    --obsidian-dark: hsl(240, 15%, 3%);
    --text-white: hsl(0, 0%, 100%);
    --text-gray: hsl(240, 5%, 70%);
    --text-muted: hsl(240, 5%, 50%);
    
    /* Gradients */
    --grad-pink-cyan: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-cyan) 100%);
    --grad-purple-pink: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    --grad-dark: linear-gradient(180deg, rgba(20, 10, 35, 0.4) 0%, rgba(3, 2, 6, 0.8) 100%);
    
    /* Layout Variables */
    --navbar-height: 80px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition-speed: 0.3s;
    --shadow-neon-pink: 0 0 15px rgba(255, 20, 147, 0.6);
    --shadow-neon-cyan: 0 0 15px rgba(0, 240, 255, 0.6);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-header: 'Syne', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-primary);
    color: var(--text-white);
    background-color: var(--obsidian);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Styled Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--obsidian-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-pink), var(--neon-purple));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 400;
}

.font-secondary {
    font-family: var(--font-primary);
}

.font-display {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.text-gradient-pink-cyan {
    background: var(--grad-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple-pink {
    background: var(--grad-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-text-pink {
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.8), 0 0 20px rgba(255, 20, 147, 0.4);
}

.neon-text-cyan {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8), 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Base Layout Containers */
#app-content {
    flex: 1;
    margin-top: var(--navbar-height);
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0d081e 0%, #030206 100%);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(18, 18, 28, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.glass-card:hover {
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 20, 147, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--neon-pink);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--text-white);
    color: var(--obsidian);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    box-shadow: var(--shadow-neon-pink);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    box-shadow: var(--shadow-neon-pink);
    opacity: 0;
    transition: opacity var(--transition-speed);
    z-index: -1;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.9);
}

.btn-glow-cyan {
    background: var(--neon-cyan);
    color: var(--obsidian);
    box-shadow: var(--shadow-neon-cyan);
}

.btn-glow-cyan:hover {
    background: var(--text-white);
    color: var(--obsidian);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.9);
    transform: translateY(-2px);
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(3, 2, 6, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    transition: background var(--transition-speed);
}

.navbar.scrolled {
    background: rgba(3, 2, 6, 0.95);
    border-bottom-color: rgba(255, 20, 147, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 48px;
    width: auto;
    transition: transform var(--transition-speed);
}

.logo-link:hover .nav-logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-primary);
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-speed);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width var(--transition-speed);
    box-shadow: var(--shadow-neon-pink);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-white);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-item.active::after {
    background: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all var(--transition-speed) ease-in-out;
    background-color: var(--text-white);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Hamburger Active Transform */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--neon-pink);
    box-shadow: var(--shadow-neon-pink);
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

/* Mobile Menu Navigation overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--navbar-height);
    left: 100%;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background: rgba(3, 2, 6, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left var(--transition-speed) cubic-bezier(0.1, 0.8, 0.3, 1);
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 40px;
}

.mobile-nav-item {
    font-family: var(--font-header);
    font-size: 1.8rem;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: color var(--transition-speed);
}

.mobile-nav-item:hover {
    color: var(--neon-pink);
    text-shadow: var(--shadow-neon-pink);
}

.mobile-cta {
    width: 80%;
    max-width: 300px;
    text-align: center;
    margin-top: 20px;
}

/* Dynamic Page Loading Transitions */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Audio Widget Visualizer */
.audio-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(18, 18, 28, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 95;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: border-color var(--transition-speed);
}

.audio-widget:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.visualizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    width: 25px;
}

.visualizer-bars .bar {
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 20px;
    animation: dance 1s infinite alternate ease-in-out;
}

/* Set dynamic animation delays and durations for visualizer */
.visualizer-bars .bar:nth-child(1) { animation-duration: 0.8s; animation-delay: 0.1s; background-color: var(--neon-pink); }
.visualizer-bars .bar:nth-child(2) { animation-duration: 0.5s; animation-delay: 0.3s; background-color: var(--neon-purple); }
.visualizer-bars .bar:nth-child(3) { animation-duration: 0.9s; animation-delay: 0.0s; }
.visualizer-bars .bar:nth-child(4) { animation-duration: 0.6s; animation-delay: 0.2s; background-color: var(--neon-pink); }
.visualizer-bars .bar:nth-child(5) { animation-duration: 0.7s; animation-delay: 0.4s; }

/* Inactive visualizer state */
.audio-widget.paused .visualizer-bars .bar {
    animation-play-state: paused;
    height: 3px !important;
}

@keyframes dance {
    0% { height: 3px; }
    100% { height: 18px; }
}

.audio-info {
    display: flex;
    flex-direction: column;
}

.audio-info .track-title {
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.audio-info .track-status {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.audio-toggle {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: color var(--transition-speed);
}

.audio-toggle:hover {
    color: var(--neon-pink);
}

/* Footer Section */
.footer {
    background: rgba(3, 2, 6, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

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

.footer-logo {
    height: 80px;
    width: auto;
    align-self: flex-start;
}

.footer-brand .tagline {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-socials h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text-white);
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.social-icons a:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-neon-pink);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ==========================================
   PAGE-SPECIFIC COMPONENT STYLING
   ========================================== */

/* HOME PAGE STYLES */
.hero {
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 24px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-badge {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid var(--neon-pink);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.hero-logo {
    max-width: 650px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.4));
    margin: 10px 0;
    animation: float 6s infinite ease-in-out;
}

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

.hero-details {
    display: flex;
    gap: 32px;
    margin: 10px 0;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-info-item i {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-neon-cyan);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

/* Countdown Clock */
.countdown-container {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.countdown-clock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.clock-item {
    background: rgba(3, 2, 6, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
}

.clock-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-neon-cyan);
    line-height: 1;
}

.clock-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Slogan Marquee Ticker */
.slogan-ticker {
    width: 100%;
    overflow: hidden;
    background: rgba(3, 2, 6, 0.9);
    border-top: 1px solid rgba(255, 20, 147, 0.3);
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

.ticker-wrap {
    display: flex;
    width: max-content;
    animation: ticker 35s linear infinite;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-white);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-item span {
    color: var(--neon-pink);
    text-shadow: var(--shadow-neon-pink);
}

.ticker-item i {
    color: var(--neon-cyan);
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* WHAT TO EXPECT PAGE */
.expect-hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
}

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

.expect-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-pink);
    text-shadow: var(--shadow-neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 8px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.expect-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-pink-cyan);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    transition: all var(--transition-speed);
}

.card-icon.yellow {
    color: var(--neon-yellow);
    border-color: rgba(223, 255, 0, 0.2);
    box-shadow: 0 0 10px rgba(223, 255, 0, 0.15);
}

.card-icon.pink {
    color: var(--neon-pink);
    border-color: rgba(255, 20, 147, 0.2);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.15);
}

.card-icon.cyan {
    color: var(--neon-cyan);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.card-icon.purple {
    color: var(--neon-purple);
    border-color: rgba(175, 82, 222, 0.2);
    box-shadow: 0 0 10px rgba(175, 82, 222, 0.15);
}

.expect-card:hover .card-icon {
    background: var(--neon-cyan);
    color: var(--obsidian);
    box-shadow: var(--shadow-neon-cyan);
}

.expect-card:hover .card-icon.yellow {
    background: var(--neon-yellow);
    color: var(--obsidian);
    box-shadow: 0 0 15px rgba(223, 255, 0, 0.6);
}

.expect-card:hover .card-icon.pink {
    background: var(--neon-pink);
    color: var(--obsidian);
    box-shadow: var(--shadow-neon-pink);
}

.expect-card:hover .card-icon.cyan {
    background: var(--neon-cyan);
    color: var(--obsidian);
    box-shadow: var(--shadow-neon-cyan);
}

.expect-card:hover .card-icon.purple {
    background: var(--neon-purple);
    color: var(--obsidian);
    box-shadow: 0 0 15px rgba(175, 82, 222, 0.6);
}

.expect-card h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
}

/* Slogan Badges Section */
.slogan-badges-section {
    text-align: center;
    background: rgba(3, 2, 6, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 60px 24px;
    backdrop-filter: blur(8px);
}

.slogan-badges-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    gap: 16px;
    transition: transform var(--transition-speed);
}

.badge-item:hover {
    transform: scale(1.08);
}

.badge-graphic {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.2));
    transition: filter var(--transition-speed);
}

.badge-item:hover .badge-graphic {
    filter: drop-shadow(0 0 18px var(--neon-pink));
}

.badge-item span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    text-align: center;
}

/* SCHEDULE PAGE */
.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-header {
    text-align: center;
    margin-bottom: 50px;
}

.schedule-header h1 {
    font-size: 3rem;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    border-color: var(--neon-cyan);
}

.tab-btn.active {
    background: var(--neon-cyan);
    color: var(--obsidian);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.schedule-timeline {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.schedule-timeline.active {
    display: flex;
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.time-box {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--neon-pink);
    text-shadow: var(--shadow-neon-pink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.event-info h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.event-tag.comp {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.event-tag.workshop {
    background: rgba(223, 255, 0, 0.1);
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
}

.event-tag.social {
    background: rgba(255, 20, 147, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

/* LOCATION PAGE */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-info h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.location-info .intro-p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.venue-card {
    margin-bottom: 30px;
}

.venue-card h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-neon-cyan);
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.detail-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-line i {
    color: var(--neon-pink);
    font-size: 1.2rem;
    margin-top: 3px;
}

.detail-line h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.detail-line p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.map-container {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #17112d 0%, #08060f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.map-pineapple {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
    margin-bottom: 20px;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 8px var(--neon-cyan)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 20px var(--neon-cyan)); transform: scale(1.05); }
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 24px;
}

/* OUR STORY PAGE */
.story-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.story-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
    padding-left: 32px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
}

.timeline-node {
    position: relative;
    margin-bottom: 48px;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--obsidian);
    border: 3px solid var(--neon-pink);
    box-shadow: var(--shadow-neon-pink);
    z-index: 5;
    transition: transform var(--transition-speed);
}

.timeline-node:nth-child(2) .node-dot {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}

.timeline-node:nth-child(3) .node-dot {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.timeline-node:nth-child(4) .node-dot {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

.timeline-node:nth-child(5) .node-dot {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-neon-pink);
}

.timeline-node:nth-child(6) .node-dot {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.timeline-node:hover .node-dot {
    transform: scale(1.3);
}

.node-year {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
    display: inline-block;
}

.timeline-node:nth-child(1) .node-year { color: var(--neon-pink); }
.timeline-node:nth-child(2) .node-year { color: var(--neon-purple); }
.timeline-node:nth-child(3) .node-year { color: var(--neon-cyan); }
.timeline-node:nth-child(4) .node-year { color: var(--neon-yellow); }
.timeline-node:nth-child(5) .node-year { color: var(--neon-pink); }
.timeline-node:nth-child(6) .node-year { color: var(--neon-cyan); }

.node-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 24px;
}

.node-content h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.directors-section {
    text-align: center;
}

.directors-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.director-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.director-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
    object-fit: cover;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.director-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.director-avatar i {
    font-size: 3.5rem;
    color: var(--text-muted);
}

.director-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.director-role {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--neon-pink);
    text-shadow: var(--shadow-neon-pink);
    margin-top: -8px;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    /* Navbar styling adjustments */
    .nav-menu {
        display: none; /* Hide desktop nav */
    }
    
    .hamburger {
        display: block; /* Show hamburger toggle */
    }
    
    .nav-cta {
        display: none; /* Hide header button on smaller devices */
    }
    
    /* Footer layout */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Hero changes */
    .hero-details {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .countdown-clock {
        gap: 8px;
    }
    
    .clock-val {
        font-size: 1.6rem;
    }
    
    /* Header fonts */
    h1 {
        font-size: 2.2rem !important;
    }
    
    .expect-header h1, .schedule-header h1, .location-info h1, .story-header h1 {
        font-size: 2.2rem !important;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .time-box {
        margin-bottom: 4px;
    }
    
    .event-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .event-tag {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 60px 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }
    
    .countdown-clock {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   VIDEO DISPLAY STYLES (BACKGROUND & LIGHTBOX)
   ========================================== */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.18; /* Dark, integrated blend */
    pointer-events: none;
}

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

/* Video Lightbox Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 2, 6, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    background: rgba(18, 18, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-neon-pink);
    z-index: 10;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.video-modal-close:hover {
    color: var(--neon-pink);
    text-shadow: var(--shadow-neon-pink);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: calc(var(--border-radius) - 8px);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
