:root {
    /* 2026 Club Palette: Dark, High Contrast, Gradient Accents from Logo */
    --bg-main: #050508;
    --bg-alt: #0c0c11;
    --bg-card: #121218;
    --text-main: #ffffff;
    --text-muted: #8a8a93;
    
    /* Logo Colors: Magenta -> Purple -> Cyan */
    --color-magenta: #e800d3;
    --color-purple: #6b21ff;
    --color-cyan: #00f3ff;
    
    --accent: var(--color-cyan);
    
    /* 2026 Trend: Fluid Gradients */
    --gradient-logo: linear-gradient(135deg, var(--color-magenta), var(--color-purple), var(--color-cyan));
    --gradient-glow: rgba(107, 33, 255, 0.4);

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

::selection {
    background: var(--color-purple);
    color: #fff;
}

/* Typography */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
}

.text-accent {
    /* Applying the 2026 fluid gradient to text */
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center {
    text-align: center;
}

p {
    color: var(--text-muted);
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.w-100 { width: 100%; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gradient-logo);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 14px 34px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-magenta));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(232, 0, 211, 0.3), 0 10px 25px rgba(0, 243, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 12px 32px;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: 6px;
}

.btn-outline:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.btn-large {
    font-size: 1.5rem;
    padding: 18px 36px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo img {
    height: 90px;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.4));
}

.navbar.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-logo);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 6px;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background-color: var(--bg-main);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-image: radial-gradient(circle at center, rgba(107,33,255,0.1) 0%, transparent 70%);
}

.mobile-nav.active {
    right: 0;
}

.mobile-links {
    list-style: none;
    text-align: center;
}

.mobile-links li {
    margin: 35px 0;
}

.mobile-links a:not(.btn-primary) {
    font-family: var(--font-heading);
    font-size: 3.5rem;
}

.mobile-links a:hover {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.25;
    animation: slowZoom 25s linear infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); filter: hue-rotate(0deg); }
    100% { transform: scale(1.15); filter: hue-rotate(15deg); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--bg-main) 0%, rgba(5,5,8,0.5) 50%, rgba(5,5,8,0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--gradient-logo);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(232, 0, 211, 0.4);
}

.hero-title {
    font-size: clamp(4rem, 14vw, 9rem);
    margin-bottom: 20px;
    line-height: 0.9;
}

.hero-desc {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Marquee */
.marquee-wrapper {
    background: var(--gradient-logo);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.marquee span {
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 50px;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 1px;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-main-box, .img-sub-box {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.img-main-box {
    width: 85%;
    height: 480px;
    top: 0; right: 0;
    z-index: 1;
}

.img-sub-box {
    width: 55%;
    height: 350px;
    bottom: 0; left: 0;
    z-index: 2;
    border: 10px solid var(--bg-main);
}

.img-main, .img-sub {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-main-box:hover .img-main,
.img-sub-box:hover .img-sub {
    transform: scale(1.08);
}

/* Lineup Section */
.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 70px;
    color: var(--text-muted);
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.artist-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-logo);
    opacity: 0;
    z-index: 0;
    transition: var(--transition);
}

.artist-card > * {
    position: relative;
    z-index: 1;
}

.artist-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.artist-card:hover::before {
    opacity: 0.05;
}

.artist-img-box {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.artist-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition);
}

.artist-card:hover .artist-img-box img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

.artist-date {
    position: absolute;
    top: 25px; right: 25px;
    background: var(--gradient-logo);
    color: #fff;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.artist-info {
    padding: 35px;
    text-align: center;
}

.artist-info h3 {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.artist-genre {
    color: var(--color-magenta);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
}

/* VIP Section */
.vip-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vip-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.vip-img-box {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    position: relative;
}

.vip-img-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-logo);
    mix-blend-mode: overlay;
    opacity: 0.3;
}

.vip-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.vip-form-box {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.vip-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-logo);
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
    text-align: center;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input {
    width: 100%;
    background-color: var(--bg-alt);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px 24px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    border-radius: 6px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-cyan);
    background-color: rgba(0, 243, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-msg {
    text-align: center;
    color: var(--color-cyan);
    font-weight: 700;
    margin-top: 15px;
    min-height: 24px;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: #030305;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer p {
    font-size: 1rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.social-links a:hover {
    color: var(--color-magenta);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .desktop-btn {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
    
    .burger {
        display: block;
    }

    .about-grid, .vip-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        margin-top: 60px;
        height: 500px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .mobile-links a:not(.btn-primary) {
        font-size: 2.5rem;
    }

    .about-images {
        height: 400px;
    }
    .img-main-box { height: 300px; }
    .img-sub-box { height: 200px; }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}