/* ========================================
   AFTERBURNER RECORDS - Main Stylesheet v1
   Dark Gray Buttons + Red Orb Theme
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    --color-primary: #EBFF8B;
    --color-secondary: #9D4EDD;
    --color-purple-glow: #7B2CBF;
    --color-red-dark: #8B0000;
    --color-red-glow: #ff2020;
    --color-stamp-red: #C41E3A; /* Cardinal Red - from stamp.png */
    --color-bg-black: #0a0a0a;
    --color-bg-dark: #121212;
    --color-text-light: #f0f0f0;
    --color-text-dim: #b0b0b0;
    --color-glass: rgba(20, 20, 20, 0.7);
    --color-glass-border: rgba(235, 255, 139, 0.2);
    --color-button-dark: #2a2a2a;
    --color-button-hover: #3a3a3a;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-black);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* === VIDEO BACKGROUND === */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Constant 50% darkening on the video */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    pointer-events: none;
}

/* === VIDEO BLUR OVERLAY === */
/* Fixed blur layer - JS sets --blur-top to position the feathered edge */
.video-blur-overlay {
    --blur-top: 100vh; /* JS will set this based on releases section position */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(58px);
    -webkit-backdrop-filter: blur(58px);
    pointer-events: none;
    z-index: 1;
    /* Dynamic mask - transparent above releases, feathered transition, then solid */
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0px,
        transparent var(--blur-top),
        black calc(var(--blur-top) + 400px)
    );
    mask-image: linear-gradient(to bottom,
        transparent 0px,
        transparent var(--blur-top),
        black calc(var(--blur-top) + 400px)
    );
}

/* Noise overlay to reduce banding artifacts on the blur */
.video-blur-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* SVG noise texture for dithering */
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* === GRUNGE OVERLAY === */
.grunge-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity=".05"/></svg>');
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* === PARTICLE BACKGROUND (FALLBACK) === */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Hidden by default when video is playing, shown as fallback */
    opacity: 0;
    transition: opacity 0.5s ease;
}

#particles.fallback-active {
    opacity: 1;
}

/* === NAVIGATION === */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-glass-border);
    overflow-x: auto;
    overflow-y: hidden;
}

.nav-scroll-wrapper {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.voronoi-nav {
    display: none; /* No longer used */
}

/* === NAV LAYOUT WRAPPERS === */
.nav-container {
    position: relative;
}

/* This is the bar that holds stamp + nav-items */
.nav-scroll-wrapper {
    position: relative;
    display: flex;
    justify-content: center;  /* center nav items */
    align-items: center;
}

/* === NAV STAMP (Red accent) ===
   Stamp color: #C41E3A (Cardinal Red)
*/
.nav-stamp {
    position: absolute;          /* take it OUT of the flex flow */
    left: 1rem;                  /* stick it to the left */
    top: 50%;
    transform: translateY(-50%); /* vertically centered in the bar */

    height: 80px;
    width: auto;
    padding: 0.4rem;
    object-fit: contain;

    filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.4));
    transition: filter 0.3s ease;
}

.nav-stamp:hover {
    filter: drop-shadow(0 0 12px rgba(196, 30, 58, 0.6));
}

/* === NAV ITEMS WRAPPER === */
.nav-items {
    display: flex;
    align-items: center;
    justify-content: center;  /* dead center horizontally */
    gap: 0.5rem;

    width: 100%;              /* span full width so center is true center */
    padding: 0 2rem;
    height: 100%;
    position: relative;
    z-index: 10;
}

/* Nav items - Glossy Y2K Aero Style */
.nav-item {
    position: relative;
    padding: 0.65rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;

    /* Glossy glass base */
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;

    /* Subtle inner glow at top for glossy effect */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Glossy highlight overlay */
.nav-item::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 10%;
    right: 10%;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 4px 4px 50% 50%;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* Hover state - Glowing aero effect */
.nav-item:hover {
    color: var(--color-primary);
    background: linear-gradient(
        180deg,
        rgba(235, 255, 139, 0.15) 0%,
        rgba(235, 255, 139, 0.05) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    border-color: rgba(235, 255, 139, 0.4);
    border-top-color: rgba(235, 255, 139, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(235, 255, 139, 0.2),
        0 0 20px rgba(235, 255, 139, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

/* Active state - More pronounced glow */
.nav-item.active {
    color: var(--color-primary);
    background: linear-gradient(
        180deg,
        rgba(235, 255, 139, 0.2) 0%,
        rgba(235, 255, 139, 0.08) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border-color: rgba(235, 255, 139, 0.5);
    border-top-color: rgba(235, 255, 139, 0.6);
    box-shadow:
        inset 0 1px 0 rgba(235, 255, 139, 0.3),
        0 0 25px rgba(235, 255, 139, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

.nav-item.active::before {
    background: linear-gradient(
        180deg,
        rgba(235, 255, 139, 0.25) 0%,
        rgba(235, 255, 139, 0) 100%
    );
}

/* === MAIN CONTENT === */
main {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section {
    min-height: 100vh;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: transparent;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

/* === SECTION TITLES === */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* Multi-layer glow for smooth falloff */
    text-shadow:
        0 0 5px rgba(235, 255, 139, 0.6),
        0 0 15px rgba(235, 255, 139, 0.4),
        0 0 30px rgba(235, 255, 139, 0.2);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: 1rem auto 0;
}

/* === HERO SECTION === */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    margin-bottom: 2rem;
}

/* === HERO LOGO IMAGE === */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-logo {
    max-width: min(90vw, 1020px);
    width: 100%;
    height: auto;
    /* Subtle glow effect on the logo */
    filter: drop-shadow(0 0 20px rgba(235, 255, 139, 0.3))
            drop-shadow(0 0 40px rgba(235, 255, 139, 0.15));
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(235, 255, 139, 0.3))
                drop-shadow(0 0 40px rgba(235, 255, 139, 0.15));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(235, 255, 139, 0.5))
                drop-shadow(0 0 60px rgba(235, 255, 139, 0.25));
    }
}

/* Legacy styles kept for reference */
.logo-container {
    margin-bottom: 2rem;
}

.chinese-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 8px;
    margin: 0.5rem 0;
    text-shadow:
        0 0 4px rgba(235, 255, 139, 0.7),
        0 0 10px rgba(235, 255, 139, 0.5),
        0 0 20px rgba(235, 255, 139, 0.3);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 10px;
    /* Multi-layer glow reduces banding by creating smoother falloff */
    text-shadow:
        0 0 5px rgba(235, 255, 139, 0.9),
        0 0 10px rgba(235, 255, 139, 0.7),
        0 0 20px rgba(235, 255, 139, 0.5),
        0 0 40px rgba(235, 255, 139, 0.3),
        0 0 60px rgba(235, 255, 139, 0.15);
    margin: 1rem 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow:
            0 0 5px rgba(235, 255, 139, 0.9),
            0 0 10px rgba(235, 255, 139, 0.7),
            0 0 20px rgba(235, 255, 139, 0.5),
            0 0 40px rgba(235, 255, 139, 0.3),
            0 0 60px rgba(235, 255, 139, 0.15);
    }
    50% {
        text-shadow:
            0 0 8px rgba(235, 255, 139, 1),
            0 0 15px rgba(235, 255, 139, 0.8),
            0 0 30px rgba(235, 255, 139, 0.6),
            0 0 50px rgba(235, 255, 139, 0.4),
            0 0 80px rgba(235, 255, 139, 0.2);
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-text-light);
    letter-spacing: 4px;
    margin-top: 1rem;
    font-weight: 300;
}

.founded-by {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-dim);
}

.founder-link {
    color: var(--color-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.founder-link:hover {
    text-shadow: 0 0 10px var(--color-primary);
}

/* === 3D JET CONTAINER === */
.orb-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 1800px;
    max-height: 1200px;
    margin: 0 auto;
    z-index: 5;
    color: #EBFF8B;
}

#orb-canvas {
    width: 100%;
    height: 100%;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--color-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === RELEASES SECTION === */
.releases-section {
    background: transparent;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    min-height: 200px;
}

.releases-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--color-primary);
    font-size: 2rem;
}

.releases-loading p {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--color-text-dim);
}

.release-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-dark);
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(235, 255, 139, 0.3);
}

.release-artwork {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.release-artwork img,
.release-artwork svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.release-card:hover .release-artwork img,
.release-card:hover .release-artwork svg {
    transform: scale(1.1);
}

.artwork-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    color: var(--color-primary);
    font-size: 3rem;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.release-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.release-card:hover .play-overlay i {
    transform: scale(1.2);
}

.release-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    padding-top: 2.5rem;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    /* Soft feathered top edge using mask */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
}

.release-card:hover .release-info {
    transform: translateY(0);
    opacity: 1;
}

.release-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.release-artist {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* === CTA BUTTON - Dark gray style === */
.cta-button-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light);
    background: var(--color-button-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--color-button-hover);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(235, 255, 139, 0.2);
}

/* === ARTISTS SECTION === */
.artists-section {
    background: transparent;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(235, 255, 139, 0.3);
}

.artist-photo {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.artist-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-glass);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-bg-black);
    transform: scale(1.2) rotate(360deg);
}

.join-label {
    text-align: center;
    color: var(--color-primary);
}

.join-label i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.artist-role {
    font-size: 1rem;
    color: var(--color-text-dim);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-bio {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.artist-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.genre-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(235, 255, 139, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-primary);
}

/* Submit demo button - dark gray */
.artist-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-button-dark);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition-smooth);
}

.artist-cta:hover {
    transform: scale(1.05);
    background: var(--color-button-hover);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(235, 255, 139, 0.2);
}

/* === EVENTS SECTION === */
.events-section {
    background: transparent;
}

.events-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

/* Default hover (for non-current/past cards) */
.event-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(235, 255, 139, 0.2);
    transform: translateX(0px);
}

/* ---- CURRENT FEATURED EVENT EFFECT ---- */
.current-event {
    border-color: var(--color-primary);
    box-shadow:
        0 0 25px rgba(235, 255, 139, 0.35),
        0 0 60px rgba(235, 255, 139, 0.18);
    animation: currentEventGlow 2.5s ease-in-out infinite alternate;
}

/* Glow animation */
@keyframes currentEventGlow {
    0% {
        box-shadow:
            0 0 15px rgba(235, 255, 139, 0.20),
            0 0 40px rgba(235, 255, 139, 0.12);
    }
    100% {
        box-shadow:
            0 0 30px rgba(235, 255, 139, 0.45),
            0 0 70px rgba(235, 255, 139, 0.25);
    }
}

/* Override hover for current event to avoid sliding */
.current-event:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 35px rgba(235, 255, 139, 0.4),
        0 0 80px rgba(235, 255, 139, 0.25);
}

/* ---- BADGES ---- */
.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-bg-black);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.past-badge {
    background: var(--color-text-dim);
    color: var(--color-bg-black);
}

/* ---- BUY TICKET BUTTON (Pulsing Red Border) ---- */
.event-ticket-btn {
    position: absolute;
    top: 1rem;
    right: 7.5rem;

    padding: 0.3rem 1.4rem;
    background: var(--color-primary);
    color: var(--color-bg-black);

    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    border: 4px solid rgb(216, 165, 165);  /* Red outline */
    animation: pulseBorder 0.5s infinite ease-in-out;
}

/* Optional hover (just highlight outline, no size change) */
.event-ticket-btn:hover {
    border-color: rgb(101, 80, 255);
}

/* Soft pulsing effect */
@keyframes pulseBorder {
    0% {
        border-color: rgba(255, 40, 40, 0.2);
    }
    50% {
        border-color: rgb(250, 82, 82);
    }
    100% {
        border-color: rgba(255, 40, 40, 0.2);
    }
}

/* Disabled (sold out or past) state */
.event-ticket-btn.disabled {
    background: var(--color-text-dim);
    border-color: var(--color-text-dim);
    color: var(--color-bg-black);
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
    box-shadow: none;
}

/* ---- CONTENT STYLES ---- */
.event-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.event-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-light);
}

.event-detail i {
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 20px;
}

.event-lineup {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.event-lineup h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.event-description {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* === ABOUT SECTION === */
.about-section {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-text {
    color: var(--color-text-light);
}

.lead-text {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin: 2rem 0 1rem;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow:
        0 0 5px rgba(235, 255, 139, 0.6),
        0 0 12px rgba(235, 255, 139, 0.4),
        0 0 25px rgba(235, 255, 139, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-list {
    list-style: none;
    margin: 1rem 0 2rem;
}

.values-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.values-list i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.label-logo-display {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.logo-chinese {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    letter-spacing: 6px;
    margin: 0.5rem 0;
}

.logo-english {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 4px;
    margin: 1rem 0;
}

.genres-showcase {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.genres-showcase h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.genre-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.genre-chip {
    padding: 0.5rem 1rem;
    background: rgba(235, 255, 139, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-primary);
}

/* === CONTACT SECTION === */
.contact-section {
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-info p,
.contact-form-container p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.social-link-large:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(235, 255, 139, 0.3);
}

.social-link-large i {
    font-size: 1.5rem;
}

.location-info {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.location-info h4 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === FORM STYLES === */
.demo-form {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-glass-border);
    border-radius: 8px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(235, 255, 139, 0.3);
}

/* Submit button - dark gray */
.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--color-button-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    background: var(--color-button-hover);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(235, 255, 139, 0.2);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    display: block;
}

/* === MUSIC PLAYER === */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-glass);
    border-top: 1px solid var(--color-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-player.collapsed {
    transform: translateY(calc(100% - 50px));
}

.player-toggle {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.player-toggle:hover {
    color: var(--color-text-light);
}

.music-player.collapsed .player-toggle i {
    transform: rotate(180deg);
}

.player-content {
    padding: 1.5rem 2rem 2rem;
    display: grid;
    grid-template-areas:
        "info controls volume"
        "progress progress progress";
    grid-template-columns: 1fr auto 200px;
    gap: 2rem;
    align-items: center;
}

.player-track-info {
    grid-area: info;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-artwork {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.player-artist {
    font-size: 1rem;
    color: var(--color-text-dim);
}

.player-controls {
    grid-area: controls;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    width: 50px;
    height: 50px;
    background: rgba(235, 255, 139, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-black);
    transform: scale(1.1);
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.player-progress {
    grid-area: progress;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-current,
.time-total {
    color: var(--color-primary);
    font-size: 0.9rem;
    min-width: 45px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Progress handle/indicator */
.progress-handle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 2px solid #fff;
    transition: left 0.1s linear;
    z-index: 2;
}

.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.player-volume {
    grid-area: volume;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-slider {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.player-links {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.player-link {
    color: var(--color-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.player-link:hover {
    color: var(--color-text-light);
    transform: scale(1.2);
}

/* === FOOTER === */
.footer {
    background: var(--color-bg-black);
    border-top: 1px solid var(--color-glass-border);
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-chinese {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    letter-spacing: 4px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 3px;
    margin: 0.5rem 0;
}

.footer-tagline {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-bg-black);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .nav-stamp {
        height: 40px;
        margin-left: 0.8rem;
        padding: 0.3rem;
    }

    .nav-items {
        padding: 0 1rem;
        justify-content: flex-start;
    }

    .nav-item {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 3rem 1rem;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 90vw;
    }

    .hero-logo-container {
        padding: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .chinese-text {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .orb-container {
        width: 100vw;
        height: 90vh;
    }

    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .event-details {
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .player-content {
        grid-template-areas:
            "info"
            "controls"
            "progress"
            "volume";
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .player-track-info,
    .player-controls,
    .player-volume {
        justify-content: center;
    }

    .player-links {
        position: static;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-stamp {
        height: 32px;
        margin-left: 0.5rem;
        padding: 0.2rem;
    }

    .hero-logo {
        max-width: 95vw;
    }

    .hero-logo-container {
        padding: 0.5rem;
    }

    .main-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .orb-container {
        width: 100vw;
        height: 85vh;
    }

    .releases-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

