/* ===========================
   BR MERCH - 8-BIT RETRO FUTURISTIC STYLING
   =========================== */

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

:root {
    /* Greytone Palette */
    --black: #000000;
    --dark-grey: #1a1a1a;
    --grey: #333333;
    --light-grey: #666666;
    --white: #ffffff;
    --off-white: #e0e0e0;
    
    /* Neon Accents */
    --neon-cyan: #00ffff;
    --neon-purple: #ff00ff;
    --neon-green: #00ff00;
    
    /* Font */
    --pixel-font: 'Press Start 2P', cursive;
}

body {
    font-family: var(--pixel-font);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   PAGE TRANSITIONS
   =========================== */

.page {
    display: none;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.header {
    margin-bottom: 50px;
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 8px;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan);
    position: relative;
    display: inline-block;
}

.subtitle {
    font-size: clamp(0.5rem, 1.5vw, 0.8rem);
    color: var(--off-white);
    letter-spacing: 4px;
    margin-top: 20px;
    text-shadow: 0 0 5px var(--neon-green);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover::before,
.glitch:hover::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:hover::before {
    animation: glitch-1 0.3s infinite;
    color: var(--neon-cyan);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s infinite;
    color: var(--neon-purple);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(-2px, 2px);
    }
    66% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(2px, -2px);
    }
    66% {
        transform: translate(-2px, 2px);
    }
}

/* ===========================
   TRAILER
   =========================== */

.trailer-container {
    position: relative;
    margin: 60px auto;
    animation: trailerEntrance 1.5s ease-out;
}

@keyframes trailerEntrance {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.trailer {
    position: relative;
    width: clamp(300px, 80vw, 900px);
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

/* Trailer Roof */
.trailer-roof {
    width: 100%;
    height: 8px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    border: 2px solid var(--grey);
    border-bottom: none;
}

/* Trailer Body */
.trailer-body {
    width: 100%;
    height: clamp(200px, 30vw, 350px);
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    border: 3px solid var(--grey);
    display: flex;
    position: relative;
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 255, 0.1),
        0 0 40px rgba(0, 255, 255, 0.2);
}

/* Counter/Service Area */
.counter {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, var(--light-grey) 0%, var(--grey) 100%);
    border-top: 2px solid var(--dark-grey);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Windows */
.trailer-window {
    flex: 1;
    background: var(--dark-grey);
    padding: 15px 10px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

.trailer-divider {
    width: 3px;
    background: var(--grey);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ===========================
   HANGING SHIRTS
   =========================== */

.hanging-shirts {
    display: flex;
    gap: clamp(8px, 1.5vw, 20px);
    justify-content: space-evenly;
    align-items: flex-start;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1;
    animation: shirtSway 3s ease-in-out infinite;
    flex-wrap: nowrap;
    padding: 0 3%;
}

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

.hanging-shirt {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hanging-shirt:hover {
    transform: scale(1.05);
}

.hanger {
    width: clamp(24px, 4vw, 36px);
    height: clamp(6px, 1vw, 10px);
    background: var(--light-grey);
    border-radius: 2px;
    position: relative;
    margin-bottom: 4px;
}

.hanger::before {
    content: '';
    position: absolute;
    width: 3px;
    height: clamp(8px, 2vw, 16px);
    background: var(--light-grey);
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.hanger::after {
    content: '';
    position: absolute;
    width: clamp(6px, 1vw, 10px);
    height: clamp(6px, 1vw, 10px);
    background: var(--grey);
    border-radius: 50%;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.shirt-design {
    width: clamp(40px, 7vw, 64px);
    height: clamp(48px, 8vw, 76px);
    background: var(--white);
    border: 2px solid var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    clip-path: polygon(
        15% 0%, 85% 0%,
        95% 8%, 100% 15%, 100% 35%,
        85% 35%, 85% 100%,
        15% 100%, 15% 35%,
        0% 35%, 0% 15%, 5% 8%
    );
    overflow: hidden;
}

/* 8-bit Pixel Art Face Container */
.pixel-face {
    width: 80%;
    height: 70%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 0;
}

.pixel {
    width: 100%;
    height: 100%;
}

/* Taylor Swift - Blonde hair, blue eyes */
.taylor .shirt-design {
    background: linear-gradient(135deg, #ffd700 0%, #ffe4b5 100%);
}

.taylor .hair { background: #f4d03f; }
.taylor .skin { background: #ffd0b5; }
.taylor .eyes { background: #4a90e2; }
.taylor .lips { background: #e74c3c; }

/* Beyoncé - Golden blonde, brown eyes */
.beyonce .shirt-design {
    background: linear-gradient(135deg, #ffd700 0%, #fff8dc 100%);
}

.beyonce .hair { background: #daa520; }
.beyonce .skin { background: #c68642; }
.beyonce .eyes { background: #8b4513; }
.beyonce .lips { background: #c0392b; }

/* Drake - Dark hair, beard */
.drake .shirt-design {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.drake .hair { background: #1a1a1a; }
.drake .skin { background: #8d5524; }
.drake .beard { background: #2c2c2c; }
.drake .eyes { background: #4a4a4a; }

/* The Weeknd - Black hair, distinctive look */
.weeknd .shirt-design {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.weeknd .hair { background: #000000; }
.weeknd .skin { background: #5d4e37; }
.weeknd .eyes { background: #2c2c2c; }
.weeknd .lips { background: #922b3e; }

/* Bad Bunny - Colorful, distinctive */
.bad-bunny .shirt-design {
    background: linear-gradient(135deg, #ffeb3b 0%, #fff59d 100%);
}

.bad-bunny .hair { background: #ff1493; }
.bad-bunny .skin { background: #d4a574; }
.bad-bunny .eyes { background: #1a1a1a; }
.bad-bunny .accessory { background: #00ff00; }

/* SZA - Curly hair, beautiful features */
.sza .shirt-design {
    background: linear-gradient(135deg, #00ced1 0%, #b0e0e6 100%);
}

.sza .hair { background: #3e2723; }
.sza .skin { background: #a67c52; }
.sza .eyes { background: #4e342e; }
.sza .lips { background: #d32f2f; }

/* Morgan Wallen - Brown hair, beard, country vibes */
.morgan .shirt-design {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
}

.morgan .hair { background: #654321; }
.morgan .skin { background: #ffd0b5; }
.morgan .beard { background: #5d4e37; }
.morgan .eyes { background: #3e2723; }

/* Zach Bryan - Dark hair, beard, authentic look */
.zach .shirt-design {
    background: linear-gradient(135deg, #556b2f 0%, #8fbc8f 100%);
}

.zach .hair { background: #3e2723; }
.zach .skin { background: #f5deb3; }
.zach .beard { background: #4a4a4a; }
.zach .eyes { background: #2c2c2c; }

/* Ed Sheeran - Ginger hair, beard */
.ed .shirt-design {
    background: linear-gradient(135deg, #ff6347 0%, #ffa07a 100%);
}

.ed .hair { background: #d2691e; }
.ed .skin { background: #ffe4c4; }
.ed .beard { background: #cd5c5c; }
.ed .eyes { background: #4682b4; }

/* Metallica - Iconic logo style */
.metallica .shirt-design {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    font-style: italic;
}

.metallica-logo {
    font-family: var(--pixel-font);
    color: #fff;
    text-shadow: 
        2px 2px 0 #ff0000,
        -1px -1px 0 #666;
    letter-spacing: -2px;
    transform: skewY(-5deg);
}

/* Vendor Group */
.vendor-group {
    display: flex;
    gap: clamp(15px, 3vw, 40px);
    align-items: flex-end;
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    z-index: 3;
    justify-content: space-evenly;
    padding: 0 5%;
}

/* Vendor Character (Pixel Art Style) */
.vendor {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

.vendor:hover {
    transform: translateY(-5px);
}

.vendor-head {
    width: clamp(20px, 3vw, 35px);
    height: clamp(20px, 3vw, 35px);
    background: linear-gradient(135deg, #d4a574 0%, #b8926a 100%);
    border: 2px solid var(--grey);
    margin-bottom: 2px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Eyes */
.vendor-head::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 15%;
    background: var(--dark-grey);
    top: 40%;
    left: 20%;
    box-shadow: 8px 0 0 var(--dark-grey);
}

/* Baseball Cap Crown (Front-Facing) */
.vendor-head::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 50%;
    background: var(--white);
    border: 2px solid var(--grey);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    background-image: url('images/br-logo-transparent.png');
    background-size: 50% 70%;
    background-repeat: no-repeat;
    background-position: center 60%;
}

/* Cap Bill (Curved Forward) */
.vendor::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 10px;
    background: var(--white);
    border: 2px solid var(--grey);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    z-index: 1;
    clip-path: ellipse(70% 100% at 50% 0%);
}

.vendor-body {
    width: clamp(25px, 3.5vw, 40px);
    height: clamp(35px, 5vw, 55px);
    background: #000000;
    border: 2px solid var(--grey);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BR Logo on Vendor Shirts */
.br-logo-small {
    width: 70%;
    height: 60%;
    object-fit: contain;
    opacity: 0.95;
    mix-blend-mode: lighten;
}

/* Wheels */
.trailer-wheels {
    display: flex;
    justify-content: space-around;
    padding: 0 10%;
    margin-top: -15px;
}

.wheel {
    width: clamp(30px, 5vw, 60px);
    height: clamp(30px, 5vw, 60px);
    background: radial-gradient(circle, var(--light-grey) 30%, var(--grey) 70%, var(--dark-grey) 100%);
    border-radius: 50%;
    border: 3px solid var(--dark-grey);
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.wheel::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    background: var(--dark-grey);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px var(--neon-cyan);
}

/* ===========================
   SHIRT ANIMATION
   =========================== */

.shirt-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.shirt-animation.active {
    animation: shirtHandoff 2s ease-out forwards;
}

@keyframes shirtHandoff {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8) rotate(180deg);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.8) rotate(540deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5) rotate(720deg);
    }
}

.animated-shirt {
    position: relative;
}

.animated-logo {
    width: clamp(150px, 25vw, 250px);
    height: auto;
    background: transparent;
}

/* Vendor Turn Animation */
.vendor.turning {
    animation: vendorTurn 0.8s ease-out;
}

@keyframes vendorTurn {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    25% {
        transform: rotateY(90deg) scale(1.05);
    }
    50% {
        transform: rotateY(180deg) scale(1.1);
    }
    75% {
        transform: rotateY(270deg) scale(1.05);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

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

/* Trailer Tipping Animation */
.trailer.tip-left {
    animation: tipLeft 2s ease-in-out;
}

.trailer.tip-right {
    animation: tipRight 2s ease-in-out;
}

@keyframes tipLeft {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg) translateX(-30px); }
}

@keyframes tipRight {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg) translateX(30px); }
}

/* Vendors Sliding During Tip */
.vendor-group.slide-left .vendor {
    animation: slideLeft 2s ease-in-out;
}

.vendor-group.slide-right .vendor {
    animation: slideRight 2s ease-in-out;
}

@keyframes slideLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-40px); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(40px); }
}

/* Vendor Dance Animation */
.vendor.dancing {
    animation: vendorDance 1s ease-in-out infinite;
}

@keyframes vendorDance {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(-5deg) translateY(-10px); }
    50% { transform: rotate(5deg) translateY(-5px); }
    75% { transform: rotate(-5deg) translateY(-10px); }
}

/* Vendor Jump Animation */
.vendor.jumping {
    animation: vendorJump 0.6s ease-out;
}

@keyframes vendorJump {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30% { transform: translateY(-50px) rotate(10deg); }
    50% { transform: translateY(-60px) rotate(-10deg); }
    70% { transform: translateY(-40px) rotate(5deg); }
}

/* Vendor Spin Animation */
.vendor.spinning {
    animation: vendorSpin 1.5s ease-in-out;
}

@keyframes vendorSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(720deg) scale(1.5); }
    100% { transform: rotate(1080deg) scale(1); }
}

/* Shirt Flying Animation */
.hanging-shirt.flying-left {
    animation: flyLeft 1.5s ease-out;
}

.hanging-shirt.flying-right {
    animation: flyRight 1.5s ease-out;
}

@keyframes flyLeft {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-300px) translateY(-100px) rotate(-720deg); opacity: 0; }
}

@keyframes flyRight {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(300px) translateY(-100px) rotate(720deg); opacity: 0; }
}

/* Shirt Swap Animation */
.hanging-shirt.swapping {
    animation: shirtSwap 0.8s ease-in-out;
}

@keyframes shirtSwap {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(0.8) rotateZ(180deg); }
}

/* Sour Patch Kids Projectile */
.sour-patch-bag {
    position: absolute;
    font-size: clamp(30px, 5vw, 50px);
    pointer-events: none;
    z-index: 100;
}

.sour-patch-bag.throwing {
    animation: throwBag 1.2s ease-out forwards;
}

@keyframes throwBag {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateX(150px) translateY(-100px) rotate(360deg);
        opacity: 1;
    }
    100% {
        transform: translateX(300px) translateY(0) rotate(720deg);
        opacity: 0;
    }
}

/* Vendor Knocked Back */
.vendor.knocked-back {
    animation: knockedBack 0.8s ease-out;
}

@keyframes knockedBack {
    0% { transform: translateX(0) rotate(0deg); }
    30% { transform: translateX(30px) rotate(15deg); }
    60% { transform: translateX(-10px) rotate(-5deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

/* Trailer Shake */
.trailer.shaking {
    animation: trailerShake 0.5s ease-in-out;
}

@keyframes trailerShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-10px) rotate(-1deg); }
    20% { transform: translateX(10px) rotate(1deg); }
    30% { transform: translateX(-10px) rotate(-1deg); }
    40% { transform: translateX(10px) rotate(1deg); }
    50% { transform: translateX(-10px) rotate(-1deg); }
    60% { transform: translateX(10px) rotate(1deg); }
    70% { transform: translateX(-10px) rotate(-1deg); }
    80% { transform: translateX(10px) rotate(1deg); }
    90% { transform: translateX(-5px); }
}

/* Vendor Group Wave */
.vendor-group.waving .vendor:nth-child(1) {
    animation: vendorWave 1s ease-in-out 0s;
}
.vendor-group.waving .vendor:nth-child(2) {
    animation: vendorWave 1s ease-in-out 0.1s;
}
.vendor-group.waving .vendor:nth-child(3) {
    animation: vendorWave 1s ease-in-out 0.2s;
}
.vendor-group.waving .vendor:nth-child(4) {
    animation: vendorWave 1s ease-in-out 0.3s;
}
.vendor-group.waving .vendor:nth-child(5) {
    animation: vendorWave 1s ease-in-out 0.4s;
}
.vendor-group.waving .vendor:nth-child(6) {
    animation: vendorWave 1s ease-in-out 0.5s;
}

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

/* ===========================
   MENU
   =========================== */

.menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 60px auto 40px;
    animation: menuSlideUp 1s ease-out 0.5s both;
}

@keyframes menuSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-btn {
    background: linear-gradient(135deg, var(--grey) 0%, var(--dark-grey) 100%);
    border: 3px solid var(--light-grey);
    color: var(--white);
    padding: 20px 40px;
    font-family: var(--pixel-font);
    font-size: clamp(0.7rem, 2vw, 1rem);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu-btn:hover {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--grey) 100%);
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(0, 255, 255, 0.5),
        inset 0 0 30px rgba(0, 255, 255, 0.3);
}

.menu-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
}

.btn-key {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.btn-text {
    letter-spacing: 3px;
}

/* ===========================
   PRESS START
   =========================== */

.press-start {
    margin-top: 40px;
    animation: pressStartFade 1s ease-out 1s both;
}

@keyframes pressStartFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.press-start p {
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    color: var(--off-white);
    letter-spacing: 2px;
}

.blink {
    animation: blink 1.5s infinite;
}

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

/* ===========================
   INNER PAGES
   =========================== */

.inner-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header {
    margin-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 6px;
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple);
}

.page-subtitle {
    font-size: clamp(0.5rem, 1.2vw, 0.7rem);
    color: var(--off-white);
    letter-spacing: 3px;
    margin-top: 15px;
    text-shadow: 0 0 5px var(--neon-green);
}

.page-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.placeholder-text {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    color: var(--light-grey);
    letter-spacing: 2px;
    text-align: center;
}

/* Back Button */
.back-btn {
    background: linear-gradient(135deg, var(--grey) 0%, var(--dark-grey) 100%);
    border: 3px solid var(--light-grey);
    color: var(--white);
    padding: 15px 30px;
    font-family: var(--pixel-font);
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    cursor: pointer;
    margin-top: 40px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.back-btn:hover {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--grey) 100%);
    border-color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 255, 0, 0.5),
        inset 0 0 30px rgba(0, 255, 0, 0.3);
}

.back-btn span {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

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

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .subtitle {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }
    
    .trailer-body {
        height: 200px;
    }
    
    .vendor-group {
        gap: 8px;
    }
    
    .menu {
        gap: 15px;
        margin: 40px auto 30px;
    }
    
    .menu-btn {
        padding: 15px 30px;
        font-size: 0.7rem;
        gap: 15px;
    }
    
    .press-start p {
        font-size: 0.6rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .back-btn {
        padding: 12px 25px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .trailer {
        width: 95vw;
    }
    
    .vendor-head {
        width: 18px;
        height: 18px;
    }
    
    .vendor-body {
        width: 22px;
        height: 32px;
    }
    
    .wheel {
        width: 30px;
        height: 30px;
    }
    
    .menu-btn {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
}