/* ================================
   DISCO MICHAEL MERCH STORE
   Maximum Funkiness Guaranteed
   ================================ */

:root {
    /* UNHINGED Disco Color Palette - MAXIMUM SATURATION */
    --disco-pink: oklch(0.75 0.35 345);
    --disco-purple: oklch(0.62 0.32 285);
    --disco-gold: oklch(0.85 0.22 85);
    --disco-chrome: oklch(0.92 0.12 85);
    --disco-deep: oklch(0.18 0.08 305);
    --disco-black: oklch(0.08 0.06 285);
    --disco-laser-green: oklch(0.82 0.28 145);
    --disco-electric-blue: oklch(0.68 0.30 250);

    /* NUCLEAR Accent Colors */
    --neon-cyan: oklch(0.82 0.24 195);
    --neon-orange: oklch(0.78 0.28 45);
    --neon-magenta: oklch(0.72 0.32 330);
    --neon-lime: oklch(0.85 0.26 125);

    /* Neutrals (heavily tinted toward purple) */
    --neutral-900: oklch(0.20 0.08 285);
    --neutral-800: oklch(0.28 0.06 285);
    --neutral-700: oklch(0.38 0.05 285);
    --neutral-100: oklch(0.96 0.02 285);
    --neutral-50: oklch(0.98 0.01 285);

    /* EXTREME Spacing Scale */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(2rem, 4vw, 4rem);
    --space-xl: clamp(3rem, 6vw, 6rem);
    --space-2xl: clamp(4rem, 10vw, 10rem);
    --space-3xl: clamp(6rem, 15vw, 15rem);

    /* Typography */
    --font-display: 'Righteous', cursive;
    --font-body: 'Fredoka', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--disco-black);
    color: var(--neutral-100);
    overflow-x: hidden;
    position: relative;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><text y="20" font-size="20">⭐</text></svg>'), auto;
}

/* UNHINGED: Retro scan lines overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 9999;
    animation: scan-flicker 0.15s infinite;
}

/* RAINBOW GLOW VIGNETTE */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        transparent 40%,
        rgba(255, 0, 255, 0.1) 70%,
        rgba(0, 255, 255, 0.15) 100%
    );
    pointer-events: none;
    z-index: -1;
    animation: rainbow-pulse 6s ease-in-out infinite;
}

@keyframes scan-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

@keyframes rainbow-pulse {
    0%, 100% {
        filter: hue-rotate(0deg);
        opacity: 0.5;
    }
    50% {
        filter: hue-rotate(180deg);
        opacity: 0.8;
    }
}

/* ================================
   ANIMATED BACKGROUND
   ================================ */

.disco-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, var(--disco-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--disco-pink) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--neon-cyan) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, var(--disco-laser-green) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, var(--disco-deep) 0%, var(--disco-black) 70%);
    opacity: 0.8;
    z-index: -2;
    animation: disco-chaos 6s ease-in-out infinite;
}

@keyframes disco-chaos {
    0%, 100% {
        opacity: 0.8;
        filter: hue-rotate(0deg) saturate(1.2);
    }
    25% {
        opacity: 0.95;
        filter: hue-rotate(15deg) saturate(1.4);
    }
    50% {
        opacity: 0.85;
        filter: hue-rotate(-10deg) saturate(1.6);
    }
    75% {
        opacity: 0.9;
        filter: hue-rotate(20deg) saturate(1.3);
    }
}

/* UNHINGED Spotlight effects - MORE CHAOS */
.spotlight {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.5;
    animation: spotlight-chaos 15s ease-in-out infinite;
}

.spotlight-1 {
    background: var(--disco-gold);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.spotlight-2 {
    background: var(--disco-pink);
    bottom: -300px;
    right: -300px;
    animation-delay: 5s;
}

.spotlight-3 {
    background: var(--neon-cyan);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.spotlight-4 {
    background: var(--disco-laser-green);
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    animation: spotlight-chaos 18s ease-in-out infinite;
    animation-delay: 3s;
}

.spotlight-5 {
    background: var(--neon-magenta);
    bottom: 30%;
    left: 15%;
    width: 700px;
    height: 700px;
    animation: spotlight-chaos 20s ease-in-out infinite;
    animation-delay: 7s;
}

@keyframes spotlight-chaos {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        filter: blur(120px) hue-rotate(0deg);
    }
    20% {
        transform: translate(200px, 100px) scale(1.3);
        filter: blur(150px) hue-rotate(30deg);
    }
    40% {
        transform: translate(-150px, 200px) scale(0.8);
        filter: blur(100px) hue-rotate(-20deg);
    }
    60% {
        transform: translate(100px, -150px) scale(1.2);
        filter: blur(140px) hue-rotate(45deg);
    }
    80% {
        transform: translate(-100px, -100px) scale(0.9);
        filter: blur(110px) hue-rotate(-15deg);
    }
}

/* ================================
   FLOATING DISCO PARTICLES
   ================================ */

.disco-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    animation: particle-float 20s ease-in-out infinite;
}

.particle-1 {
    width: 30px;
    height: 30px;
    background: var(--disco-gold);
    top: 10%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
    box-shadow: 0 0 40px var(--disco-gold);
}

.particle-2 {
    width: 40px;
    height: 40px;
    background: var(--disco-pink);
    top: 70%;
    left: 80%;
    animation-duration: 18s;
    animation-delay: 2s;
    box-shadow: 0 0 50px var(--disco-pink);
}

.particle-3 {
    width: 25px;
    height: 25px;
    background: var(--neon-cyan);
    top: 40%;
    left: 90%;
    animation-duration: 20s;
    animation-delay: 4s;
    box-shadow: 0 0 35px var(--neon-cyan);
}

.particle-4 {
    width: 35px;
    height: 35px;
    background: var(--disco-laser-green);
    top: 80%;
    left: 20%;
    animation-duration: 17s;
    animation-delay: 1s;
    box-shadow: 0 0 45px var(--disco-laser-green);
}

.particle-5 {
    width: 20px;
    height: 20px;
    background: var(--disco-purple);
    top: 30%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: 3s;
    box-shadow: 0 0 30px var(--disco-purple);
}

.particle-6 {
    width: 45px;
    height: 45px;
    background: var(--neon-magenta);
    top: 60%;
    left: 5%;
    animation-duration: 19s;
    animation-delay: 5s;
    box-shadow: 0 0 55px var(--neon-magenta);
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(100px, -150px) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50px, -300px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(150px, -200px) scale(1.1);
        opacity: 0.6;
    }
}

/* ================================
   HEADER
   ================================ */

.site-header {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    position: relative;
    animation: header-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes header-entrance {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.disco-ball-logo {
    width: clamp(120px, 20vw, 200px);
    height: clamp(120px, 20vw, 200px);
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--disco-chrome) 0%, var(--disco-gold) 50%, var(--disco-pink) 100%);
    position: relative;
    box-shadow:
        0 0 60px var(--disco-gold),
        0 0 120px var(--disco-pink),
        0 0 180px var(--disco-purple),
        inset 0 -30px 60px rgba(0,0,0,0.4),
        inset 0 30px 60px rgba(255,255,255,0.1);
    animation: disco-rotate-3d 8s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

.ball-shine {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.6) 40%,
        transparent 70%
    );
    animation: shine-chaos 1.5s ease-in-out infinite;
}

@keyframes disco-rotate-3d {
    0% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8)) hue-rotate(0deg);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.9)) hue-rotate(30deg);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.85)) hue-rotate(-15deg);
    }
    75% {
        transform: rotate(270deg) scale(1.08);
        filter: drop-shadow(0 38px 75px rgba(0, 0, 0, 0.88)) hue-rotate(20deg);
    }
    100% {
        transform: rotate(360deg) scale(1);
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8)) hue-rotate(0deg);
    }
}

@keyframes shine-chaos {
    0%, 100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1);
    }
    25% {
        opacity: 1;
        transform: translate(5px, -5px) scale(1.1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-3px, 3px) scale(0.95);
    }
    75% {
        opacity: 0.9;
        transform: translate(2px, 2px) scale(1.05);
    }
}

.site-title {
    font-family: var(--font-display);
    font-size: clamp(6rem, 22vw, 20rem);
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    gap: 0.05em;
    transform-style: preserve-3d;
}

.title-disco {
    color: var(--disco-gold);
    text-shadow:
        0 0 30px var(--disco-gold),
        0 0 60px var(--disco-pink),
        0 0 100px var(--disco-purple),
        5px 5px 0 var(--disco-purple),
        10px 10px 0 var(--disco-deep),
        -2px -2px 0 var(--neon-cyan);
    animation: disco-3d-chaos 2s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.title-michael {
    color: var(--disco-pink);
    text-shadow:
        0 0 30px var(--disco-pink),
        0 0 60px var(--disco-purple),
        0 0 100px var(--neon-cyan),
        -5px 5px 0 var(--disco-purple),
        -10px 10px 0 var(--disco-deep),
        2px -2px 0 var(--disco-laser-green);
    animation: disco-3d-chaos 2s ease-in-out infinite 0.5s;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

@keyframes disco-3d-chaos {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateX(0deg) skewY(0deg);
    }
    25% {
        transform: translateY(-12px) translateZ(20px) rotateX(5deg) skewY(-2deg);
    }
    50% {
        transform: translateY(0) translateZ(40px) rotateX(-3deg) skewY(1deg);
    }
    75% {
        transform: translateY(-8px) translateZ(20px) rotateX(4deg) skewY(-1deg);
    }
}

.tagline {
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
    color: var(--disco-chrome);
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-top: var(--space-md);
    text-shadow:
        0 0 30px var(--disco-gold),
        0 0 60px var(--disco-pink),
        2px 2px 0 var(--disco-purple);
    animation: tagline-pulse 3s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes tagline-pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    position: relative;
    max-width: 1400px;
    margin: var(--space-xl) auto var(--space-3xl);
    padding: 0 var(--space-md);
    overflow: hidden;
    border-radius: 40px;
    animation: hero-entrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes hero-entrance {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.8),
        0 0 80px var(--disco-pink),
        0 0 120px var(--disco-purple);
    border: 4px solid var(--disco-gold);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.6) contrast(1.3);
    animation: hero-chaos 15s ease-in-out infinite;
}

@keyframes hero-chaos {
    0%, 100% {
        transform: scale(1);
        filter: saturate(1.6) contrast(1.3) hue-rotate(0deg);
    }
    25% {
        transform: scale(1.08);
        filter: saturate(1.8) contrast(1.4) hue-rotate(10deg);
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        filter: saturate(1.7) contrast(1.35) hue-rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(-0.5deg);
        filter: saturate(1.75) contrast(1.38) hue-rotate(8deg);
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--disco-black) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    text-align: center;
}

.starburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--disco-gold) 0%, transparent 70%);
    opacity: 0.15;
    animation: starburst-spin 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes starburst-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.intro-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.5;
    color: var(--neutral-100);
    font-weight: 700;
    text-shadow:
        0 0 20px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.8);
    max-width: 900px;
    margin: 0 auto;
}

.intro-text .highlight {
    color: var(--disco-gold);
    font-weight: 900;
    font-size: 1.2em;
    text-shadow:
        0 0 40px var(--disco-gold),
        0 0 80px var(--disco-pink),
        0 4px 20px rgba(0,0,0,0.9),
        3px 3px 0 var(--disco-purple);
    animation: highlight-glitch 5s ease-in-out infinite;
}

@keyframes highlight-glitch {
    0%, 95%, 100% {
        transform: translate(0, 0);
    }
    96% {
        transform: translate(-2px, 2px);
    }
    97% {
        transform: translate(2px, -2px);
    }
    98% {
        transform: translate(-1px, 1px);
    }
}

/* ================================
   PRODUCTS SECTION
   ================================ */

.products-section {
    padding: var(--space-3xl) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* WILD SPINNING RAINBOW BEHIND SECTION */
.products-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: conic-gradient(
        from 0deg,
        var(--disco-pink),
        var(--disco-purple),
        var(--neon-cyan),
        var(--disco-gold),
        var(--disco-laser-green),
        var(--neon-magenta),
        var(--disco-pink)
    );
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: rainbow-spin 10s linear infinite;
}

@keyframes rainbow-spin {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    text-align: center;
    color: var(--disco-chrome);
    margin-bottom: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    text-shadow:
        0 0 40px var(--disco-pink),
        0 0 80px var(--disco-purple),
        5px 5px 0 var(--disco-deep),
        -2px -2px 0 var(--neon-cyan);
    animation: title-glitch 4s ease-in-out infinite;
    letter-spacing: 0.05em;
}

@keyframes title-glitch {
    0%, 90%, 100% {
        transform: translate(0, 0);
        filter: hue-rotate(0deg);
    }
    91% {
        transform: translate(-3px, 2px);
        filter: hue-rotate(90deg);
    }
    92% {
        transform: translate(2px, -2px);
        filter: hue-rotate(-90deg);
    }
    93% {
        transform: translate(0, 0);
        filter: hue-rotate(0deg);
    }
}

.title-line {
    flex: 1;
    height: 6px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--disco-pink),
        var(--disco-purple),
        var(--neon-cyan),
        transparent
    );
    max-width: 300px;
    animation: line-shimmer 2s linear infinite;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--disco-pink);
}

@keyframes line-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Product Grid - CHAOS LAYOUT */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    perspective: 2000px;
}

/* Stagger entrance animations + RANDOM SHAKE */
.product-card:nth-child(1) {
    animation: card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards,
               random-shake 8s ease-in-out 3s infinite;
}
.product-card:nth-child(2) {
    animation: card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards,
               random-shake 10s ease-in-out 4s infinite;
}
.product-card:nth-child(3) {
    animation: card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards,
               random-shake 9s ease-in-out 5s infinite;
}
.product-card:nth-child(4) {
    animation: card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards,
               random-shake 11s ease-in-out 6s infinite;
}
.product-card:nth-child(5) {
    animation: card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards,
               random-shake 7s ease-in-out 7s infinite;
}
.product-card:nth-child(6) {
    animation: card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards,
               random-shake 12s ease-in-out 8s infinite;
}

@keyframes card-entrance {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(-20deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes random-shake {
    0%, 90%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    91% {
        transform: translate(-5px, 2px) rotate(-2deg);
    }
    92% {
        transform: translate(5px, -2px) rotate(2deg);
    }
    93% {
        transform: translate(-3px, 3px) rotate(-1deg);
    }
    94% {
        transform: translate(3px, -3px) rotate(1deg);
    }
    95% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.product-card {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--disco-deep) 100%);
    border-radius: 32px;
    overflow: hidden;
    border: 4px solid var(--neutral-800);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    transform-style: preserve-3d;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 4px;
    background: linear-gradient(
        135deg,
        var(--disco-pink),
        var(--disco-purple),
        var(--neon-cyan),
        var(--disco-pink)
    );
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: border-flow 3s linear infinite;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-card:hover {
    transform: translateY(-20px) rotateX(8deg) scale(1.02);
    border-color: var(--disco-pink);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.7),
        0 0 80px var(--disco-pink),
        0 0 120px var(--disco-purple);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    border-color: var(--disco-gold);
    transform: scale(1);
}

.product-card.featured::before {
    background: linear-gradient(
        135deg,
        var(--disco-gold),
        var(--disco-pink),
        var(--neon-cyan),
        var(--disco-gold)
    );
    background-size: 200% 200%;
    opacity: 1;
}

.product-card.featured:hover {
    transform: translateY(-25px) rotateX(10deg) scale(1.08);
    box-shadow:
        0 50px 120px rgba(0,0,0,0.8),
        0 0 100px var(--disco-gold),
        0 0 160px var(--disco-pink);
}

/* Product Image */
.product-image-container {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--disco-purple) 0%, var(--disco-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--disco-pink);
    color: var(--disco-black);
    padding: 0.6em 1.2em;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.5),
        0 0 30px var(--disco-pink);
    z-index: 2;
    text-transform: uppercase;
    border: 2px solid var(--disco-chrome);
    animation: badge-chaos 2s ease-in-out infinite;
}

@keyframes badge-chaos {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow:
            0 8px 24px rgba(0,0,0,0.5),
            0 0 30px var(--disco-pink);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
        box-shadow:
            0 12px 32px rgba(0,0,0,0.6),
            0 0 50px var(--disco-pink);
    }
    50% {
        transform: scale(1.05) rotate(-3deg);
        box-shadow:
            0 10px 28px rgba(0,0,0,0.55),
            0 0 40px var(--disco-pink);
    }
    75% {
        transform: scale(1.08) rotate(4deg);
        box-shadow:
            0 11px 30px rgba(0,0,0,0.58),
            0 0 45px var(--disco-pink);
    }
}

.product-badge.premium {
    background: var(--disco-gold);
    animation: premium-badge-chaos 1.5s ease-in-out infinite;
}

@keyframes premium-badge-chaos {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow:
            0 8px 24px rgba(0,0,0,0.5),
            0 0 40px var(--disco-gold),
            0 0 60px var(--disco-pink);
    }
    33% {
        transform: scale(1.15) rotate(-8deg);
        box-shadow:
            0 15px 40px rgba(0,0,0,0.7),
            0 0 70px var(--disco-gold),
            0 0 100px var(--disco-pink);
    }
    66% {
        transform: scale(1.1) rotate(8deg);
        box-shadow:
            0 12px 35px rgba(0,0,0,0.6),
            0 0 60px var(--disco-gold),
            0 0 90px var(--disco-pink);
    }
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: clamp(4rem, 10vw, 6rem);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: float 3s ease-in-out infinite;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.4) contrast(1.2);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: photo-breathe 4s ease-in-out infinite;
}

@keyframes photo-breathe {
    0%, 100% {
        filter: saturate(1.4) contrast(1.2) hue-rotate(0deg);
    }
    50% {
        filter: saturate(1.6) contrast(1.25) hue-rotate(5deg);
    }
}

.product-card:hover .product-photo {
    transform: scale(1.15) rotate(2deg);
    filter: saturate(1.8) contrast(1.3) hue-rotate(10deg);
}

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

.product-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 20%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.2) 0%, transparent 15%);
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}

.premium-sparkle {
    animation: sparkle-premium 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes sparkle-premium {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Product gradient variants */
.product-tshirt { background: linear-gradient(135deg, var(--disco-pink) 0%, var(--disco-purple) 100%); }
.product-hat { background: linear-gradient(135deg, var(--disco-purple) 0%, var(--neon-cyan) 100%); }
.product-mug { background: linear-gradient(135deg, var(--neon-orange) 0%, var(--disco-pink) 100%); }
.product-ball { background: linear-gradient(135deg, var(--disco-gold) 0%, var(--disco-pink) 100%); }
.product-poster { background: linear-gradient(135deg, var(--disco-purple) 0%, var(--disco-gold) 100%); }
.product-phone { background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--disco-purple) 100%); }

/* Product Info */
.product-info {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--disco-chrome);
    line-height: 1.1;
    text-shadow:
        0 0 20px var(--disco-gold),
        2px 2px 0 var(--disco-purple);
    animation: name-glow 2s ease-in-out infinite;
}

@keyframes name-glow {
    0%, 100% {
        text-shadow:
            0 0 20px var(--disco-gold),
            2px 2px 0 var(--disco-purple);
    }
    50% {
        text-shadow:
            0 0 40px var(--disco-gold),
            0 0 60px var(--disco-pink),
            2px 2px 0 var(--disco-purple);
    }
}

.product-desc {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--neutral-100);
    line-height: 1.5;
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-sm);
    gap: var(--space-sm);
}

.product-price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--disco-gold);
    text-shadow:
        0 0 30px var(--disco-gold),
        0 0 60px var(--disco-pink),
        3px 3px 0 var(--disco-deep);
    animation: price-pulse 2s ease-in-out infinite;
    letter-spacing: 0.05em;
}

@keyframes price-pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.08);
        filter: brightness(1.4);
    }
}

/* UNHINGED Add to Cart Button */
.btn-add-to-cart {
    background: linear-gradient(135deg, var(--disco-pink) 0%, var(--disco-purple) 50%, var(--neon-cyan) 100%);
    background-size: 200% 200%;
    color: var(--neutral-50);
    border: 3px solid var(--disco-gold);
    padding: 1em 2em;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 8px 24px rgba(0,0,0,0.5),
        0 0 40px var(--disco-pink),
        inset 0 2px 4px rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: button-pulse-bg 3s ease-in-out infinite;
}

@keyframes button-pulse-bg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transition: left 0.7s;
    transform: skewX(-20deg);
}

.btn-add-to-cart:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow:
        0 15px 40px rgba(0,0,0,0.6),
        0 0 60px var(--disco-pink),
        0 0 100px var(--disco-purple);
    border-color: var(--neon-cyan);
}

.btn-add-to-cart:hover::before {
    left: 150%;
}

.btn-add-to-cart:active {
    transform: scale(1.05) translateY(0);
}

.btn-add-to-cart.premium {
    background: linear-gradient(135deg, var(--disco-gold) 0%, var(--disco-pink) 50%, var(--disco-purple) 100%);
    background-size: 200% 200%;
    border-color: var(--disco-chrome);
    animation: button-pulse-bg 2s ease-in-out infinite, premium-glow 1.5s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% {
        box-shadow:
            0 8px 24px rgba(0,0,0,0.5),
            0 0 40px var(--disco-gold),
            inset 0 2px 4px rgba(255,255,255,0.2);
    }
    50% {
        box-shadow:
            0 12px 32px rgba(0,0,0,0.6),
            0 0 80px var(--disco-gold),
            0 0 120px var(--disco-pink),
            inset 0 2px 4px rgba(255,255,255,0.3);
    }
}

.btn-add-to-cart.premium:hover {
    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        0 0 100px var(--disco-gold),
        0 0 150px var(--disco-pink);
}

.btn-icon {
    font-size: 1.4em;
    animation: icon-spin-wobble 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px currentColor);
}

@keyframes icon-spin-wobble {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(180deg) scale(1.2);
    }
    50% {
        transform: rotate(360deg) scale(1);
    }
    75% {
        transform: rotate(540deg) scale(1.15);
    }
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-section {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--disco-deep) 100%);
    padding: var(--space-2xl) var(--space-md);
    margin: var(--space-3xl) 0;
    border-top: 6px ridge var(--disco-pink);
    border-bottom: 6px ridge var(--disco-purple);
    border-left: 6px dashed var(--neon-cyan);
    border-right: 6px dotted var(--disco-gold);
    position: relative;
    animation: section-glow 3s ease-in-out infinite;
}

@keyframes section-glow {
    0%, 100% {
        box-shadow:
            0 0 40px var(--disco-pink),
            0 0 80px var(--disco-purple),
            inset 0 0 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 80px var(--disco-gold),
            0 0 120px var(--neon-cyan),
            inset 0 0 60px rgba(0, 0, 0, 0.5);
    }
}

.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.about-section::before {
    top: -100px;
    left: -100px;
    background: var(--disco-pink);
}

.about-section::after {
    bottom: -100px;
    right: -100px;
    background: var(--disco-gold);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--disco-gold);
    margin-bottom: var(--space-xl);
    text-shadow:
        0 0 50px var(--disco-gold),
        0 0 100px var(--disco-pink),
        5px 5px 0 var(--disco-purple),
        -2px -2px 0 var(--neon-cyan);
    animation: about-chromatic 3s ease-in-out infinite;
    letter-spacing: 0.08em;
}

@keyframes about-chromatic {
    0%, 100% {
        text-shadow:
            0 0 50px var(--disco-gold),
            0 0 100px var(--disco-pink),
            5px 5px 0 var(--disco-purple),
            -2px -2px 0 var(--neon-cyan);
    }
    50% {
        text-shadow:
            0 0 70px var(--disco-gold),
            0 0 130px var(--disco-pink),
            7px 7px 0 var(--disco-purple),
            -3px -3px 0 var(--neon-cyan);
    }
}

.about-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: var(--neutral-100);
    margin-bottom: var(--space-xl);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--neutral-800) 0%, var(--disco-deep) 100%);
    padding: var(--space-md) var(--space-lg);
    border-radius: 60px;
    border: 3px solid var(--disco-purple);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px var(--disco-purple);
}

.feature:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--disco-pink);
    box-shadow:
        0 12px 36px rgba(0,0,0,0.5),
        0 0 50px var(--disco-pink);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px currentColor);
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-text {
    font-weight: 900;
    color: var(--disco-chrome);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    text-shadow: 0 0 15px var(--disco-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   FOOTER
   ================================ */

.site-footer {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    background: var(--disco-black);
    border-top: 2px solid var(--neutral-800);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.footer-text {
    color: var(--neutral-100);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--disco-chrome);
    text-decoration: none;
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link:hover {
    color: var(--disco-pink);
    text-shadow:
        0 0 20px var(--disco-pink),
        0 0 40px var(--disco-purple),
        0 0 60px var(--neon-cyan),
        2px 2px 0 var(--disco-gold),
        -2px -2px 0 var(--neon-cyan);
    transform: scale(1.2) rotate(-3deg);
    animation: rainbow-text 1s linear infinite;
}

@keyframes rainbow-text {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.footer-disco-note {
    margin-top: var(--space-md);
    color: var(--disco-gold);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    opacity: 0.7;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .section-title {
        flex-direction: column;
    }

    .title-line {
        width: 100px;
        max-width: none;
    }

    .footer-content {
        gap: var(--space-sm);
    }

    .about-features {
        flex-direction: column;
    }

    .feature {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   GEOCITIES / MYSPACE MADNESS
   ================================ */

/* MARQUEE STYLING */
.retro-marquee {
    background: linear-gradient(90deg,
        var(--disco-pink) 0%,
        var(--disco-purple) 25%,
        var(--neon-cyan) 50%,
        var(--disco-gold) 75%,
        var(--disco-pink) 100%
    );
    background-size: 200% 100%;
    padding: var(--space-sm) 0;
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    letter-spacing: 0.1em;
    animation: rainbow-bg 3s linear infinite;
    box-shadow: 0 0 30px var(--disco-pink);
    border-top: 3px solid var(--disco-gold);
    border-bottom: 3px solid var(--disco-gold);
}

@keyframes rainbow-bg {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-marquee {
    margin-top: var(--space-lg);
    border-bottom: none;
}

/* BLINKING TEXT */
.blink {
    animation: blink-animation 1s steps(2, start) infinite;
    font-size: 2em;
    filter: drop-shadow(0 0 20px currentColor);
}

@keyframes blink-animation {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.under-construction {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg,
        var(--neon-orange) 0%,
        var(--disco-pink) 50%,
        var(--neon-orange) 100%
    );
    background-size: 200% 200%;
    border: 4px dashed var(--disco-gold);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    animation: construction-pulse 2s ease-in-out infinite;
    box-shadow:
        0 0 40px var(--disco-pink),
        0 0 80px var(--neon-orange);
}

@keyframes construction-pulse {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

.construction-text {
    font-weight: 900;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--disco-black);
    text-shadow: 2px 2px 0 var(--disco-chrome);
    letter-spacing: 0.15em;
}

/* BEST VIEWED BADGE */
.best-viewed {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--neutral-900);
    border: 3px solid var(--neon-cyan);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    letter-spacing: 0.08em;
    animation: best-viewed-glow 2s ease-in-out infinite;
}

@keyframes best-viewed-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--neon-cyan);
        border-color: var(--neon-cyan);
    }
    50% {
        box-shadow: 0 0 40px var(--neon-cyan), 0 0 60px var(--disco-pink);
        border-color: var(--disco-pink);
    }
}

/* CORNER DISCO BALLS */
.corner-disco {
    position: fixed;
    font-size: clamp(3rem, 6vw, 5rem);
    z-index: 9998;
    animation: corner-spin 4s linear infinite;
    filter: drop-shadow(0 0 30px var(--disco-gold));
    pointer-events: none;
}

.corner-tl {
    top: 20px;
    left: 20px;
}

.corner-tr {
    top: 20px;
    right: 20px;
    animation-delay: 1s;
}

.corner-bl {
    bottom: 80px;
    left: 20px;
    animation-delay: 2s;
}

.corner-br {
    bottom: 80px;
    right: 20px;
    animation-delay: 3s;
}

@keyframes corner-spin {
    0% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 30px var(--disco-gold)) hue-rotate(0deg);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        filter: drop-shadow(0 0 50px var(--disco-pink)) hue-rotate(180deg);
    }
    100% {
        transform: rotate(360deg) scale(1);
        filter: drop-shadow(0 0 30px var(--disco-gold)) hue-rotate(360deg);
    }
}

/* FLOATING STARS */
.floating-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.star {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    animation: star-float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px currentColor);
}

.star-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

.star-3 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.star-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.star-5 {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.star-6 {
    top: 80%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes star-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) rotate(180deg) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.2);
        opacity: 0.9;
    }
}

/* MORE PARTICLES */
.particle-7, .particle-8, .particle-9, .particle-10 {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    animation: particle-float 20s ease-in-out infinite;
}

.particle-7 {
    width: 50px;
    height: 50px;
    background: var(--neon-lime);
    top: 50%;
    right: 10%;
    animation-duration: 16s;
    animation-delay: 6s;
    box-shadow: 0 0 60px var(--neon-lime);
}

.particle-8 {
    width: 30px;
    height: 30px;
    background: var(--disco-electric-blue);
    top: 20%;
    left: 30%;
    animation-duration: 21s;
    animation-delay: 7s;
    box-shadow: 0 0 40px var(--disco-electric-blue);
}

.particle-9 {
    width: 40px;
    height: 40px;
    background: var(--neon-magenta);
    top: 90%;
    right: 50%;
    animation-duration: 19s;
    animation-delay: 8s;
    box-shadow: 0 0 50px var(--neon-magenta);
}

.particle-10 {
    width: 35px;
    height: 35px;
    background: var(--disco-chrome);
    top: 35%;
    left: 70%;
    animation-duration: 18s;
    animation-delay: 9s;
    box-shadow: 0 0 45px var(--disco-chrome);
}

/* VISITOR COUNTER */
.visitor-counter {
    background: linear-gradient(135deg,
        var(--disco-deep) 0%,
        var(--neutral-900) 50%,
        var(--disco-deep) 100%
    );
    padding: var(--space-lg);
    border: 5px ridge var(--disco-gold);
    border-radius: 20px;
    margin-bottom: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow:
        0 0 40px var(--disco-pink),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.counter-label {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--disco-gold);
    text-shadow: 0 0 20px var(--disco-gold);
    letter-spacing: 0.1em;
}

.counter-digits {
    display: flex;
    gap: 4px;
}

.digit {
    background: linear-gradient(180deg, var(--disco-chrome) 0%, var(--disco-gold) 100%);
    color: var(--disco-black);
    font-family: 'Courier New', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    padding: 0.3em 0.5em;
    border: 3px solid var(--disco-purple);
    border-radius: 8px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: digit-flip 3s ease-in-out infinite;
}

.digit:nth-child(1) { animation-delay: 0s; }
.digit:nth-child(2) { animation-delay: 0.2s; }
.digit:nth-child(3) { animation-delay: 0.4s; }
.digit:nth-child(4) { animation-delay: 0.6s; }
.digit:nth-child(5) { animation-delay: 0.8s; }
.digit:nth-child(6) { animation-delay: 1s; }

@keyframes digit-flip {
    0%, 90%, 100% { transform: rotateX(0deg); }
    95% { transform: rotateX(180deg); }
}

/* RETRO BADGES */
.retro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

.badge {
    background: linear-gradient(135deg,
        var(--disco-purple) 0%,
        var(--disco-pink) 100%
    );
    color: var(--neutral-50);
    font-weight: 900;
    font-size: clamp(0.8rem, 2vw, 1rem);
    padding: 0.6em 1.2em;
    border: 3px solid var(--disco-gold);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 30px var(--disco-pink);
    animation: badge-wobble 3s ease-in-out infinite;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 1s; }
.badge:nth-child(3) { animation-delay: 2s; }

@keyframes badge-wobble {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

/* ================================
   ULTRA DISCO ENHANCEMENTS
   ================================ */

/* MISSILE LAUNCH STYLE DISCO BUTTON - PHYSICAL 3D DOME */
.button-section {
    padding: var(--space-2xl) var(--space-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.launch-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.launch-button {
    width: clamp(200px, 30vw, 350px);
    height: clamp(200px, 30vw, 350px);
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: transform 0.1s ease-out;
}

.launch-button:active {
    transform: translateY(20px);
}

.launch-button:active .button-dome {
    box-shadow:
        /* Reduced shadows when pressed */
        inset 0 -15px 40px rgba(0, 0, 0, 0.8),
        inset 0 10px 30px rgba(255, 50, 50, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.6),
        0 0 60px oklch(0.55 0.35 25);
}

/* The dome button itself */
.button-dome {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        oklch(0.70 0.35 25) 0%,
        oklch(0.60 0.35 25) 30%,
        oklch(0.48 0.32 25) 60%,
        oklch(0.35 0.28 25) 100%
    );
    position: relative;
    box-shadow:
        /* Top highlight */
        inset 0 -25px 60px rgba(0, 0, 0, 0.6),
        /* Bottom shadow */
        inset 0 15px 40px rgba(255, 100, 100, 0.4),
        /* Outer glow */
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 100px oklch(0.55 0.35 25),
        /* Base shadow */
        0 30px 0 oklch(0.25 0.25 25),
        0 35px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dome-pulse 2s ease-in-out infinite;
    transition: all 0.1s ease-out;
}

/* Glossy shine on top */
.button-shine {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 40%;
    height: 30%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

/* Label on button */
.button-label {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: oklch(0.95 0.05 25);
    text-shadow:
        0 3px 0 oklch(0.20 0.20 25),
        0 6px 15px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(255, 255, 255, 0.5);
    z-index: 1;
    user-select: none;
}

/* Text below button */
.launch-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--disco-gold);
    text-shadow:
        0 2px 0 var(--disco-deep),
        0 0 30px var(--disco-gold),
        0 0 50px var(--disco-pink);
    animation: text-blink 1.5s ease-in-out infinite;
}

.launch-button.playing .button-dome {
    background: radial-gradient(circle at 35% 35%,
        oklch(0.80 0.35 25) 0%,
        oklch(0.70 0.35 25) 30%,
        oklch(0.58 0.32 25) 60%,
        oklch(0.45 0.28 25) 100%
    );
    animation: dome-playing 0.3s ease-in-out infinite;
}

.launch-button.playing .launch-text {
    color: var(--neon-lime);
}

@keyframes dome-pulse {
    0%, 100% {
        box-shadow:
            inset 0 -25px 60px rgba(0, 0, 0, 0.6),
            inset 0 15px 40px rgba(255, 100, 100, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.8),
            0 0 100px oklch(0.55 0.35 25),
            0 30px 0 oklch(0.25 0.25 25),
            0 35px 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow:
            inset 0 -25px 60px rgba(0, 0, 0, 0.6),
            inset 0 15px 40px rgba(255, 100, 100, 0.5),
            0 20px 40px rgba(0, 0, 0, 0.8),
            0 0 140px oklch(0.65 0.40 25),
            0 30px 0 oklch(0.25 0.25 25),
            0 35px 10px rgba(0, 0, 0, 0.5);
    }
}

@keyframes dome-playing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes text-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* SOUND TOGGLE BUTTON */
.sound-toggle {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--disco-gold);
    background: linear-gradient(135deg,
        var(--disco-purple) 0%,
        var(--disco-pink) 50%,
        var(--neon-cyan) 100%
    );
    background-size: 200% 200%;
    color: var(--neutral-50);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 10000;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 60px var(--disco-pink),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: sound-toggle-pulse 2s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sound-toggle:hover {
    transform: scale(1.15) rotate(15deg);
    animation: sound-toggle-spin 1s ease-in-out infinite;
}

.sound-toggle:active {
    transform: scale(0.95);
}

.sound-toggle.playing {
    animation: sound-toggle-playing 0.5s ease-in-out infinite;
}

.sound-toggle-ball {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.sound-toggle-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes sound-toggle-pulse {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.7),
            0 0 60px var(--disco-pink),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        background-position: 100% 50%;
        box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.7),
            0 0 80px var(--neon-cyan),
            inset 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes sound-toggle-spin {
    0%, 100% { transform: scale(1.15) rotate(0deg); }
    50% { transform: scale(1.15) rotate(360deg); }
}

@keyframes sound-toggle-playing {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.08); }
    50% { transform: scale(1); }
    75% { transform: scale(1.12); }
}

/* DANCE FLOOR GRID */
.dance-floor {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image:
        repeating-linear-gradient(0deg,
            var(--disco-purple) 0px,
            var(--disco-purple) 50px,
            var(--disco-pink) 50px,
            var(--disco-pink) 100px
        ),
        repeating-linear-gradient(90deg,
            var(--disco-purple) 0px,
            var(--disco-purple) 50px,
            var(--disco-pink) 50px,
            var(--disco-pink) 100px
        );
    opacity: 0.1;
    z-index: -2;
    animation: floor-slide 20s linear infinite;
    pointer-events: none;
}

@keyframes floor-slide {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, 100px 100px; }
}

/* STROBE FLASH OVERLAY */
.strobe-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: overlay;
}

.strobe-flash.active {
    animation: strobe 0.15s ease-out;
}

@keyframes strobe {
    0%, 100% { opacity: 0; }
    10% { opacity: 0.8; }
    20% { opacity: 0; }
    30% { opacity: 0.9; }
    40% { opacity: 0; }
}

/* CONFETTI & SPARKLES - MAXIMUM EXPLOSION */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--disco-pink);
    animation: confetti-explode 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.sparkle-particle {
    position: absolute;
    pointer-events: none;
    animation: sparkle-explode 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    filter: drop-shadow(0 0 5px currentColor);
}

@keyframes confetti-explode {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(720deg) scale(0.3);
        opacity: 0;
    }
}

@keyframes sparkle-explode {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(calc(var(--tx) * 0.1), calc(var(--ty) * 0.1)) rotate(72deg) scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), calc(var(--ty) + 200px)) rotate(720deg) scale(0);
        opacity: 0;
    }
}

/* FULL-SCREEN CONFETTI RAIN */
.confetti-rain {
    position: absolute;
    animation: confetti-fall-rain linear forwards;
}

.sparkle-rain {
    position: absolute;
    pointer-events: none;
    animation: sparkle-fall-rain linear forwards;
    filter: drop-shadow(0 0 8px currentColor);
}

@keyframes confetti-fall-rain {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(var(--drift)) rotate(var(--rotation));
        opacity: 0;
    }
}

@keyframes sparkle-fall-rain {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(100px) translateX(calc(var(--drift) * 0.1)) rotate(72deg) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(var(--drift)) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* DISCO BALL RAIN (Konami Code) */
.disco-ball-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9995;
    overflow: hidden;
}

/* MIRROR BALL REFLECTIONS */
.mirror-reflections {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.reflection {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        transparent 70%
    );
    filter: blur(20px);
    animation: reflection-move 20s ease-in-out infinite;
}

.reflection-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.reflection-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.reflection-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.reflection-4 {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.reflection-5 {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.reflection-6 {
    top: 70%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes reflection-move {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(200px, 100px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translate(-100px, 200px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(150px, -150px) scale(1.3);
        opacity: 0.5;
    }
}

/* SCROLLING DISCO LYRICS */
.disco-lyrics {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 200%;
    padding: var(--space-sm) 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--disco-gold);
    text-shadow: 0 0 10px var(--disco-pink);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    animation: lyrics-scroll 40s linear infinite;
    opacity: 0.6;
}

@keyframes lyrics-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.falling-disco-ball {
    position: absolute;
    font-size: 3rem;
    top: -100px;
    animation: ball-fall 4s linear forwards;
    filter: drop-shadow(0 0 20px var(--disco-pink));
}

@keyframes ball-fall {
    to {
        transform: translateY(calc(100vh + 100px)) rotate(720deg);
        opacity: 0.5;
    }
}

/* ENHANCED FEATURED PRODUCT - 2X SIZE */
@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
        grid-row: span 2;
        transform: scale(1);
    }

    .product-card.featured .product-name {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }

    .product-card.featured .product-desc {
        font-size: clamp(1.2rem, 2vw, 1.8rem);
    }

    .product-card.featured .product-price {
        font-size: clamp(3rem, 6vw, 5rem);
    }
}

/* PRODUCT DANCE/SHIMMY ANIMATION */
.product-card:hover .product-image {
    animation: shimmy-dance 0.5s ease-in-out infinite;
}

@keyframes shimmy-dance {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-8px) rotate(-3deg); }
    50% { transform: translateX(0) rotate(0deg); }
    75% { transform: translateX(8px) rotate(3deg); }
}

/* ENHANCED BADGES - JUMP ON HOVER */
.badge:hover {
    animation: badge-jump 0.4s ease-out;
}

@keyframes badge-jump {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(360deg) scale(1.2); }
}

/* NEON FLICKER FOR HEADINGS */
@keyframes neon-flicker {
    0%, 100% { opacity: 1; text-shadow: 0 0 30px currentColor; }
    2%, 8%, 12% { opacity: 0.8; text-shadow: 0 0 20px currentColor; }
    4%, 10% { opacity: 1; text-shadow: 0 0 40px currentColor; }
}

.section-title {
    animation: neon-flicker 5s ease-in-out infinite;
}

/* RESPONSIVE - SOUND TOGGLE & LAUNCH BUTTON */
@media (max-width: 768px) {
    .sound-toggle {
        width: 70px;
        height: 70px;
        bottom: var(--space-md);
        right: var(--space-md);
    }

    .sound-toggle-ball {
        font-size: 1.8rem;
    }

    .sound-toggle-text {
        font-size: 0.55rem;
    }

    .launch-button {
        width: 180px;
        height: 180px;
    }

    .button-label {
        font-size: 1.8rem;
    }

    .launch-text {
        font-size: 0.9rem;
    }
}

/* ================================
   SECRET EASTER EGG ANIMATIONS
   ================================ */

/* Screen shake (DISCO typed) */
@keyframes screen-shake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-10px, 5px); }
    20% { transform: translate(10px, -5px); }
    30% { transform: translate(-10px, -5px); }
    40% { transform: translate(10px, 5px); }
    50% { transform: translate(-5px, 10px); }
    60% { transform: translate(5px, -10px); }
    70% { transform: translate(-5px, -10px); }
    80% { transform: translate(5px, 10px); }
    90% { transform: translate(-5px, 5px); }
}

/* Screen spin (logo click) */
@keyframes screen-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.8); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Corner disco ball flash */
@keyframes corner-flash {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(2); filter: brightness(2) drop-shadow(0 0 30px currentColor); }
}

/* Random product shimmy */
@keyframes random-shimmy {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg) translateX(-10px); }
    50% { transform: rotate(5deg) translateX(10px); }
    75% { transform: rotate(-5deg) translateX(-10px); }
}

/* Kaleidoscope effect */
@keyframes kaleidoscope {
    0% { filter: hue-rotate(0deg) saturate(1); }
    25% { filter: hue-rotate(90deg) saturate(2); }
    50% { filter: hue-rotate(180deg) saturate(1.5); }
    75% { filter: hue-rotate(270deg) saturate(2); }
    100% { filter: hue-rotate(360deg) saturate(1); }
}

/* Disco ball logo hover enhancement */
.disco-ball-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.disco-ball-logo:hover {
    transform: scale(1.2) rotate(45deg);
    filter: drop-shadow(0 0 40px var(--disco-gold));
}

/* Make corner disco balls more interactive */
.corner-disco {
    transition: transform 0.2s ease;
}

.corner-disco:hover {
    transform: scale(1.5);
    filter: drop-shadow(0 0 20px currentColor);
}

/* ================================
   REDUCED MOTION
   ================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
