/* ============================================================
   promotion.css — detail page + listing page
   Mobile-first | .pd-* (detail)  .pl-* (list)
   ============================================================ */

:root {
    --pd-red:      #dc2626;
    --pd-red-dark: #b91c1c;
    --pd-dark:     #0b1120;
    --pd-mid:      #1e293b;
    --pd-muted:    #64748b;
    --pd-border:   #e2e8f0;
    --pd-bg:       #f8fafc;
    --pd-white:    #ffffff;
    --pd-radius:   18px;
    --pd-max:      1040px;
}

/* ── Keyframe Animations ───────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0   rgba(220,38,38,.5); }
    70%  { box-shadow: 0 0 0 16px rgba(220,38,38,0); }
    100% { box-shadow: 0 0 0 0   rgba(220,38,38,0); }
}
@keyframes count-pulse {
    0%, 100% { transform: scale(1);    color: #facc15; }
    50%       { transform: scale(1.05); color: #fde68a; }
}
@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0)   scale(1); }
    33%       { transform: translate(20px, -15px) scale(1.08); }
    66%       { transform: translate(-10px, 10px) scale(.94); }
}
@keyframes border-spin {
    to { --angle: 360deg; }
}
@keyframes trophy-bounce {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    30%       { transform: translateY(-14px) rotate(3deg); }
    60%       { transform: translateY(-6px)  rotate(-1deg); }
}
@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Scroll-reveal ─────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1),
                transform .6s cubic-bezier(.22,1,.36,1);
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="fade"]             { transform: none; }
[data-animate="fade"].is-visible  { opacity: 1; transform: none; }
[data-animate][data-delay="1"]    { transition-delay: .08s; }
[data-animate][data-delay="2"]    { transition-delay: .16s; }
[data-animate][data-delay="3"]    { transition-delay: .24s; }
[data-animate][data-delay="4"]    { transition-delay: .32s; }

/* ── Shared chips ─────────────────────────────────────────── */
.pd-chip {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 3px 10px;
    background: var(--pd-red);
    color: #fff;
}
.pd-chip--active  { background: #16a34a; }
.pd-chip--sched   { background: #2563eb; }
.pd-chip--draft   { background: var(--pd-muted); }
.pd-chip--archive { background: #94a3b8; }
.pd-chip--winner  { background: linear-gradient(90deg,#b45309,#d97706); }

/* ═══════════════════════════════════════════════════════════
   DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.pd-page {
    background: var(--pd-bg);
    min-height: 100vh;
    padding-top: 75px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.pd-hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 56vw, 580px);
    overflow: hidden;
    background: var(--pd-dark);
}
.pd-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .62;
    transform: scale(1.06);
    transition: transform 10s ease, opacity .4s;
    animation: fadeIn .5s ease both;
}
/* Ken-Burns on page load */
.pd-hero.is-loaded .pd-hero__img {
    transform: scale(1);
}
.pd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6,8,20,.88) 0%,
        rgba(6,8,20,.55) 42%,
        rgba(6,8,20,.18) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(20px, 5vw, 52px);
    padding-top: 72px; /* clear the back button */
}
.pd-hero__back {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 8px 18px;
    text-decoration: none;
    transition: background .22s, border-color .22s, color .22s;
    animation: fadeIn .5s .1s ease both;
}
.pd-hero__back:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.38);
    color: #fff;
}
.pd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fca5a5;
    background: rgba(220,38,38,.18);
    border: 1px solid rgba(220,38,38,.3);
    border-radius: 999px;
    padding: 5px 14px;
    width: fit-content;
    margin-bottom: 12px;
    animation: fadeInUp .5s .05s ease both;
}
.pd-hero__badge--winner {
    color: #fde68a;
    background: rgba(217,119,6,.18);
    border-color: rgba(217,119,6,.35);
}
.pd-hero__title {
    font-size: clamp(1.7rem, 5.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
    animation: fadeInUp .6s .12s ease both;
    max-width: 820px;
    letter-spacing: -.01em;
    white-space: normal;
}
.pd-hero__subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.15rem);
    color: rgba(255,255,255,.72);
    margin: 0;
    font-weight: 400;
    animation: fadeInUp .6s .2s ease both;
    max-width: 600px;
}

/* ── Content ────────────────────────────────────────────────── */
.pd-content {
    max-width: var(--pd-max);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Date pills ─────────────────────────────────────────────── */
.pd-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.pd-dates__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 0.78rem;
    color: var(--pd-muted);
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.pd-dates__pill::before { content: '📅'; font-size: .7rem; }

/* ── Countdown ──────────────────────────────────────────────── */
.pd-countdown {
    background: transparent;
    padding: 4px 0;
    text-align: center;
    margin: 2em 0;
}
.pd-countdown__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pd-muted);
    margin: 0 0 16px;
}
.pd-countdown__grid {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 16px);
}
.pd-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--pd-dark);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 20px clamp(16px, 3vw, 34px);
    min-width: 72px;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
}
/* Pulse seconds digit only */
.pd-countdown__unit:last-child .pd-countdown__num {
    animation: count-pulse 1s ease-in-out infinite;
}
.pd-countdown__num {
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 900;
    color: #facc15;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
}
.pd-countdown__unit-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.pd-countdown--expired {
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(220,38,38,.08);
    border: 1px solid rgba(220,38,38,.18);
    color: var(--pd-red);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ── Summary highlight ─────────────────────────────────────── */
.pd-summary {
    background: var(--pd-white);
    border-left: 5px solid var(--pd-red);
    border-radius: 0 16px 16px 0;
    padding: 22px 26px;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    font-weight: 700;
    color: var(--pd-dark);
    line-height: 1.6;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

/* ── Body text ─────────────────────────────────────────────── */
.pd-body {
    font-size: clamp(0.92rem, 1.8vw, 1rem);
    color: #4b5563;
    line-height: 1.85;
}

/* ── Gallery ───────────────────────────────────────────────── */
.pd-gallery {
    display: grid;
    grid-template-columns: 1fr;   /* mobile: 1 col default */
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,.1);
}
.pd-gallery__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform .5s cubic-bezier(.23,1,.32,1), filter .3s;
    filter: brightness(.96) saturate(1.05);
}
.pd-gallery__img:hover {
    transform: scale(1.05);
    filter: brightness(1.06) saturate(1.1);
    z-index: 2;
    position: relative;
}

/* 1 image — fill full width, wider aspect */
.pd-gallery[data-count="1"] {
    grid-template-columns: 1fr;
}
.pd-gallery[data-count="1"] .pd-gallery__img {
    aspect-ratio: 16/7;
}

/* 2 images — 1 col mobile, 2 col ≥ 480px */
.pd-gallery[data-count="2"] {
    grid-template-columns: 1fr;
}
@media (min-width: 480px) {
    .pd-gallery[data-count="2"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 images — 1 col mobile, 2 col tablet, 3 col desktop */
@media (min-width: 480px) {
    .pd-gallery[data-count="3"] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 800px) {
    .pd-gallery[data-count="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 4 images — 1 col mobile, 2 col tablet, 2×2 on desktop */
@media (min-width: 480px) {
    .pd-gallery[data-count="4"],
    .pd-gallery:not([data-count]) {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 800px) {
    .pd-gallery[data-count="4"],
    .pd-gallery:not([data-count]) {
        grid-template-columns: repeat(3, 1fr); /* 3+1 layout, cleaner than 4 wide */
    }
}

/* ── Video ─────────────────────────────────────────────────── */
.pd-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.pd-video video { width: 100%; height: 100%; object-fit: cover; }


/* ═══════════════════════════════════════════════════════════
   WINNER PROMOTION — Entry Box & Winner Reveal
   ═══════════════════════════════════════════════════════════ */

.pd-winner-section {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin: 2em 0;
}

/* ── Entry Box ─────────────────────────────────────────────── */
.pd-entry-box {
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    border-top: 4px solid var(--pd-red);
    border-radius: 20px;
    padding: clamp(32px, 6vw, 52px) clamp(22px, 5vw, 52px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    box-shadow: 0 6px 32px rgba(0,0,0,.07);
}

/* Ticket icon */
.pd-entry-box__icon {
    font-size: 2.4rem;
    line-height: 1;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220,38,38,.07);
    border: 1px solid rgba(220,38,38,.16);
    border-radius: 50%;
    animation: pulse-ring 2.4s ease-in-out infinite;
}
.pd-entry-box__heading {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--pd-dark);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.015em;
}
.pd-entry-box__draw-date {
    font-size: 0.82rem;
    color: var(--pd-muted);
    margin: -2px 0 0;
}
.pd-entry-box__draw-date strong {
    color: var(--pd-dark);
    font-weight: 700;
}
.pd-entry-box__count {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: -4px 0 4px;
}
.pd-entry-box__entered {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 14px 28px;
    color: #15803d;
    font-size: 0.92rem;
    font-weight: 700;
}
.pd-entry-box__check { font-size: 1.1rem; }
.pd-entry-box__guest-msg {
    font-size: 0.88rem;
    color: var(--pd-muted);
    margin: 0;
    max-width: 380px;
    line-height: 1.6;
}
.pd-entry-box__auth-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Next-steps info block (shown after entering) */
.pd-entry-box__next-steps {
    width: 100%;
    max-width: 480px;
    background: var(--pd-bg);
    border: 1px solid var(--pd-border);
    border-radius: 14px;
    padding: 18px 22px;
    text-align: left;
    margin-top: 4px;
}
.pd-entry-box__next-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pd-muted);
    margin: 0 0 12px;
}
.pd-entry-box__next-list {
    margin: 0;
    padding: 0 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-entry-box__next-list li {
    font-size: 0.84rem;
    color: #4b5563;
    line-height: 1.5;
}
.pd-entry-box__next-list li strong {
    color: var(--pd-dark);
    font-weight: 700;
}

/* ── Entry Buttons ─────────────────────────────────────────── */
.pd-entry-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    background: var(--pd-red);
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .01em;
    overflow: hidden;
    z-index: 1;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 28px rgba(220,38,38,.5);
}
/* shimmer sweep on button */
.pd-entry-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255,255,255,.22) 50%,
        transparent 80%
    );
    background-size: 200% 100%;
    animation: shimmer 2.4s ease-in-out infinite;
    border-radius: inherit;
    pointer-events: none;
}
.pd-entry-btn:hover:not(:disabled) {
    background: var(--pd-red-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 36px rgba(220,38,38,.6);
}
.pd-entry-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(.99);
}
.pd-entry-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.pd-entry-btn--outline {
    background: transparent;
    color: var(--pd-dark);
    border: 1px solid var(--pd-border);
    box-shadow: none;
}
.pd-entry-btn--outline::after { display: none; }
.pd-entry-btn--outline:hover {
    background: var(--pd-bg);
    border-color: #cbd5e1;
    color: var(--pd-dark);
    transform: translateY(-2px);
    box-shadow: none;
}
.pd-entry-btn--success {
    background: rgba(22,163,74,.14);
    color: #4ade80;
    border: 1px solid rgba(22,163,74,.28);
    box-shadow: none;
    cursor: default;
}
.pd-entry-btn--success::after { display: none; }
.pd-entry-btn--success:hover  { transform: none; box-shadow: none; background: rgba(22,163,74,.14); }


/* ── Winner Reveal ─────────────────────────────────────────── */
.pd-winner-reveal {
    background: linear-gradient(145deg, #0a0c07 0%, #0e1a08 50%, #1a120a 100%);
    padding: clamp(48px, 7vw, 80px) clamp(22px, 5vw, 52px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(250,204,21,.2),
        0 12px 60px rgba(250,204,21,.08),
        0 28px 80px rgba(0,0,0,.45);
}
.pd-winner-reveal::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    top: -100px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,204,21,.16) 0%, transparent 65%);
    animation: orb-drift 11s ease-in-out infinite;
    pointer-events: none;
}
.pd-winner-reveal::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    bottom: -70px;
    left: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,146,60,.12) 0%, transparent 65%);
    animation: orb-drift 16s ease-in-out infinite reverse;
    pointer-events: none;
}
.pd-winner-reveal__trophy {
    font-size: 4.5rem;
    line-height: 1;
    filter: drop-shadow(0 6px 24px rgba(250,204,21,.55));
    animation: trophy-bounce 3.2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.pd-winner-reveal__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #facc15;
    margin: 4px 0 -2px;
    position: relative;
    z-index: 1;
}
/* Gold shimmer on winner name */
.pd-winner-reveal__name {
    font-size: clamp(2rem, 6.5vw, 3.2rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(90deg, #fff 0%, #facc15 25%, #fde68a 50%, #facc15 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3.5s linear infinite;
    position: relative;
    z-index: 1;
}
.pd-winner-reveal__date {
    font-size: 0.76rem;
    color: rgba(255,255,255,.32);
    margin: 0;
    position: relative;
    z-index: 1;
}
.pd-winner-reveal__note {
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
    max-width: 400px;
    line-height: 1.65;
    margin: 6px 0 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 16px 22px;
    position: relative;
    z-index: 1;
}


/* ═══════════════════════════════════════════════════════════
   REGULAR PROMOTION — CTA
   ═══════════════════════════════════════════════════════════ */

.pd-cta {
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    border-radius: 24px;
    padding: clamp(28px, 5vw, 52px) clamp(16px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.pd-cta__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pd-red);
    background: rgba(220,38,38,.07);
    border: 1px solid rgba(220,38,38,.15);
    border-radius: 999px;
    padding: 6px 18px;
    margin: 0;
}
.pd-cta__heading {
    font-size: clamp(1.15rem, 3vw, 1.65rem);
    font-weight: 900;
    color: var(--pd-dark);
    margin: 0;
    line-height: 1.28;
}

.pd-action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
}
@media (min-width: 580px) {
    .pd-action-grid { grid-template-columns: repeat(3, 1fr); }
}

.pd-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px 22px;
    border-radius: 18px;
    border: 1px solid var(--pd-border);
    background: var(--pd-bg);
    transition: transform .25s cubic-bezier(.23,1,.32,1),
                box-shadow .25s, border-color .25s;
    text-align: center;
}
.pd-action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,.1);
    border-color: #cbd5e1;
}
.pd-action-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
}
.pd-action-icon--call    { background: rgba(220,38,38,.07); }
.pd-action-icon--contact { background: rgba(37,99,235,.07); }
.pd-action-icon--visit   { background: rgba(22,163,74,.07); }
.pd-action-icon svg       { width: 26px; height: 26px; }
.pd-action-icon--call    svg { fill: var(--pd-red); }
.pd-action-icon--contact svg { fill: #2563eb; }
.pd-action-icon--visit   svg { fill: #16a34a; }

.pd-action-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--pd-dark);
    margin: 0;
}
.pd-action-desc {
    font-size: 0.78rem;
    color: var(--pd-muted);
    line-height: 1.55;
    margin: 0;
}
.pd-action-store-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pd-muted);
    text-align: center;
    padding: 4px 0 2px;
    border-top: 1px solid var(--pd-border);
    width: 100%;
    margin-top: 4px;
}
.pd-action-store-label:first-child { border-top: none; margin-top: 0; }
.pd-action-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.pd-action-number {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--pd-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.pd-action-number:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: var(--pd-red);
    transform: translateX(3px);
}
.pd-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .18s, transform .15s;
    width: 100%;
    margin-top: auto;
}
.pd-action-btn--call    { background: var(--pd-red); color: #fff; }
.pd-action-btn--call:hover    { background: #b91c1c; transform: translateY(-2px); }
.pd-action-btn--contact { background: #2563eb; color: #fff; }
.pd-action-btn--contact:hover { background: #1d4ed8; transform: translateY(-2px); }
.pd-action-btn--visit   { background: #16a34a; color: #fff; }
.pd-action-btn--visit:hover   { background: #15803d; transform: translateY(-2px); }


/* ── Account Prompt ────────────────────────────────────────── */
.pd-account-prompt {
    background: linear-gradient(140deg, #060c1a 0%, #0b1428 55%, #0e0612 100%);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 52px) clamp(22px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.06),
        0 8px 40px rgba(0,0,0,.25);
}
.pd-account-prompt::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    top: -60px;
    right: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,.16) 0%, transparent 68%);
    pointer-events: none;
    animation: orb-drift 13s ease-in-out infinite;
}
.pd-account-prompt::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 68%);
    pointer-events: none;
    animation: orb-drift 17s ease-in-out infinite reverse;
}
.pd-account-prompt__icon {
    font-size: 2.2rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.pd-account-prompt__heading {
    font-size: clamp(1.05rem, 2.8vw, 1.4rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}
.pd-account-prompt__sub {
    font-size: 0.84rem;
    color: rgba(255,255,255,.42);
    margin: 0;
    max-width: 400px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
.pd-account-prompt__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}
.pd-account-prompt__btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    background: #fff;
    color: var(--pd-red);
    text-decoration: none;
    transition: background .18s, transform .15s, box-shadow .18s;
    box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.pd-account-prompt__btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,.35);
}
.pd-account-prompt__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    padding: 13px 10px;
    transition: color .18s;
}
.pd-account-prompt__link:hover { color: rgba(255,255,255,.82); }


/* ── Share row ─────────────────────────────────────────────── */
.pd-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.pd-share__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pd-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-right: 2px;
}
.pd-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--pd-border);
    background: var(--pd-bg);
    color: var(--pd-dark);
    cursor: pointer;
    transition: background .15s, border-color .15s, transform .15s;
}
.pd-share__btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}
.pd-share__btn--fb {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}
.pd-share__btn--fb:hover { background: #dbeafe; border-color: #93c5fd; }
.pd-share__btn--copied {
    background: #f0fdf4 !important;
    border-color: #86efac !important;
    color: #16a34a !important;
}


/* ── Sticky call float (mobile) ────────────────────────────── */
.pd-float-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
    background: var(--pd-red);
    color: #fff;
    border-radius: 999px;
    padding: 13px 22px 13px 17px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(220,38,38,.6);
    align-items: center;
    gap: 8px;
    transition: transform .2s, background .2s, box-shadow .2s;
    border: none;
}
.pd-float-call svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.pd-float-call:hover {
    transform: scale(1.07);
    background: #b91c1c;
    box-shadow: 0 8px 32px rgba(220,38,38,.7);
}
@media (max-width: 640px) { .pd-float-call { display: flex; } }


/* ═══════════════════════════════════════════════════════════
   LISTING PAGE
   ═══════════════════════════════════════════════════════════ */
.pl-page {
    background: var(--pd-bg);
    min-height: 100vh;
    padding-top: 75px;
}

.pl-header {
    background: linear-gradient(140deg, #060c1a 0%, #0b1428 60%, #100612 100%);
    padding: clamp(40px, 7vw, 80px) clamp(16px, 5vw, 48px);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pl-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,.14) 0%, transparent 65%);
    pointer-events: none;
}
.pl-header__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px;
}
.pl-header__title {
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.pl-header__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,.55);
    margin: 0;
}

.pl-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 56px) clamp(16px, 4vw, 32px);
}

.pl-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 600px)  { .pl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pl-grid { grid-template-columns: repeat(3, 1fr); } }

.pl-card {
    background: var(--pd-white);
    border-radius: 20px;
    border: 1px solid var(--pd-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s cubic-bezier(.23,1,.32,1), box-shadow .28s;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.pl-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--pd-mid);
}
.pl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
    filter: brightness(.95) saturate(1.05);
}
.pl-card:hover .pl-card__img {
    transform: scale(1.06);
    filter: brightness(1.02) saturate(1.1);
}
.pl-card__chip {
    position: absolute;
    top: 12px;
    left: 12px;
}
.pl-card__body {
    padding: 18px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.pl-card__title {
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    font-weight: 800;
    color: var(--pd-dark);
    line-height: 1.28;
    margin: 0;
}
.pl-card__subtitle {
    font-size: 0.84rem;
    color: var(--pd-muted);
    margin: 0;
    line-height: 1.45;
}
.pl-card__dates {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 4px;
}
.pl-card__footer {
    padding: 0 20px 20px;
}
.pl-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s;
    width: 100%;
}
.pl-card__btn--primary {
    background: var(--pd-red);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220,38,38,.3);
}
.pl-card__btn--primary:hover { background: #b91c1c; transform: translateY(-1px); }

.pl-empty {
    text-align: center;
    padding: 72px 20px;
    color: var(--pd-muted);
}
.pl-empty__icon  { font-size: 2.8rem; margin-bottom: 14px; }
.pl-empty__title { font-size: 1.1rem; font-weight: 700; color: var(--pd-dark); margin-bottom: 6px; }
.pl-empty__text  { font-size: 0.9rem; }

/* ── Nav offset ───────────────────────────────────────────── */
@media (min-width: 768px) {
    .pd-page { padding-top: 100px; }
    .pl-page { padding-top: 100px; }
}

/* ── Hide side bubbles on promotion pages ──────────────────── */
#sideBubbles { display: none !important; }


/* ═══════════════════════════════════════════════════════════
   LIVE DRAW ANIMATION
   .draw-overlay  full-screen backdrop
   .draw-card     centered card (reel or winner)
   .draw-reel-*   slot-machine name reel
   ═══════════════════════════════════════════════════════════ */

@keyframes draw-overlay-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes draw-card-in     { from { opacity: 0; transform: translateY(40px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes draw-dice        { 0%,100% { transform: rotate(-8deg) scale(1);   } 50% { transform: rotate(8deg) scale(1.1); } }
@keyframes draw-trophy-pop  { 0% { transform: scale(0) rotate(-15deg); } 60% { transform: scale(1.15) rotate(4deg); } 100% { transform: scale(1) rotate(0deg); } }
@keyframes draw-name-in     { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes draw-dice-spin   { 0%,100% { transform: rotate(0deg); display:inline-block; } 25% { transform: rotate(-20deg); } 75% { transform: rotate(20deg); } }

/* Overlay backdrop */
.draw-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(5, 7, 18, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(4px);
}
.draw-overlay--in  { opacity: 1; }
.draw-overlay--out { opacity: 0; }

/* Card */
.draw-card {
    position: relative;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid rgba(139,92,246,.35);
    border-radius: 24px;
    padding: 40px 32px 36px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(139,92,246,.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(.94);
    transition: opacity .5s .15s ease, transform .5s .15s cubic-bezier(.22,1,.36,1);
}
.draw-overlay--in .draw-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Confetti canvas sits behind everything inside the card */
.draw-confetti {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 24px;
}

/* Phase container */
.draw-phase {
    position: relative;
    z-index: 1;
    transition: opacity .35s ease;
}
.draw-phase--out { opacity: 0; }
.draw-phase--winner {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .4s ease;
}
.draw-phase--in { opacity: 1 !important; }

/* Phase header (reel) */
.draw-phase__header {
    text-align: center;
    margin-bottom: 28px;
}
.draw-phase__dice {
    font-size: 2.8rem;
    display: inline-block;
    animation: draw-dice 0.9s ease-in-out infinite;
    margin-bottom: 8px;
}
.draw-phase__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.draw-phase__sub {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Reel wrapper */
.draw-reel-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(139,92,246,.4);
    background: rgba(15,23,42,.7);
}

/* Golden selector bar — center slot highlight */
.draw-reel-selector {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 64px;
    transform: translateY(-50%);
    background: rgba(234,179,8,.08);
    border-top: 2px solid rgba(234,179,8,.5);
    border-bottom: 2px solid rgba(234,179,8,.5);
    z-index: 3;
    pointer-events: none;
}

/* Top/bottom gradient fades */
.draw-reel-fade {
    position: absolute;
    left: 0; right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}
.draw-reel-fade--top {
    top: 0;
    background: linear-gradient(to bottom, #0f172a 0%, transparent 100%);
}
.draw-reel-fade--bot {
    bottom: 0;
    background: linear-gradient(to top, #0f172a 0%, transparent 100%);
}

/* Reel viewport clips to 7 visible rows */
.draw-reel-viewport {
    height: 448px; /* 7 × 64px */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Reel track — scrolled by JS */
.draw-reel-track {
    will-change: transform;
}

/* Individual name row */
.draw-reel-item {
    height: 64px;
    line-height: 64px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.01em;
    padding: 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s, background 0.3s;
}

/* Winner row — lights up at reel stop */
.draw-reel-item--winner {
    color: #fbbf24;
}
.draw-reel-item--lit {
    color: #fbbf24 !important;
    background: rgba(234,179,8,.15) !important;
    font-size: 1.2rem !important;
    animation: count-pulse 0.6s ease 2;
}

/* ── Winner reveal phase ──────────────────────────────────── */
.draw-winner-trophy {
    font-size: 4rem;
    animation: draw-trophy-pop 0.7s cubic-bezier(.22,1,.36,1) both;
    margin-bottom: 4px;
}
.draw-winner-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbbf24;
    margin: 0;
}
.draw-winner-name {
    font-size: 2rem;
    font-weight: 900;
    color: #f8fafc;
    margin: 8px 0 6px;
    letter-spacing: -0.02em;
    animation: draw-name-in 0.5s ease both;
}
.draw-winner-sub {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}
.draw-winner-stores {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}
.draw-winner-close {
    margin-top: 20px;
    background: rgba(139,92,246,.15);
    border: 1px solid rgba(139,92,246,.4);
    color: #c4b5fd;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.draw-winner-close:hover {
    background: rgba(139,92,246,.3);
    color: #ede9fe;
}

/* ── Drawing-in-progress waiting modal ───────────────────── */
.draw-wait-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    max-width: 420px;
    padding: 56px 40px 48px;
}
.draw-wait-dice {
    font-size: 4rem;
    animation: draw-dice 0.9s ease-in-out infinite;
    line-height: 1;
}
.draw-wait-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #f1f5f9;
    margin: 0;
    letter-spacing: -0.02em;
}
.draw-wait-sub {
    font-size: 0.92rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.55;
    max-width: 280px;
}
.draw-wait-dots {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}
.draw-wait-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #a78bfa;
    animation: draw-dot-pulse 1.4s ease-in-out infinite;
}
.draw-wait-dots span:nth-child(2) { animation-delay: 0.22s; }
.draw-wait-dots span:nth-child(3) { animation-delay: 0.44s; }
@keyframes draw-dot-pulse {
    0%, 80%, 100% { opacity: 0.25; transform: scale(0.75); }
    40%           { opacity: 1;    transform: scale(1);    }
}

/* ── All-winners final panel ─────────────────────────────── */
.draw-phase--all-winners {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .4s ease;
}
.draw-all-winners-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    margin: 8px 0;
    padding: 0 4px;
}
.draw-all-winner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    padding: 11px 18px;
}
.draw-all-winner-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fbbf24;
    background: rgba(251,191,36,.12);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}
.draw-all-winner-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -0.01em;
    animation: draw-name-in 0.4s ease both;
}

/* ── Multi-winner static reveal (post-draw page display) ──── */
.pd-winners-reveal {
    background: linear-gradient(145deg, #0a0c07 0%, #0e1a08 50%, #1a120a 100%);
    padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 52px);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pd-winners-reveal__header {
    margin-bottom: 28px;
}
.pd-winners-reveal__trophy {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
}
.pd-winners-reveal__label {
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    font-weight: 900;
    color: #fbbf24;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}
.pd-winners-reveal__date {
    font-size: 0.76rem;
    color: rgba(255,255,255,.32);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pd-winners-reveal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}
.pd-winners-reveal__card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(251,191,36,.25);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.pd-winners-reveal__num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fbbf24;
    background: rgba(251,191,36,.15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-winners-reveal__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -0.01em;
    text-align: left;
}

/* ── Mobile adjustments ──────────────────────────────────── */
@media (max-width: 520px) {
    .draw-card              { padding: 28px 20px 28px; }
    .draw-reel-viewport     { height: 384px; } /* 6 × 64 */
    .draw-winner-name       { font-size: 1.5rem; }
    .pd-winners-reveal__grid { grid-template-columns: 1fr; }
}
