/* ============================================
   VINTAGE VEGAS SIGNS
   Maximalist Sign Components
   ============================================ */

/* ============================================
   FILM GRAIN & VINTAGE TEXTURE
   ============================================ */

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

/* ============================================
   3D THEATER MARQUEE - Main Hero Sign
   ============================================ */

.marquee-3d-container {
    position: relative;
    width: 100%;
    height: clamp(550px, 80vw, 800px);
    margin-bottom: 10px;
    z-index: 5;
    overflow: visible;
}

#marquee-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Tablet / iPad — scale the hero logo so it fits within the viewport.
   Width stays 100% so the 3D camera keeps a healthy aspect ratio; the
   camera auto-fits the model horizontally & vertically (see marquee3d.js). */
@media (max-width: 1024px) {
    .marquee-3d-container {
        height: clamp(320px, 50vh, 500px);
    }

    /* Hide the scattered floating emoji/symbol decorations on iPad and smaller.
       These add visual clutter at narrower viewports and often overlap content. */
    .floating-deco,
    .floating-dice {
        display: none !important;
    }

    /* Hide the scattered poker-chip decorations around the Lucky Jacs slot
       machine on iPad and smaller — they crowd the cabinet at narrower widths. */
    .gifts .chip-decoration {
        display: none !important;
    }

    /* Give the "See You in Vegas!" text more breathing room from the
       perimeter bulbs at iPad widths before it shrinks further on mobile. */
    .tinseltown-sign {
        --tip-width: 32px;
        padding: 26px calc(var(--tip-width) + 30px) 26px 36px;
    }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
    .marquee-3d-container {
        height: clamp(240px, 42vh, 380px);
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .marquee-3d-container {
        height: clamp(200px, 36vh, 300px);
    }
}

/* ============================================
   TINSELTOWN ARROW MARQUEE
   ============================================ */

/* ============================================
   HEART MARQUEE SIGN - Jac & Ben (Bruno Mars Style)
   ============================================ */

.heart-marquee-sign {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    overflow: visible;
}

.heart-layers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    pointer-events: none;
}

/* Layered hearts behind - pink/red gradient layers */
.heart-layer {
    position: absolute;
    font-family: Arial, sans-serif;
    line-height: 0.85;
    filter: blur(1px);
    animation: heartPulseOut 5s ease-in-out infinite;
}

.heart-layer-1 {
    font-size: clamp(550px, 95vw, 900px);
    color: rgba(255, 120, 140, 0.5);
    animation-delay: 0s;
}

.heart-layer-2 {
    font-size: clamp(460px, 80vw, 750px);
    color: rgba(255, 80, 100, 0.6);
    animation-delay: 0.6s;
}

.heart-layer-3 {
    font-size: clamp(380px, 65vw, 600px);
    color: rgba(220, 50, 70, 0.7);
    animation-delay: 1.2s;
}

/* Heart layers in RSVP section - slightly smaller */
.rsvp-heart-bg .heart-layer-1 {
    font-size: clamp(520px, 85vw, 820px);
}

.rsvp-heart-bg .heart-layer-2 {
    font-size: clamp(440px, 72vw, 680px);
}

.rsvp-heart-bg .heart-layer-3 {
    font-size: clamp(360px, 58vw, 550px);
}

@keyframes heartPulseOut {
    0% {
        transform: scale(0.6);
        opacity: 0;
        filter: blur(0px);
    }
    15% {
        opacity: 1;
        filter: blur(0px);
    }
    50% {
        opacity: 0.85;
        filter: blur(1px);
    }
    75% {
        opacity: 0.5;
        filter: blur(2px);
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
        filter: blur(4px);
    }
}

.heart-shape {
    position: relative;
    width: clamp(300px, 50vw, 420px);
    height: clamp(280px, 47vw, 390px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Center heart - larger, positioned behind poster */
.heart-shape.center-heart {
    position: absolute;
    width: clamp(400px, 65vw, 600px);
    height: clamp(370px, 60vw, 550px);
    z-index: 1;
}

.heart-shape.center-heart::before {
    font-size: clamp(400px, 65vw, 600px);
    animation: heartGlow 2s ease-in-out infinite alternate;
}

@keyframes heartGlow {
    0% {
        text-shadow: 
            0 0 40px rgba(255, 0, 0, 0.5),
            0 0 80px rgba(255, 0, 0, 0.3);
        filter: brightness(1);
    }
    100% {
        text-shadow: 
            0 0 60px rgba(255, 0, 0, 0.7),
            0 0 120px rgba(255, 0, 0, 0.5),
            0 0 180px rgba(255, 0, 0, 0.3);
        filter: brightness(1.1);
    }
}

/* Main red heart using emoji for consistent shape */
.heart-shape::before {
    content: '❤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(300px, 50vw, 420px);
    color: #cc0000;
    line-height: 0.85;
    text-shadow: 
        0 0 40px rgba(255, 0, 0, 0.5),
        0 0 80px rgba(255, 0, 0, 0.3);
    z-index: 0;
}

/* Dark center cutout for the hollow effect */
.heart-shape::after {
    content: '';
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48%;
    height: 42%;
    background: radial-gradient(ellipse at center, 
        rgba(30, 0, 5, 0.97) 0%, 
        rgba(50, 0, 10, 0.95) 70%,
        rgba(80, 0, 15, 0.9) 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Remove the dark cutout when no-cutout class is present */
.heart-shape.no-cutout::after {
    display: none;
}

.heart-bulbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.heart-bulbs-container .bulb {
    position: absolute;
    width: clamp(16px, 3vw, 24px);
    height: clamp(16px, 3vw, 24px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #fff8e0 40%, #ffe080 100%);
    box-shadow: 
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 200, 0.8),
        0 0 35px rgba(255, 220, 100, 0.5);
}

.heart-bulbs-container .bulb.dim {
    background: radial-gradient(circle at 35% 35%, #444 0%, #333 50%, #222 100%);
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
}

.heart-names-text {
    font-family: var(--font-names);
    font-size: clamp(2.8rem, 9vw, 5rem);
    color: var(--cream);
    text-shadow: 
        0 0 12px #fff,
        0 0 25px #fff,
        0 0 40px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 5;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
}

/* Old tinseltown sign - keep for footer */
.tinseltown-sign {
    /* Pixel width of the arrow tip. JS reads this to place bulbs. */
    --tip-width: 40px;
    position: relative;
    display: inline-block;
    /* padding-right must be >= --tip-width + a little breathing room so the
       text never spills into the arrow tip clip region */
    padding: 30px calc(var(--tip-width) + 24px) 30px 40px;
    max-width: 100%;
    box-sizing: border-box;
    /* No clip-path here - let bulbs overflow */
}

/* Background shape with clip-path */
.tinseltown-sign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    clip-path: polygon(
        0 0,
        calc(100% - var(--tip-width)) 0,
        100% 50%,
        calc(100% - var(--tip-width)) 100%,
        0 100%
    );
    box-shadow: 
        0 0 40px rgba(255, 45, 123, 0.4),
        0 0 80px rgba(255, 45, 123, 0.2);
    z-index: 0;
}

/* Outer glow layer */
.tinseltown-sign::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: #000000;
    clip-path: polygon(
        0 0,
        calc(100% - var(--tip-width) - 4px) 0,
        100% 50%,
        calc(100% - var(--tip-width) - 4px) 100%,
        0 100%
    );
    z-index: -1;
}

.tinseltown-bulbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.tinseltown-bulbs .bulb {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bulb-off);
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.tinseltown-bulbs .bulb.lit {
    background: var(--bulb-warm);
    box-shadow: 
        0 0 8px var(--bulb-warm),
        0 0 15px var(--bulb-warm),
        0 0 25px rgba(255, 221, 119, 0.5);
}

.tinseltown-text {
    font-family: 'Modern Neon', var(--font-names);
    font-size: clamp(3rem, 10vw, 7rem);
    color: #fff;
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 60px var(--neon-pink);
    animation: neonFlicker 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
    /* Keep "See You in Vegas!" on a single line so the arrow shape stays an
       arrow at every breakpoint. The sign's padding plus this text defines
       its bounds and the JS-placed bulbs trace them. */
    white-space: nowrap;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink),
            0 0 40px var(--neon-pink),
            0 0 60px var(--neon-pink);
        color: #fff;
    }
    20%, 24%, 55% {
        text-shadow: none;
        color: rgba(255, 200, 210, 0.6);
    }
}

/* ============================================
   LETTER BOARD SIGN (Elvis International Style)
   ============================================ */

.letter-board-sign {
    background: linear-gradient(180deg, #e8e0d0 0%, #d4cbb8 50%, #c9c0ad 100%);
    padding: 25px 40px;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 8px solid #2a2015;
}

.letter-board-sign::before,
.letter-board-sign::after {
    content: '';
    position: absolute;
    top: -12px;
    bottom: -12px;
    width: 25px;
    background: linear-gradient(180deg, #3a3025 0%, #2a2015 50%, #1a1005 100%);
}

.letter-board-sign::before { left: -12px; }
.letter-board-sign::after { right: -12px; }

.letter-board-text {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #1a1005;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

.letter-board-sign .bulb-row {
    position: absolute;
    display: flex;
    justify-content: space-around;
    left: 20px;
    right: 20px;
}

.letter-board-sign .bulb-row.top {
    top: -15px;
}

.letter-board-sign .bulb-row.bottom {
    bottom: -15px;
}

.letter-board-sign .bulb-row .bulb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bulb-off);
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

.letter-board-sign .bulb-row .bulb.lit {
    background: var(--bulb-warm);
    box-shadow: 
        0 0 8px var(--bulb-warm),
        0 0 15px var(--bulb-warm),
        0 0 25px rgba(255, 221, 119, 0.4);
}

.letter-board-sign.small-board {
    border-width: 5px;
}

.letter-board-sign.small-board::before,
.letter-board-sign.small-board::after {
    width: 15px;
    top: -8px;
    bottom: -8px;
}

.letter-board-sign.small-board::before { left: -8px; }
.letter-board-sign.small-board::after { right: -8px; }

/* ============================================
   VERTICAL NEON TOWER (Orpheum Style)
   ============================================ */

.vertical-sign {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 30px 15px;
    background: linear-gradient(90deg, #1a0808 0%, #2a1010 50%, #1a0808 100%);
    border: 4px solid var(--gold);
    position: relative;
    box-shadow: 
        0 0 30px rgba(255, 204, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.vertical-sign::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    pointer-events: none;
}

.vertical-sign-text {
    font-family: var(--font-punk);
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 0.4em;
    color: var(--neon-red);
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 60px rgba(255, 51, 51, 0.5);
}

/* Vertical sign color variants */
.vertical-sign.pink .vertical-sign-text,
.vertical-sign-text.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

.vertical-sign.gold .vertical-sign-text,
.vertical-sign-text.neon-text-gold {
    color: var(--gold);
    text-shadow: 
        0 0 10px var(--gold),
        0 0 20px var(--gold),
        0 0 40px var(--gold);
}

.vertical-sign.turquoise .vertical-sign-text,
.vertical-sign-text.neon-text-turquoise {
    color: var(--turquoise);
    text-shadow: 
        0 0 10px var(--turquoise),
        0 0 20px var(--turquoise),
        0 0 40px var(--turquoise);
}

/* Section header vertical signs */
.section-vertical-header {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.section-vertical-header.right {
    left: auto;
    right: -60px;
}

/* Animated vertical sign bulbs */
.vertical-sign-bulbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.vertical-sign-bulbs .v-bulb {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bulb-off);
}

.vertical-sign-bulbs .v-bulb.lit {
    background: var(--bulb-warm);
    box-shadow: 0 0 8px var(--bulb-warm);
}

/* ============================================
   SMALL ACCENT SIGNS
   ============================================ */

.accent-sign {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid currentColor;
    font-family: var(--font-accent);
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.accent-sign.live {
    color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
    animation: blink 1s ease-in-out infinite;
}

.accent-sign.one-night {
    color: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.accent-sign.sold-out {
    color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

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

/* ============================================
   IMAGE CUTOUT STYLING
   ============================================ */

.sign-cutout {
    position: absolute;
    filter: 
        drop-shadow(0 0 20px rgba(255, 204, 0, 0.4))
        drop-shadow(0 0 40px rgba(255, 45, 123, 0.3));
    transition: transform 0.3s ease;
}

.sign-cutout:hover {
    transform: scale(1.05);
}

.sign-cutout.glow-gold {
    filter: 
        drop-shadow(0 0 15px rgba(255, 204, 0, 0.6))
        drop-shadow(0 0 30px rgba(255, 204, 0, 0.4));
}

.sign-cutout.glow-pink {
    filter: 
        drop-shadow(0 0 15px rgba(255, 45, 123, 0.6))
        drop-shadow(0 0 30px rgba(255, 45, 123, 0.4));
}

.sign-cutout.glow-red {
    filter: 
        drop-shadow(0 0 15px rgba(255, 51, 51, 0.6))
        drop-shadow(0 0 30px rgba(255, 51, 51, 0.4));
}

/* ============================================
   CHAOTIC HERO COLLAGE
   ============================================ */

.hero-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.collage-sign {
    position: absolute;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.collage-sign:hover {
    opacity: 1;
    z-index: 10;
}

/* Positions for hero chaos */
.collage-sign.pos-1 {
    top: 3%;
    left: 2%;
    transform: rotate(-8deg);
    z-index: 3;
}

.collage-sign.pos-2 {
    top: 5%;
    right: 3%;
    transform: rotate(12deg);
    z-index: 2;
}

.collage-sign.pos-3 {
    bottom: 20%;
    left: 3%;
    transform: rotate(6deg);
    z-index: 4;
}

.collage-sign.pos-4 {
    bottom: 8%;
    right: 5%;
    transform: rotate(-5deg);
    z-index: 3;
}

.collage-sign.pos-5 {
    top: 45%;
    left: -3%;
    transform: rotate(-12deg);
    z-index: 2;
}

.collage-sign.pos-6 {
    top: 50%;
    right: -2%;
    transform: rotate(15deg);
    z-index: 2;
}

.collage-sign.pos-7 {
    top: 25%;
    left: 8%;
    transform: rotate(3deg);
    z-index: 5;
}

.collage-sign.pos-8 {
    bottom: 35%;
    right: 8%;
    transform: rotate(-8deg);
    z-index: 4;
}

/* ============================================
   VINTAGE SIGN CUTOUTS
   ============================================ */

.vintage-sign-cutout {
    padding: 15px 25px;
    background: linear-gradient(180deg, #2a0a0a 0%, #1a0505 100%);
    border: 3px solid;
    position: relative;
}

.neon-motel {
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(255, 45, 123, 0.1);
}

.motel-sign {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.motel-text {
    font-family: var(--font-punk);
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.2em;
    color: var(--neon-pink);
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

.motel-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    animation: arrowBlink 1s ease-in-out infinite;
}

@keyframes arrowBlink {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--gold); }
    50% { opacity: 0.5; text-shadow: none; }
}

.cocktail-sign {
    border-color: var(--turquoise);
    box-shadow: 
        0 0 20px var(--turquoise),
        inset 0 0 15px rgba(0, 229, 204, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cocktail-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    filter: drop-shadow(0 0 10px var(--turquoise));
}

.cocktail-text {
    font-family: var(--font-names);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--turquoise);
    text-shadow: 
        0 0 10px var(--turquoise),
        0 0 20px var(--turquoise);
}

.lucky-sign {
    border-color: var(--gold);
    box-shadow: 
        0 0 25px var(--gold),
        inset 0 0 20px rgba(255, 204, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lucky-text {
    font-family: var(--font-slots);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.15em;
    color: var(--gold);
    text-shadow: 
        0 0 10px var(--gold),
        0 0 20px var(--gold),
        0 0 40px var(--gold);
}

.lucky-star {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
    animation: rotateStar 4s linear infinite;
}

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

.casino-sign {
    border-color: var(--neon-red);
    box-shadow: 
        0 0 20px var(--neon-red),
        inset 0 0 15px rgba(255, 51, 51, 0.1);
    text-align: center;
}

.casino-text {
    font-family: var(--font-punk);
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.3em;
    color: var(--neon-red);
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red);
    display: block;
}

.casino-lights {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.casino-lights::before,
.casino-lights::after {
    content: '●';
    font-size: 0.8rem;
    animation: casinoLightChase 0.5s ease-in-out infinite alternate;
}

.casino-lights::after {
    animation-delay: 0.25s;
}

@keyframes casinoLightChase {
    0% { color: var(--bulb-off); text-shadow: none; }
    100% { color: var(--gold); text-shadow: 0 0 10px var(--gold); }
}

.showroom-sign {
    border-color: var(--orange);
    box-shadow: 
        0 0 20px var(--orange),
        inset 0 0 15px rgba(255, 107, 53, 0.1);
}

.showroom-text {
    font-family: var(--font-king);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 0.25em;
    color: var(--orange);
    text-shadow: 
        0 0 10px var(--orange),
        0 0 20px var(--orange);
}

/* Vegas Tower Enhancement */
.vegas-tower {
    background: linear-gradient(90deg, #1a0505 0%, #2a0a0a 50%, #1a0505 100%);
    border-color: var(--neon-red);
    box-shadow: 
        0 0 30px var(--neon-red),
        inset 0 0 20px rgba(255, 51, 51, 0.1);
}

.neon-flicker-alt {
    animation: neonFlickerAlt 3s ease-in-out infinite;
}

@keyframes neonFlickerAlt {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 10px var(--neon-red),
            0 0 20px var(--neon-red),
            0 0 40px var(--neon-red);
        color: var(--neon-red);
    }
    20%, 24%, 55% {
        text-shadow: none;
        color: rgba(255, 51, 51, 0.3);
    }
}

/* Heart decorations */
.heart-deco {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--neon-pink);
    text-shadow: 
        0 0 15px var(--neon-pink),
        0 0 30px var(--neon-pink);
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1) rotate(var(--rotate, 0deg)); }
    50% { transform: scale(1.15) rotate(var(--rotate, 0deg)); }
}

/* Blinking accent sign */
.accent-sign.blink {
    animation: signBlink 1.5s ease-in-out infinite;
}

@keyframes signBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */

.floating-sign {
    position: absolute;
    animation: floatSign 6s ease-in-out infinite;
}

@keyframes floatSign {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-15px) rotate(calc(var(--rotate, 0deg) + 3deg)); }
}

.dice-decoration {
    font-size: clamp(2rem, 5vw, 4rem);
    filter: drop-shadow(0 0 10px var(--gold));
    animation: rollDice 4s ease-in-out infinite;
}

@keyframes rollDice {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.card-decoration {
    font-size: clamp(2rem, 5vw, 4rem);
    filter: drop-shadow(0 0 10px var(--neon-red));
}

.star-decoration {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    animation: twinkleStar 2s ease-in-out infinite;
}

@keyframes twinkleStar {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

/* ============================================
   SECTION SIGN CLUSTERS
   ============================================ */

.sign-cluster {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sign-cluster.left {
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
}

.sign-cluster.right {
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
}

/* ============================================
   VACANCY ARROW SIGN
   ============================================ */

.vacancy-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.vacancy-arrow .arrow {
    width: 60px;
    height: 40px;
    background: var(--neon-red);
    clip-path: polygon(0 50%, 60% 0, 60% 30%, 100% 30%, 100% 70%, 60% 70%, 60% 100%);
    box-shadow: 0 0 20px var(--neon-red);
    animation: arrowPulse 1s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { box-shadow: 0 0 20px var(--neon-red); }
    50% { box-shadow: 0 0 40px var(--neon-red), 0 0 60px var(--neon-red); }
}

/* ============================================
   CASINO CHIP DECORATIONS
   ============================================ */

.chip-decoration {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000 0%, #cc0000 50%, #8B0000 100%);
    border: 4px dashed var(--gold);
    box-shadow: 
        0 0 15px rgba(255, 204, 0, 0.3),
        inset 0 2px 5px rgba(255,255,255,0.2);
    position: absolute;
}

/* ============================================
   SECTION CHAOS DECORATIONS
   ============================================ */

.section-with-chaos {
    position: relative;
    overflow: hidden;
}

.section-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.section-deco.left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.section-deco.right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.section-deco.top-left {
    left: 15px;
    top: -10px;
}

.section-deco.top-right {
    right: 15px;
    top: 140px;
}

.section-deco.bottom-left {
    left: 15px;
    bottom: 80px;
}

.section-deco.bottom-right {
    right: 15px;
    bottom: 80px;
}

.floating-deco {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--gold);
    text-shadow: 0 0 15px currentColor;
    animation: floatDeco 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.floating-deco.heart-float {
    color: var(--neon-pink);
    animation: heartFloat 3s ease-in-out infinite;
}

.floating-deco.sparkle {
    animation: sparkleFloat 2s ease-in-out infinite;
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes heartFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes sparkleFloat {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.floating-dice {
    font-size: clamp(2rem, 5vw, 4rem);
    animation: diceRoll 3s ease-in-out infinite;
}

@keyframes diceRoll {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

/* Panel enhancements */
.event-panel.tilted-left {
    transform: rotate(-2deg);
}

.event-panel.tilted-right {
    transform: rotate(2deg);
}

.event-panel:hover {
    transform: rotate(0deg) translateY(-5px) !important;
}

.panel-corner-sign {
    position: absolute;
    top: -18px;
    right: -12px;
    background: var(--neon-pink);
    color: var(--navy);
    font-family: var(--font-date);
    font-size: 1.1rem;
    padding: 6px 14px;
    transform: rotate(15deg);
    box-shadow: 0 0 15px var(--neon-pink);
    z-index: 10;
}

.panel-corner-sign.gold {
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

.panel-corner-sign.turquoise {
    background: var(--turquoise);
    box-shadow: 0 0 15px var(--turquoise);
}

.panel-star-burst {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    animation: starBurst 2s ease-in-out infinite;
}

@keyframes starBurst {
    0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
    50% { transform: translateX(-50%) scale(1.2) rotate(180deg); }
}

/* Vertical signs small variant */
.vertical-sign.small {
    padding: 20px 12px;
}

/* RSVP mega sign */
.rsvp-mega-sign {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.rsvp-vertical {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding: 30px 60px;
    background: linear-gradient(90deg, #1a0505 0%, #2a0a0a 50%, #1a0505 100%);
    border: 5px solid var(--neon-red);
    box-shadow: 
        0 0 40px var(--neon-red),
        0 0 80px rgba(255, 51, 51, 0.5),
        inset 0 0 30px rgba(255, 51, 51, 0.2);
}

.rsvp-vertical .vertical-sign-text {
    font-size: clamp(4rem, 12vw, 8rem);
    letter-spacing: 0.3em;
    color: #ffb6c1;
    text-shadow: none;
}

.neon-arrow-down {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 45px solid var(--neon-red);
    filter: drop-shadow(0 0 25px var(--neon-red)) drop-shadow(0 0 50px rgba(255, 51, 51, 0.6));
    animation: arrowBounce 1s ease-in-out infinite;
    margin-top: 15px;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Hotel mega sign */
.hotel-mega-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vacancy-arrow .arrow {
    font-size: 3rem;
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red);
}

.vacancy-arrow .arrow.pulse-arrow {
    animation: pulseArrow 1s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(10px); }
}

.motel-arrow-sign {
    background: var(--neon-red);
    padding: 10px 20px;
    clip-path: polygon(0 50%, 20% 0, 100% 0, 100% 100%, 20% 100%);
}

.arrow-text {
    font-size: 2rem;
    color: var(--cream);
    text-shadow: 0 0 10px var(--cream);
}

.neon-border-turquoise {
    border-color: var(--turquoise);
    box-shadow: 
        0 0 20px var(--turquoise),
        inset 0 0 20px rgba(0, 229, 204, 0.1);
}

/* Scatter chips */
.chip-decoration.scatter {
    animation: chipFloat 5s ease-in-out infinite;
}

.chip-decoration.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #cc9900 50%, var(--gold) 100%);
    border-color: #8B4513;
}

@keyframes chipFloat {
    0%, 100% { transform: rotate(var(--rotate, 15deg)) translateY(0); }
    50% { transform: rotate(var(--rotate, 15deg)) translateY(-10px); }
}

/* Footer enhancements */
.footer-chaos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-tinsel {
    margin-bottom: 20px;
}

.footer-sign-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

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

@media (max-width: 768px) {
    .collage-sign {
        opacity: 0.5;
        transform: scale(0.8);
    }
    
    .collage-sign.pos-1,
    .collage-sign.pos-2 {
        display: none;
    }
    
    .collage-sign.pos-5,
    .collage-sign.pos-6,
    .collage-sign.pos-7,
    .collage-sign.pos-8 {
        opacity: 0.4;
    }
    
    .tinseltown-sign {
        --tip-width: 24px;
        /* Extra top/bottom and left padding keeps the text from hugging the
           perimeter bulbs on small screens. Right padding keeps clear of the
           arrow tip bulbs as well. */
        padding: 24px calc(var(--tip-width) + 28px) 24px 34px;
    }

    .tinseltown-bulbs .bulb {
        width: 10px;
        height: 10px;
    }

    .tinseltown-text {
        /* Scaled down so "See You in Vegas!" stays on one line and the arrow
           shape fits within the viewport at typical phone widths. */
        font-size: clamp(0.9rem, 4.2vw, 1.75rem) !important;
    }
    
    .letter-board-sign {
        padding: 12px 20px;
        border-width: 4px;
    }
    
    .sign-cluster {
        display: none;
    }
    
    .section-deco {
        transform: scale(0.7);
        opacity: 0.5;
    }
    
    .section-deco.left,
    .section-deco.right {
        display: none;
    }
    
    .vintage-sign-cutout {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .collage-sign.pos-3,
    .collage-sign.pos-4,
    .collage-sign.pos-5,
    .collage-sign.pos-6,
    .collage-sign.pos-7,
    .collage-sign.pos-8 {
        display: none;
    }
    
    .floating-sign.star-decoration,
    .floating-sign.heart-deco {
        opacity: 0.6;
    }
    
    .grain-overlay {
        opacity: 0.04;
    }
    
    .vignette-overlay {
        background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .tinseltown-sign {
        --tip-width: 22px;
        padding: 18px calc(var(--tip-width) + 22px) 18px 28px;
    }

    .tinseltown-bulbs .bulb {
        width: 8px;
        height: 8px;
    }
    
    .letter-board-sign {
        padding: 10px 15px;
        border-width: 3px;
    }
    
    .letter-board-sign::before,
    .letter-board-sign::after {
        width: 12px;
    }
    
    .letter-board-text {
        font-size: clamp(0.9rem, 4vw, 1.5rem) !important;
    }
    
    .section-deco.top-left,
    .section-deco.top-right,
    .section-deco.bottom-left,
    .section-deco.bottom-right {
        display: none;
    }
    
    .chip-decoration {
        width: 35px;
        height: 35px;
        display: none;
    }
    
    .footer-sign-cluster {
        transform: scale(0.8);
    }
}
