/* ============================================
   NEXUS Nightclub — Premium Cyberpunk Styles
   ============================================ */

:root {
    --bg-primary: #030005;
    --bg-secondary: #0a0012;
    --bg-card: rgba(255, 255, 255, 0.03);
    --purple: #a855f7;
    --purple-dark: #7c3aed;
    --pink: #ec4899;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-purple: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.2);
    --neon-pink: 0 0 20px rgba(236, 72, 153, 0.5), 0 0 60px rgba(236, 72, 153, 0.2);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
    --section-padding: 120px;
    --container-width: 1280px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Cursor */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--purple);
    box-shadow: var(--neon-purple);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s,
                background 0.3s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--pink);
    background: rgba(236, 72, 153, 0.08);
}

.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 100px;
    background: rgba(168, 85, 247, 0.08);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--pink) 100%);
    color: white;
    box-shadow: var(--neon-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 80px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: var(--neon-purple);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover .btn-glow {
    transform: translateX(100%);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 0, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.logo-img--footer {
    height: 72px;
    max-width: 260px;
}

.nav-logo .logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.logo-icon {
    color: var(--purple);
    font-size: 1.6rem;
    text-shadow: var(--neon-purple);
    animation: pulse-glow 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transition: width 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--purple-dark), var(--pink));
    border-radius: 4px;
    transition: var(--transition);
}

.nav-cta:hover {
    box-shadow: var(--neon-purple);
    transform: translateY(-1px);
}

.nav-mobile-cta {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    z-index: 0;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.55) 0%, rgba(3, 0, 5, 0.35) 40%, rgba(3, 0, 5, 0.75) 100%),
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero--video .hero-gradient {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0.9;
}

.hero--video .hero-smoke {
    opacity: 0.2;
}

.hero--video .laser {
    opacity: 0.35;
}

.hero--video .hero-stage {
    display: none;
}

.hero--video .hero-grid {
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-smoke {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: smoke-drift 20s ease-in-out infinite;
}

.hero-smoke-1 {
    width: 600px;
    height: 400px;
    background: rgba(124, 58, 237, 0.3);
    bottom: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-smoke-2 {
    width: 500px;
    height: 350px;
    background: rgba(236, 72, 153, 0.2);
    bottom: 5%;
    right: -5%;
    animation-delay: -7s;
}

.hero-smoke-3 {
    width: 400px;
    height: 300px;
    background: rgba(59, 130, 246, 0.2);
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

.laser {
    position: absolute;
    z-index: 2;
    width: 2px;
    height: 100%;
    opacity: 0.6;
    transform-origin: top center;
    animation: laser-sweep 4s ease-in-out infinite;
}

.laser-1 {
    left: 20%;
    background: linear-gradient(180deg, var(--purple) 0%, transparent 80%);
    animation-delay: 0s;
}

.laser-2 {
    left: 40%;
    background: linear-gradient(180deg, var(--pink) 0%, transparent 80%);
    animation-delay: -1s;
}

.laser-3 {
    left: 60%;
    background: linear-gradient(180deg, var(--blue) 0%, transparent 80%);
    animation-delay: -2s;
}

.laser-4 {
    left: 75%;
    background: linear-gradient(180deg, var(--cyan) 0%, transparent 80%);
    animation-delay: -3s;
}

.laser-5 {
    left: 90%;
    background: linear-gradient(180deg, var(--purple) 0%, transparent 80%);
    animation-delay: -0.5s;
}

.spotlight {
    position: absolute;
    width: 300px;
    height: 600px;
    bottom: 0;
    filter: blur(40px);
    opacity: 0.3;
    animation: spotlight-pulse 6s ease-in-out infinite;
}

.spotlight-1 {
    left: 25%;
    background: conic-gradient(from 180deg at 50% 100%, transparent, var(--purple), transparent);
    animation-delay: 0s;
}

.spotlight-2 {
    left: 50%;
    transform: translateX(-50%);
    background: conic-gradient(from 180deg at 50% 100%, transparent, var(--pink), transparent);
    animation-delay: -2s;
}

.spotlight-3 {
    right: 25%;
    background: conic-gradient(from 180deg at 50% 100%, transparent, var(--blue), transparent);
    animation-delay: -4s;
}

/* DJ Stage */
.hero-stage {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 45%;
    z-index: 1;
}

.dj-booth {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 200px;
    z-index: 2;
}

.booth-platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4), 0 10px 60px rgba(0,0,0,0.8);
}

.booth-screen {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    background: linear-gradient(180deg, #0a0a15 0%, #151525 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(168, 85, 247, 0.1);
}

.screen-wave {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    justify-content: center;
}

.screen-wave::before,
.screen-wave::after {
    content: '';
    display: block;
    width: 4px;
    background: linear-gradient(180deg, var(--purple), var(--pink));
    border-radius: 2px;
    animation: wave-bar 0.8s ease-in-out infinite alternate;
}

.screen-wave::before { height: 60%; animation-delay: 0s; }
.screen-wave::after { height: 80%; animation-delay: 0.2s; }

.screen-wave-2 {
    bottom: 50px;
    opacity: 0.5;
}

.booth-decks {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
}

.deck {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #333 0%, #111 100%);
    border: 2px solid rgba(168, 85, 247, 0.4);
    animation: deck-spin 4s linear infinite;
}

.deck-right {
    animation-direction: reverse;
    animation-duration: 3s;
}

.booth-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: booth-pulse 2s ease-in-out infinite;
}

.crowd-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23030005' d='M0,120 L0,80 Q30,60 60,75 T120,70 T180,80 T240,65 T300,75 T360,60 T420,70 T480,55 T540,65 T600,50 T660,60 T720,45 T780,55 T840,40 T900,50 T960,35 T1020,45 T1080,30 T1140,40 T1200,25 L1200,120 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
    z-index: 3;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    margin-top: -10vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 32px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 40%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--purple), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* Events Section */
.events-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
}

.event-card {
    position: relative;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--neon-purple);
}

.event-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.event-card:hover .event-card-glow {
    opacity: 1;
}

.event-date {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.date-day {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple);
}

.date-weekday {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(236, 72, 153, 0.15);
    color: var(--pink);
    border-radius: 100px;
    margin-bottom: 12px;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-dj {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.event-genre {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.event-price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
}

.event-btn {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    padding: 8px 16px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 4px;
    transition: var(--transition);
}

.event-btn:hover {
    background: var(--purple);
    color: white;
    box-shadow: var(--neon-purple);
}

.event-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.event-card:hover .event-border {
    opacity: 1;
}

/* DJs Section */
.djs-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 40px;
}

.dj-card {
    text-align: center;
    transition: var(--transition);
}

.dj-card:hover {
    transform: translateY(-10px);
}

.dj-ring {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(from 0deg, var(--accent), transparent, var(--accent));
    animation: ring-rotate 4s linear infinite;
    position: relative;
}

.dj-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-primary);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-avatar-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: 0.3;
}

.dj-initial {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent);
    position: relative;
    z-index: 1;
}

.dj-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.dj-role {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.dj-genre {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.dj-followers {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 4px 12px;
    background: var(--glass-bg);
    border-radius: 100px;
    display: inline-block;
}

/* Experience Section */
.experience-section {
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.experience-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.experience-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.15);
    top: -200px;
    right: -200px;
}

.experience-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -150px;
    left: -150px;
}

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

.experience-card {
    padding: 40px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exp-icon {
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 20px;
    text-shadow: var(--neon-purple);
}

.exp-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.exp-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.exp-line {
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.experience-card:hover .exp-line {
    transform: scaleX(1);
}

.experience-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.showcase-stage {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: showcase-spin 10s linear infinite;
}

.showcase-ring-1 {
    inset: 0;
    border-color: rgba(168, 85, 247, 0.3);
}

.showcase-ring-2 {
    inset: 30px;
    border-color: rgba(236, 72, 153, 0.3);
    animation-direction: reverse;
    animation-duration: 8s;
}

.showcase-ring-3 {
    inset: 60px;
    border-color: rgba(59, 130, 246, 0.3);
    animation-duration: 6s;
}

.showcase-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-dark), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--neon-purple);
    animation: core-pulse 3s ease-in-out infinite;
}

.showcase-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
    -webkit-text-fill-color: var(--purple);
}

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

/* Gallery Section */
.gallery-section {
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-secondary);
    overflow: hidden;
}

.gallery-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 0, 5, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-caption {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.gallery-item:hover .gallery-shine {
    left: 150%;
}

/* VIP Section */
.vip-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.vip-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.vip-card {
    position: relative;
    padding: 40px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-8px);
}

.vip-featured {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.vip-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.vip-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--purple-dark), var(--pink));
    border-radius: 100px;
    white-space: nowrap;
}

.vip-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    margin-top: 8px;
}

.vip-price {
    margin-bottom: 32px;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-guests {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.vip-features {
    text-align: left;
    margin-bottom: 32px;
}

.vip-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.vip-features li:last-child {
    border-bottom: none;
}

.vip-features svg {
    width: 16px;
    height: 16px;
    color: var(--purple);
    flex-shrink: 0;
}

.vip-btn {
    width: 100%;
}

.vip-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.vip-card:hover .vip-border {
    opacity: 1;
}

.vip-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    cursor: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-primary);
}

.form-submit {
    width: 100%;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    padding: 40px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.2);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-dark), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(168, 85, 247, 0.1);
    line-height: 1;
}

/* Footer */
.footer {
    position: relative;
    padding: 80px 0 40px;
    background: transparent;
    z-index: 2;
}

.footer-glow {
    display: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.social-link:hover {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: var(--neon-purple);
}

.social-link:hover svg {
    color: var(--purple);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--purple);
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-col li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-credits {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credits a {
    color: var(--purple-light);
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: white;
}

.footer-credits-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: flex-end;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 36px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Scroll Reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }
    50% { text-shadow: 0 0 30px rgba(168, 85, 247, 0.8), 0 0 60px rgba(168, 85, 247, 0.3); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes smoke-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 10px) scale(0.95); }
}

@keyframes laser-sweep {
    0%, 100% { transform: rotate(-15deg); opacity: 0.3; }
    50% { transform: rotate(15deg); opacity: 0.8; }
}

@keyframes spotlight-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

@keyframes wave-bar {
    0% { height: 30%; }
    100% { height: 90%; }
}

@keyframes deck-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes booth-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes showcase-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes core-pulse {
    0%, 100% { box-shadow: var(--neon-purple); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.8); transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 250px;
    }

    .vip-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .vip-featured {
        transform: none;
    }

    .vip-featured:hover {
        transform: translateY(-8px);
    }

    .experience-showcase {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --nav-height: 70px;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring,
    .mouse-glow {
        display: none;
    }

    .btn,
    .form-group input,
    .form-group select {
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(3, 0, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile-cta {
        display: block;
        margin-top: 8px;
    }

    .nav-mobile-vip-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        min-height: 48px;
        min-width: 200px;
        font-family: var(--font-display);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: linear-gradient(135deg, var(--purple-dark), var(--pink));
        border-radius: 100px;
        color: white;
    }

    .navbar:not(.scrolled) {
        background: rgba(3, 0, 5, 0.82);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--glass-border);
    }

    .container,
    .nav-container {
        padding: 0 16px;
    }

    .logo-img {
        height: 44px;
        max-width: 160px;
    }

    .particle-canvas {
        display: none;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 16px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .event-card {
        padding: 24px 20px;
    }

    .event-card-full {
        min-height: auto;
    }

    .event-footer {
        flex-wrap: wrap;
        gap: 12px;
    }

    .dj-profile {
        padding: 28px 20px;
    }

    .dj-profile-name {
        font-size: 1.5rem;
    }

    .dj-stats {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .cta-banner-inner {
        padding: 40px 24px;
    }

    .filter-tabs {
        gap: 8px;
        margin-bottom: 32px;
    }

    .filter-tab {
        min-height: 44px;
        padding: 10px 18px;
    }

    .gallery-grid.gallery-grid-full {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .experience-showcase {
        padding: 28px 20px;
        gap: 32px;
    }

    .vip-card {
        padding: 32px 24px;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .logo-img--footer {
        height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-scroll {
        display: none;
    }

    .hero-stage {
        height: 35%;
        opacity: 0.6;
    }

    .gallery-grid:not(.gallery-grid-home) {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .footer-bottom-meta {
        align-items: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .showcase-stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    html {
        font-size: 14px;
    }

    .page-hero {
        padding: 110px 0 36px;
        min-height: 220px;
    }

    .page-hero-title {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .vip-form {
        padding: 32px 20px;
    }

    .event-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .event-btn {
        text-align: center;
        padding: 12px 16px;
    }

    .event-price {
        text-align: center;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .showcase-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   Inner Pages
   ============================================ */

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-dj-wrap {
    position: relative;
    z-index: 1;
}

.page-dj-wrap--gallery {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.68) 0%, rgba(8, 0, 18, 0.74) 50%, rgba(3, 0, 5, 0.8) 100%),
        url('../images/gallery-page-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap--events {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.72) 0%, rgba(8, 0, 18, 0.78) 50%, rgba(3, 0, 5, 0.82) 100%),
        url('../images/events-page-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap--inner {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.68) 0%, rgba(8, 0, 18, 0.74) 50%, rgba(3, 0, 5, 0.8) 100%),
        url('../images/home-section-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap--vip {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.72) 0%, rgba(8, 0, 18, 0.78) 50%, rgba(3, 0, 5, 0.82) 100%),
        url('../images/vip-page-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap--menu {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.7) 0%, rgba(8, 0, 18, 0.76) 50%, rgba(3, 0, 5, 0.8) 100%),
        url('../images/menu-page-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap--about {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.7) 0%, rgba(8, 0, 18, 0.76) 50%, rgba(3, 0, 5, 0.8) 100%),
        url('../images/about-page-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap--contact {
    background:
        linear-gradient(180deg, rgba(3, 0, 5, 0.7) 0%, rgba(8, 0, 18, 0.76) 50%, rgba(3, 0, 5, 0.8) 100%),
        url('../images/contact-page-bg.jpg?v=1') center center / cover no-repeat fixed;
}

.page-dj-wrap .footer,
.page-dj-wrap .hp-footer {
    background: transparent !important;
}

.page-dj-wrap .footer-bottom {
    border-top: none;
}

body:has(.page-dj-wrap) .particle-canvas {
    display: none;
}

.page-dj-wrap .page-hero {
    background: transparent;
    padding-bottom: 40px;
}

.page-dj-wrap .page-hero-bg .hero-gradient {
    opacity: 0.35;
}

.page-dj-wrap .page-hero-bg .laser {
    opacity: 0.45;
}

.page-dj-wrap .section,
.page-dj-wrap .vip-section,
.page-dj-wrap .events-section,
.page-dj-wrap .gallery-section,
.page-dj-wrap .testimonials-section,
.page-dj-wrap .faq-section,
.page-dj-wrap .timeline-section,
.page-dj-wrap .experience-section {
    background: transparent !important;
}

.page-dj-wrap .gallery-page-section {
    padding-top: 40px;
}

.page-dj-wrap .events-page-section {
    padding-top: 40px;
}

.page-dj-wrap .cta-banner {
    background: transparent;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--purple);
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--pink);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-tab {
    padding: 10px 24px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-secondary);
    cursor: none;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--purple);
    color: white;
    background: rgba(168, 85, 247, 0.15);
    box-shadow: var(--neon-purple);
}

.event-card-full {
    min-height: 320px;
}

.event-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.events-grid-full .event-card {
    display: flex;
    flex-direction: column;
}

.event-card.hidden {
    display: none;
}

.cta-banner {
    padding: 80px 0;
}

.cta-banner-inner {
    text-align: center;
    padding: 60px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner-inner p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* DJ Profiles Page */
.dj-profiles {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.dj-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.dj-profile:nth-child(even) {
    direction: rtl;
}

.dj-profile:nth-child(even) > * {
    direction: ltr;
}

.dj-ring-large {
    width: 240px;
    height: 240px;
    margin: 0 auto;
}

.dj-avatar-large .dj-initial {
    font-size: 4rem;
}

.dj-profile-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.dj-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 20px 0;
}

.dj-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}

.dj-stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent, var(--purple));
}

.dj-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Full */
.gallery-grid.gallery-grid-full {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: row;
}

.gallery-grid.gallery-grid-full > .gallery-item {
    grid-row: auto;
    grid-column: auto;
    height: 280px;
    min-height: 280px;
}

/* VIP Perks */
.vip-perks {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.perks-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.perks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.perk-item {
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.perk-item span {
    color: var(--purple);
    margin-right: 6px;
}

.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    resize: vertical;
    cursor: none;
}

.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Menu Page */
.menu-category {
    margin-bottom: 64px;
}

.menu-cat-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
}

.menu-item {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.menu-item:hover {
    border-color: rgba(168, 85, 247, 0.2);
    transform: translateY(-4px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.menu-item-line {
    height: 1px;
    background: linear-gradient(90deg, var(--purple), transparent);
    margin-top: 16px;
    opacity: 0.3;
}

/* About Page */
.about-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
}

.timeline-section {
    background: var(--bg-secondary);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--purple), var(--pink), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: var(--neon-purple);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(168, 85, 247, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--purple);
    margin-bottom: 8px;
    display: block;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--purple);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--purple);
}

.map-placeholder {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0533 0%, #0a0012 50%, #1e1b4b 100%);
    border: 1px solid var(--glass-border);
}

.map-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.map-inner span {
    font-size: 2rem;
    color: var(--purple);
    text-shadow: var(--neon-purple);
}

.map-inner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    padding: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

/* FAQ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--purple);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .dj-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .dj-profile:nth-child(even) {
        direction: ltr;
    }

    .dj-stats {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid.gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-dj-wrap--gallery {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.68) 0%, rgba(8, 0, 18, 0.74) 50%, rgba(3, 0, 5, 0.8) 100%),
            url('../images/gallery-page-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-dj-wrap--events {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.72) 0%, rgba(8, 0, 18, 0.78) 50%, rgba(3, 0, 5, 0.82) 100%),
            url('../images/events-page-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-dj-wrap--inner {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.68) 0%, rgba(8, 0, 18, 0.74) 50%, rgba(3, 0, 5, 0.8) 100%),
            url('../images/home-section-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-dj-wrap--vip {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.72) 0%, rgba(8, 0, 18, 0.78) 50%, rgba(3, 0, 5, 0.82) 100%),
            url('../images/vip-page-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-dj-wrap--menu {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.7) 0%, rgba(8, 0, 18, 0.76) 50%, rgba(3, 0, 5, 0.8) 100%),
            url('../images/menu-page-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-dj-wrap--about {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.7) 0%, rgba(8, 0, 18, 0.76) 50%, rgba(3, 0, 5, 0.8) 100%),
            url('../images/about-page-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-dj-wrap--contact {
        background:
            linear-gradient(180deg, rgba(3, 0, 5, 0.7) 0%, rgba(8, 0, 18, 0.76) 50%, rgba(3, 0, 5, 0.8) 100%),
            url('../images/contact-page-bg.jpg?v=1') center center / cover no-repeat scroll;
    }

    .page-hero {
        padding: 120px 0 48px;
        min-height: 260px;
    }

    .gallery-grid.gallery-grid-full {
        grid-auto-rows: 220px;
    }

    .nav-links {
        gap: 24px;
    }

    .filter-tab,
    .faq-item summary,
    .form-group textarea {
        cursor: pointer;
    }
}
