/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors */
    --primary-color: #7b2cbf;
    --secondary-color: #00ff9d;
    --accent-color: #e0aaff;
    --accent-red: #ff6b6b;
    --primary-gold: #FFD700;
    --dark-color: #05010a;
    --darker-color: #0f021f;
    --light-color: #ffffff;
    --gray-color: #aaa;
    --bg-dark: #1a1a2e;
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 20px 50px rgba(123, 44, 191, 0.3);
    --focus-outline-offset: 3px;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

/* Loading state backup */
html.is-loading,
body.is-loading {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overscroll-behavior: none !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: none !important;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: overlay;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9d4edd, #00ff9d);
}

/* Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--light-color);
    outline-offset: 2px;
}

/* Image Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: var(--focus-outline-offset);
}

/* Performance Optimizations */
.will-change {
    will-change: transform, opacity;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* iOS Safari fixes */
@supports (-webkit-overflow-scrolling: touch) {
    html.is-loading,
    body.is-loading {
        position: fixed !important;
        overflow: hidden !important;
        -webkit-overflow-scrolling: none !important;
        overscroll-behavior-y: none !important;
    }
}

/* ==================== LOADING SCREEN ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    position: relative;
    width: 250px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stage {
    position: absolute;
    bottom: 80px;
    width: 150px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.4) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
    transform: scale(1);
    animation: spotlightPulse 1.5s ease-in-out infinite;
}

.character-box {
    position: relative;
    width: 180px;
    height: 220px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: bounceChar 0.6s ease-in-out infinite alternate;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.note-anim {
    position: absolute;
    color: var(--primary-gold);
    font-size: 24px;
    opacity: 0;
    animation: flyNote 2s linear infinite;
}

.staff-mini {
    margin-top: 20px;
    width: 120px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.loading-text {
    color: white;
    margin-top: 15px;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    animation: textFade 1.5s infinite;
}

/* ==================== KEYFRAME ANIMATIONS ==================== */
@keyframes bounceChar {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-15px) scale(1.02); }
}

@keyframes spotlightPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes flyNote {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) rotate(360deg); opacity: 0; }
}

@keyframes textFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; color: var(--primary-gold); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes footerMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg); 
        opacity: 1;
    }
}

@keyframes lightSweep {
    0% { transform: rotate(45deg) translateX(-100px); }
    100% { transform: rotate(45deg) translateX(100px); }
}

@keyframes crownGlow {
    0% { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: blur(0);
}

.header.scrolled {
    background: rgba(5, 1, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(123, 44, 191, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo-text {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    position: relative;
}

.logo-text .accent {
    color: var(--primary-color);
}

/* ==================== HAMBURGER MENU ==================== */
.menu-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: var(--focus-outline-offset);
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--light-color);
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==================== FULLSCREEN MENU ==================== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-color), #3c096c);
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.95;
}

.fullscreen-menu.active .menu-bg {
    transform: scale(1);
}

.menu-items {
    position: relative;
    z-index: 2;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.menu-link {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin: 15px 0;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
    line-height: 1.2;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-num {
    font-size: 1rem;
    vertical-align: super;
    margin-left: 10px;
    color: var(--light-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.menu-link:hover,
.menu-link:focus {
    color: var(--light-color);
    -webkit-text-stroke: 0;
    transform: translateX(10px);
    outline: none;
}

.menu-link:hover .menu-num,
.menu-link:focus .menu-num {
    opacity: 1;
    color: var(--secondary-color);
}

/* ==================== DESKTOP NAVIGATION ==================== */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }
    
    .nav-items {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        color: var(--light-color);
        text-decoration: none;
        font-family: 'Clash Display', sans-serif;
        font-weight: 500;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 8px 16px;
        border-radius: 20px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary-color);
        background: rgba(0, 255, 157, 0.1);
    }
    
    .btn-register-desktop {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        background: linear-gradient(135deg, var(--primary-color), #9d4edd);
        color: var(--light-color);
        font-family: 'Clash Display', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        border-radius: 25px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        min-width: 150px;
    }
    
    .btn-register-desktop:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(123, 44, 191, 0.4);
    }
    
    .btn-register-desktop .btn-sparkle {
        position: absolute;
        top: -10px;
        left: -10px;
        width: 20px;
        height: 20px;
        background: var(--secondary-color);
        border-radius: 50%;
        animation: sparkle 2s infinite;
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    margin-bottom: 30px;
    font-family: 'Clash Display', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-title .line-2 {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
    display: block;
    margin: 10px 0;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Hero Visual Elements */
.hero-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
}

.vinyl-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
}

.vinyl-record {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    aspect-ratio: 1;
    background: radial-gradient(circle, #111 0%, #222 50%, #111 100%);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    border: 2px solid #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.vinyl-record.paused {
    animation-play-state: paused;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    aspect-ratio: 1;
    background: var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl-sleeve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    aspect-ratio: 1;
    background: var(--darker-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vinyl-sleeve:hover,
.vinyl-sleeve:focus-within {
    transform: translate(-20px, -20px);
}

.vinyl-sleeve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vinyl-sleeve:hover img,
.vinyl-sleeve:focus-within img {
    transform: scale(1.05);
}

/* Hero Enhancements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-note,
.floating-book,
.floating-microphone {
    position: absolute;
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-note:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--primary-color);
}

.floating-note:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
    color: var(--secondary-color);
}

.floating-note:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    color: var(--accent-color);
}

.floating-book {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
    color: var(--primary-gold);
}

.floating-microphone {
    bottom: 20%;
    right: 10%;
    animation-delay: 2.5s;
    color: var(--accent-red);
}

.vinyl-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

.vinyl-groove:nth-child(2) {
    width: 70%;
    height: 70%;
}

.vinyl-groove:nth-child(3) {
    width: 60%;
    height: 60%;
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #111;
    border-radius: 50%;
    z-index: 3;
}

.vinyl-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.2), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.sleeve-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(123, 44, 191, 0.3),
        rgba(0, 255, 157, 0.3),
        transparent);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vinyl-sleeve:hover .sleeve-glow {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--light-color);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--light-color);
    border-radius: 1px;
    animation: scroll 2s infinite;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 200px;
    z-index: 1;
    min-height: 54px;
    cursor: pointer;
}

.btn-primary:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: var(--focus-outline-offset);
}

.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-primary:hover .btn-fill,
.btn-primary:focus .btn-fill {
    transform: translateX(0);
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--dark-color);
    border-color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), #9d4edd);
    color: var(--light-color);
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 200px;
    min-height: 54px;
    border: none;
    cursor: pointer;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover .btn-glow {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(123, 44, 191, 0.4);
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* Large CTA Button */
.btn-cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-color), #9d4edd);
    color: var(--light-color);
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 300px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.4);
}

.btn-sparkles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
}

.btn-sparkles i {
    position: absolute;
    color: var(--secondary-color);
    font-size: 16px;
    animation: sparkleFloat 2s infinite;
}

.btn-sparkles i:nth-child(1) {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.btn-sparkles i:nth-child(2) {
    top: 30px;
    right: 30px;
    animation-delay: 0.5s;
}

.btn-sparkles i:nth-child(3) {
    bottom: 20px;
    left: 40px;
    animation-delay: 1s;
}

/* Subscribe Button */
.btn-subscribe {
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-color), #9d4edd);
    border: none;
    border-radius: 25px;
    color: var(--light-color);
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.4);
}

/* ==================== MARQUEE ==================== */
.marquee-strip {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    transform: rotate(-1deg);
    margin: 20px 0 40px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    padding-right: 2rem;
}

.marquee-content span {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 2rem;
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: 'Clash Display', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.about-text p {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    color: var(--light-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.about-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.8rem;
    min-width: 20px;
}

/* About Visual */
.about-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.visual-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--darker-color);
    position: relative;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.visual-card:hover img,
.visual-card:focus-within img {
    transform: scale(1.05);
}

/* About Enhancements */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number, .stat-static {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 5px;
}

.card-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(123, 44, 191, 0.5);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visual-card:hover .card-frame {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 30%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visual-card:hover .card-shine {
    opacity: 1;
}

.visual-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.dot:nth-child(2) {
    background: var(--secondary-color);
}

.dot:nth-child(3) {
    background: var(--accent-color);
}

/* ==================== ACARA SECTION ==================== */
.acara-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(123, 44, 191, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Artist Cards */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    height: 100%;
}

.artist-card:hover,
.artist-card:focus-within {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    outline: none;
}

.artist-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artist-card:hover .artist-img,
.artist-card:focus-within .artist-img {
    transform: scale(1.05);
}

.artist-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-color), #9d4edd);
    color: var(--light-color);
    font-family: 'Clash Display', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.artist-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(123, 44, 191, 0.3), 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.artist-card:hover .artist-glow {
    opacity: 1;
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(5, 1, 10, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.artist-card:hover .artist-overlay,
.artist-card:focus-within .artist-overlay {
    transform: translateY(0);
    opacity: 1;
}

.artist-name {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.artist-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.artist-info {
    padding: 25px;
}

.artist-quote {
    font-style: italic;
    color: var(--gray-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.artist-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(123, 44, 191, 0.2);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(123, 44, 191, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.detail-item i {
    color: var(--primary-color);
}

/* Acara CTA */
.acara-cta {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, 
        rgba(123, 44, 191, 0.1), 
        rgba(0, 255, 157, 0.1));
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(123, 44, 191, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-content h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== GUEST STAR SECTION ==================== */
.guest-star-section {
    background: linear-gradient(135deg, 
        var(--darker-color) 0%,
        #1a0b2e 50%,
        var(--darker-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.guest-star-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Stage Lights */
.stage-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 300px;
    height: 800px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent);
    transform: rotate(45deg);
    filter: blur(20px);
    animation: lightSweep 8s infinite linear;
}

.light-beam:nth-child(1) {
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.light-beam:nth-child(2) {
    top: -200px;
    left: 50%;
    animation-delay: 2s;
}

.light-beam:nth-child(3) {
    top: -200px;
    right: -100px;
    animation-delay: 4s;
}

/* Confetti */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    animation: confettiFall 5s infinite linear;
}

/* Main Guest Star */
.main-guest {
    margin: 60px auto 100px;
    max-width: 1000px;
}

.main-guest-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.main-guest-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--primary-color));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.main-guest-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.main-guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.main-guest-card:hover .main-guest-image img {
    transform: scale(1.05);
}

.main-guest-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(255, 215, 0, 0.3),
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-guest-card:hover .main-guest-glow {
    opacity: 1;
}

.main-guest-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-gold);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.main-guest-card:hover .main-guest-frame {
    opacity: 0.5;
}

.main-guest-crown {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: crownGlow 2s infinite alternate;
}

.main-guest-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guest-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-gold), #ffed4e);
    color: var(--dark-color);
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.guest-name {
    font-family: 'Clash Display', sans-serif;
    font-size: 3rem;
    color: var(--light-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.guest-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.guest-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guest-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.guest-stat i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.guest-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.guest-showtime {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 15px;
    margin-bottom: 30px;
}

.guest-showtime i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.guest-showtime span {
    color: var(--light-color);
    font-weight: 600;
}

.guest-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.social-link::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.social-link:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* Other Guest Stars */
.guest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.guest-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.guest-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.3);
}

.guest-card-inner {
    padding: 25px;
}

.guest-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 20px;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guest-card:hover .guest-image img {
    transform: scale(1.05);
}

.guest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        rgba(5, 1, 10, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.guest-card:hover .guest-overlay {
    opacity: 1;
}

.guest-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(123, 44, 191, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.guest-play-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    text-decoration: none;
}

.guest-info {
    text-align: center;
}

.guest-name-sm {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 5px;
}

.guest-role-sm {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.guest-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.guest-tag {
    background: rgba(123, 44, 191, 0.2);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(123, 44, 191, 0.3);
}

.guest-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.guest-time i {
    color: var(--secondary-color);
}

/* Schedule Timeline */
.schedule-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.schedule-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    color: var(--light-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.schedule-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-item:hover::before {
    opacity: 1;
}

.schedule-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(123, 44, 191, 0.3);
}

.schedule-item.highlight {
    background: linear-gradient(135deg,
        rgba(123, 44, 191, 0.1),
        rgba(0, 255, 157, 0.1));
    border-color: rgba(123, 44, 191, 0.3);
}

.schedule-item.highlight::before {
    opacity: 1;
}

.schedule-time {
    min-width: 120px;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.schedule-act {
    flex: 1;
    font-size: 1.3rem;
    color: var(--light-color);
    font-weight: 500;
    padding: 0 30px;
}

.schedule-stage {
    min-width: 120px;
    text-align: center;
    padding: 8px 15px;
    background: rgba(123, 44, 191, 0.2);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(123, 44, 191, 0.3);
}

/* ==================== GALLERY SECTION ==================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--gray-color);
    font-family: 'Clash Display', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(123, 44, 191, 0.2);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: var(--transition);
    outline: none;
}

.gallery-item:hover,
.gallery-item:focus {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    outline: 2px solid var(--secondary-color);
    outline-offset: var(--focus-outline-offset);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(5, 1, 10, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
    opacity: 1;
}

.gallery-content h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.gallery-content p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* ==================== PROCESS TIMELINE ==================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--dark-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.step-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.step-image {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-image:hover img,
.step-image:focus-within img {
    transform: scale(1.05);
}

/* Process Enhancements */
.step-requirements {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid var(--primary-color);
}

.step-requirements h4 {
    font-family: 'Clash Display', sans-serif;
    color: var(--light-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.step-requirements ul {
    list-style: none;
    padding-left: 20px;
}

.step-requirements li {
    color: var(--gray-color);
    margin-bottom: 8px;
    position: relative;
}

.step-requirements li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--secondary-color);
}

/* ==================== STATS SECTION ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Clash Display', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Enhancements */
.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Action Buttons */
.juknis-ref-action {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(123, 44, 191, 0.1), 
        rgba(0, 255, 157, 0.1));
    position: relative;
    overflow: hidden;
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-content h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.form-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.newsletter-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(123, 44, 191, 0.3), 
        transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite alternate;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--darker-color);
    padding-top: 80px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer-marquee {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.footer-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: footerMarquee 20s linear infinite;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-brand h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.countdown-wrap h5 {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    flex: 1;
}

.countdown-value {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 44px;
    min-height: 44px;
}

.social-btn:hover,
.social-btn:focus {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    outline: 2px solid var(--secondary-color);
    outline-offset: var(--focus-outline-offset);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.link-group h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: var(--gray-color);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    padding: 5px 0;
}

.link-group a:hover,
.link-group a:focus {
    color: var(--light-color);
    outline: none;
}

.link-group p {
    color: var(--gray-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.link-group i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.footer-map-trigger {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 0.95rem;
    padding: 5px 0;
}

.footer-map-trigger:hover,
.footer-map-trigger:focus {
    color: var(--light-color);
    outline: none;
}

.footer-map-trigger i {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Footer Enhancements */
.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.sponsor-logo {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.sponsor-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.social-btn:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -25px;
}

.footer-credits {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.footer-credits i {
    color: var(--accent-red);
    animation: heartbeat 1.5s infinite;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 1, 10, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1003;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--darker-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1004;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
}

.lightbox-close:hover,
.lightbox-close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    outline: 2px solid var(--secondary-color);
}

.lightbox-image-container {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    padding: 20px;
    text-align: center;
    color: var(--light-color);
    background: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.lightbox-prev:hover,
.lightbox-prev:focus,
.lightbox-next:hover,
.lightbox-next:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    outline: 2px solid var(--secondary-color);
}

/* Lightbox Enhancements */
.lightbox-info {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
    color: var(--light-color);
    font-size: 0.9rem;
}

.lightbox-index {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 15px;
}

.lightbox-category {
    background: rgba(123, 44, 191, 0.5);
    padding: 5px 15px;
    border-radius: 15px;
}

/* ==================== MAP MODAL ==================== */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 1, 10, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1003;
    padding: 20px;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--darker-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(123, 44, 191, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.map-modal-header {
    padding: 25px;
    background: linear-gradient(90deg, rgba(123, 44, 191, 0.2), rgba(0, 255, 157, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-modal-header h3 {
    font-family: 'Clash Display', sans-serif;
    color: var(--light-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.map-modal-header p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.map-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
}

.map-modal-close:hover,
.map-modal-close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    outline: 2px solid var(--secondary-color);
}

.map-container {
    padding: 25px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Map Modal Enhancements */
.map-instructions {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
}

.map-instructions h4 {
    font-family: 'Clash Display', sans-serif;
    color: var(--light-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.map-instructions ul {
    list-style: none;
    padding: 0;
}

.map-instructions li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.map-instructions i {
    color: var(--secondary-color);
    min-width: 20px;
}

/* ==================== AUDIO PLAYER ==================== */
.audio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.audio-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #9d4edd);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.4);
}

.audio-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.6);
}

.audio-status {
    font-size: 0.7rem;
    font-weight: 600;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Container responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Hero responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-desc {
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-visual {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .vinyl-container {
        max-width: 300px;
    }
}

/* Section responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-link {
        font-size: 2rem;
        min-height: 50px;
    }
    
    .lightbox-content,
    .map-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* About responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
}

/* Artist grid responsive */
@media (max-width: 480px) {
    .artist-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Process timeline responsive */
@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-images {
        grid-template-columns: 1fr;
    }
}

/* Stats responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 20px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Action buttons responsive */
@media (max-width: 768px) {
    .juknis-ref-action {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .juknis-ref-action .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        width: 100%;
        text-align: center;
        min-width: unset;
    }
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .countdown {
        flex-direction: column;
    }
}

/* Guest star responsive */
@media (max-width: 1024px) {
    .main-guest-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guest-name {
        font-size: 2.5rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .schedule-time,
    .schedule-act,
    .schedule-stage {
        width: 100%;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .main-guest-card {
        padding: 25px;
    }
    
    .guest-name {
        font-size: 2rem;
    }
    
    .guest-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .schedule-container {
        padding: 25px;
    }
    
    .newsletter-card {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        justify-content: center;
    }
    
    .desktop-nav,
    .btn-register-desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .guest-grid {
        grid-template-columns: 1fr;
    }
    
    .main-guest-card {
        padding: 20px;
    }
    
    .guest-name {
        font-size: 1.8rem;
    }
    
    .schedule-item {
        padding: 20px;
    }
    
    .audio-player {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
}

/* Small screen adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .menu-link {
        font-size: 1.8rem;
        min-height: 45px;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
}

/* ==================== TOUCH DEVICE OPTIMIZATIONS ==================== */
@media (hover: none) and (pointer: coarse) {
    .artist-card:hover,
    .gallery-item:hover,
    .vinyl-sleeve:hover {
        transform: none;
    }
    
    .btn-primary:hover .btn-fill {
        transform: translateX(-100%);
    }
    
    .btn-primary:hover {
        color: var(--light-color);
    }
    
    .menu-link:hover {
        transform: none;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    }
    
    .menu-link:hover .menu-num {
        opacity: 0.5;
        color: var(--light-color);
    }
    
    /* Increase touch target sizes */
    .menu-link {
        min-height: 60px;
        padding: 15px 0;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
    }
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .marquee-content {
        animation: none !important;
    }
    
    .vinyl-record {
        animation: none !important;
    }
    
    /* Performance Optimizations for reduced motion */
    .stage-lights,
    .floating-elements,
    .vinyl-record,
    .btn-sparkles,
    .main-guest-crown,
    .footer-credits i {
        animation: none !important;
    }
    
    .light-beam {
        animation: none;
        opacity: 0.1;
    }
    
    .btn-glow,
    .btn-fill {
        transition: none;
    }
}

/* ==================== HIGH CONTRAST MODE ==================== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000FF;
        --secondary-color: #00FFFF;
        --light-color: #000000;
        --dark-color: #FFFFFF;
    }
    
    body {
        background: #FFFFFF;
        color: #000000;
    }
    
    .guest-star-section {
        background: #000000;
        border: 3px solid #ffffff;
    }
    
    .main-guest-card {
        border: 3px solid #ffffff;
    }
    
    .guest-card {
        border: 2px solid #ffffff;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .noise-overlay,
    .cursor-dot,
    .cursor-circle,
    .cursor-text,
    .loader-wrap,
    .menu-toggle,
    .fullscreen-menu,
    .lightbox,
    .map-modal,
    .footer-marquee,
    .scroll-indicator,
    .vinyl-record,
    .marquee-strip {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .btn-primary {
        border: 1px solid black !important;
        color: black !important;
        background: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .guest-star-section {
        page-break-before: always;
    }
    
    .main-guest-card {
        border: 2px solid #000000;
        box-shadow: none;
    }
    
    .guest-card {
        break-inside: avoid;
    }
}