/* ======================================================
   MYSTERY BOX — RICH WARM DARK NEON THEME
   Inspired by premium mystery box UI mockup
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&family=Oswald:wght@500;700&display=swap');

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

:root {
    --bg: #0b0a12;
    --surface: #14131e;
    --surface2: #1a192a;
    --glass: rgba(20, 19, 30, 0.88);
    --gold: #ffaa00;
    --gold-light: #ffd060;
    --orange: #ff6b00;
    --red: #ff0044;
    --purple: #8b5cf6;
    --green: #22c55e;
    --text: #f5f5f7;
    --muted: #8a8da5;
    --border: rgba(255, 170, 0, 0.12);
    --border-glow: rgba(255, 170, 0, 0.25);
    --radius: 16px;
    --warm-glow: 0 0 60px rgba(255, 140, 0, 0.15), 0 0 120px rgba(255, 100, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(255, 120, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.gold {
    color: var(--gold);
}

.dim {
    color: var(--muted);
}

small {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
}

/* ============ PARTICLES ============ */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.12;
    animation: drift linear infinite;
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.12;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        transform: translateY(-120vh) translateX(60px);
        opacity: 0;
    }
}

/* ============ URGENCY BAR ============ */
.urgency-bar {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #cc0000, #ff5500, #ff8800, #ff5500, #cc0000);
    background-size: 300% auto;
    animation: barSlide 4s linear infinite;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 12px 10px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #fff;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px #fff;
    }

    50% {
        opacity: 0.3;
        box-shadow: none;
    }
}

@keyframes barSlide {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 300% 0;
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    z-index: 1;
    padding: 70px 0 50px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle,
            rgba(255, 140, 0, 0.25) 0%,
            rgba(255, 85, 0, 0.15) 20%,
            rgba(139, 92, 246, 0.1) 40%,
            transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.hero-glow2 {
    position: absolute;
    bottom: -250px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 55%);
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(255, 100, 0, 0.1));
    border: 1px solid rgba(255, 170, 0, 0.4);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.1);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 110px;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 170, 0, 0.1);
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 550px;
    margin: 0 auto 45px;
    line-height: 1.8;
}

.hero-sub strong {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Box Image */
.box-showcase {
    position: relative;
    max-width: 400px;
    margin: 0 auto 60px;
}

.box-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        0 0 60px 20px rgba(255, 140, 0, 0.3),
        0 0 120px 60px rgba(255, 85, 0, 0.15),
        0 0 200px 100px rgba(139, 92, 246, 0.1),
        inset 0 0 60px rgba(255, 140, 0, 0.1);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 60px 20px rgba(255, 140, 0, 0.3), 0 0 120px 60px rgba(255, 85, 0, 0.15), 0 0 200px 100px rgba(139, 92, 246, 0.1);
    }

    100% {
        box-shadow: 0 0 80px 30px rgba(255, 140, 0, 0.45), 0 0 160px 80px rgba(255, 85, 0, 0.2), 0 0 250px 120px rgba(139, 92, 246, 0.15);
    }
}

.box-hero-img {
    width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(255, 120, 0, 0.3)) drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
    animation: floatBox 5s ease-in-out infinite;
}

@keyframes floatBox {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* ============ PRICING CARDS ============ */
.cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 270px;
    max-width: 350px;
    background: linear-gradient(180deg, var(--surface2) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-inner {
    padding: 35px 28px;
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--border-glow);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 170, 0, 0.08);
}

.card.active {
    background: linear-gradient(135deg, #1e1d30 0%, #14131e 100%);
    border-color: var(--gold);
    box-shadow:
        0 0 0 1px var(--gold),
        0 0 30px rgba(255, 170, 0, 0.2),
        0 0 60px rgba(255, 170, 0, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(1.06) translateY(-10px);
    z-index: 3;
}

.card.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}

.hot-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: linear-gradient(90deg, #ff0044, #ff3300);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 7px 40px;
    transform: rotate(45deg);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    z-index: 5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.card-tier {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--muted);
    margin-bottom: 10px;
}

.card.active .card-tier {
    color: var(--gold-light);
}

.card-price {
    font-size: 46px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 170, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.5);
}

.card-perks {
    list-style: none;
    margin-bottom: 28px;
}

.card-perks li {
    font-size: 14px;
    color: #c0c3d5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    padding-left: 24px;
}

.card-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
}

.card-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s;
    color: #ccc;
}

.card.active .card-btn {
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border: none;
    color: #000;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.5);
    text-shadow: none;
}

/* ============ ORDER FORM (GLASSMORPHISM) ============ */
.order-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.form-glass {
    background: var(--glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glow);
    border-radius: 30px;
    padding: 55px;
    max-width: 580px;
    margin: 0 auto;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 170, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.form-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold), var(--orange), var(--gold), var(--purple));
    background-size: 200% auto;
    animation: lineShift 4s linear infinite;
}

@keyframes lineShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.form-glass h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.form-hint {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 15px;
}

.field {
    margin-bottom: 18px;
}

.field input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.15), inset 0 0 10px rgba(255, 170, 0, 0.05);
    background: rgba(0, 0, 0, 0.7);
}

.field input::placeholder {
    color: #666;
}

.err-box {
    background: rgba(255, 0, 68, 0.1);
    border: 1px solid rgba(255, 0, 68, 0.3);
    color: #ff4466;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.summary-strip {
    background: rgba(255, 170, 0, 0.04);
    border: 1px dashed rgba(255, 170, 0, 0.2);
    border-radius: 15px;
    padding: 20px 25px;
    margin: 25px 0;
}

.summary-strip>div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 16px;
    font-weight: 600;
}

.big-cta {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ff6b00, #ff0044, #ff6b00);
    background-size: 200% auto;
    animation: ctaBg 3s linear infinite;
    color: #fff;
    border: none;
    padding: 22px;
    border-radius: 60px;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(255, 50, 0, 0.5), 0 0 20px rgba(255, 100, 0, 0.2);
    transition: all 0.3s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes ctaBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.big-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 50, 0, 0.6), 0 0 30px rgba(255, 100, 0, 0.3);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: ctaShine 3s infinite;
}

@keyframes ctaShine {
    0% {
        left: -100%;
    }

    30% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.trust-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

/* ============ PRIZES GRID ============ */
.prizes-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0e0e1a 50%, var(--bg) 100%);
}

.sec-title {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sec-sub {
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.7;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
}

.p-cell {
    background: linear-gradient(180deg, var(--surface2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.p-cell img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.4s;
    filter: brightness(0.95);
}

.p-cell:hover {
    transform: scale(1.18);
    z-index: 5;
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 170, 0, 0.2), 0 0 20px rgba(255, 140, 0, 0.15);
    background: var(--surface2);
}

.p-cell:hover img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

/* ============ GRAND PRIZE ============ */
.grand-prize {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, var(--bg) 55%);
}

.gp-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 4px;
    padding: 10px 35px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.3);
}

.mac-wrap {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.mac-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--purple);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: macGlow 5s ease-in-out infinite alternate;
}

@keyframes macGlow {
    0% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(0.85);
    }

    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.mac-img {
    max-width: 100%;
    width: 650px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

/* ============ REVIEWS ============ */
.reviews {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--surface);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 45px;
}

.rev {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), var(--bg));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}

.rev:hover {
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 170, 0, 0.05);
    transform: translateY(-5px);
}

.rev-head {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.rev-ava {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rev-name {
    font-weight: 700;
    font-size: 16px;
}

.badge-v {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: rgba(34, 197, 94, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
}

.rev-stars {
    color: var(--gold);
    font-size: 14px;
    margin-top: 3px;
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
}

.rev-text {
    font-size: 14px;
    color: #c8c8d2;
    line-height: 1.7;
    margin-bottom: 14px;
}

.rev-foot {
    font-size: 12px;
    color: var(--muted);
}

.rev-foot span {
    cursor: pointer;
    font-weight: 600;
}

.rev-foot span:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Comment Form */
.add-comment-box {
    margin-top: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), var(--bg));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
}

.add-comment-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 18px;
}

.add-comment-box textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 15px;
    font-size: 14px;
}

.add-comment-box textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.add-comment-box button {
    float: right;
    background: linear-gradient(90deg, var(--purple), #6d28d9);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.add-comment-box button:hover {
    background: linear-gradient(90deg, #9b6cfa, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.mod-msg {
    display: none;
    clear: both;
    margin-top: 55px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--green);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.mod-msg.show {
    display: block;
}

/* ============ STICKY CTA (MOBILE) ============ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(11, 10, 18, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s;
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    background: linear-gradient(45deg, #ff6b00, #ff0044);
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 50, 0, 0.45);
}

/* ============ FOOTER ============ */
footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

/* ============ LIVE TOAST ============ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    background: rgba(20, 19, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-left: 4px solid var(--gold);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(255, 170, 0, 0.1),
        0 0 50px rgba(139, 92, 246, 0.08);
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 340px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 15px;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 6px rgba(255, 120, 0, 0.3));
}

.toast-body {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
}

.toast-body strong {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
}

.toast-body small {
    color: var(--muted);
    font-size: 11px;
}

.toast-body b.gold {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
}

/* ============ RESPONSIVE ============ */
@media(max-width:768px) {
    .hero h1 {
        font-size: 65px;
    }

    .cards-row {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 100%;
    }

    .card.active {
        transform: scale(1);
    }

    .form-glass {
        padding: 30px 22px;
    }

    .prizes-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .toast {
        bottom: 80px;
        left: 15px;
        right: 15px;
        max-width: none;
        transform: translateY(150%);
    }

    .toast.show {
        transform: translateY(0);
    }

    .big-cta {
        font-size: 20px;
        padding: 18px;
    }
}