    /* =====================================================
       AusLotto – Local-Only Design System (no Tailwind/Bootstrap)
       ===================================================== */
    :root {
        /* Palette – switched to deep navy / blue theme */
        --orange-50: #eff4ff;
        /* light blue background */
        --orange-100: #dbe6ff;
        /* section bg */
        --orange-200: #c7d2fe;
        /* card borders */
        --orange-600: #1e3a8a;
        /* accent border/lines */
        --orange-700: #0b1b3b;
        /* primary navy */
        --orange-800: #081430;
        /* deeper navy */
        --orange-900: #061026;
        /* headings */

        --yellow-400: #facc15;
        /* highlight/attention */

        /* Re-purpose “green” to blue for CTAs */
        --green-600: #2563eb;
        /* CTA blue */
        --green-700: #1d4ed8;
        /* CTA blue hover */

        --red-600: #dc2626;
        --red-700: #b91c1c;

        --gray-900: #111827;
        --gray-800: #1f2937;
        --gray-700: #374151;
        --gray-600: #4b5563;
        --gray-500: #6b7280;
        --gray-300: #d1d5db;
        --white: #fff;
        --black: #000;

        /* Shadows & Radii */
        --shadow-lg: 0 10px 25px rgba(17, 24, 39, .2);
        --shadow-xl: 0 18px 40px rgba(17, 24, 39, .25);
        --shadow-2xl: 0 30px 60px rgba(17, 24, 39, .3);
        --radius: 1.25rem;
        /* 20px */
        --radius-2xl: 1.5rem;
        /* 24px */
        --radius-3xl: 2rem;
        /* 32px */

        /* Layout */
        --wrap: 1280px;
        /* close to max-w-7xl */
        --gap: 1rem;

        /* Type */
        --fs-12: .75rem;
        --fs-14: .875rem;
        --fs-16: 1rem;
        --fs-18: 1.125rem;
        --fs-20: 1.25rem;
        --fs-24: 1.5rem;
        --fs-28: 1.75rem;
        --fs-32: 2rem;
        --fs-40: 2.5rem;
        --fs-48: 3rem;
        --fs-64: 4rem;

        /* Breakpoints */
        --bp-sm: 640px;
        --bp-lg: 1024px;
        --bp-xl: 1280px;
    }

    /* Base */
    * {
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
        font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
        background: var(--orange-50);
        color: var(--gray-900);
        min-height: 100vh;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .wrap {
        max-width: var(--wrap);
        margin: 0 auto;
        padding: 0 1rem;
    }

    .clip-featured {
        /* matches your polygon */
        -webkit-clip-path: polygon(0% .63rem, 13.7738% 0, 19.3333% .639375rem, 21.0738% .5225rem, 40.469% .639375rem, 47.344% .40625rem, 62.6579% .98875rem, 85.584% .41rem, 90.252% .8325rem, 91.518% .7075rem, 100% .7075rem, 100% 100%, 0 100%);
        clip-path: polygon(0% .63rem, 13.7738% 0, 19.3333% .639375rem, 21.0738% .5225rem, 40.469% .639375rem, 47.344% .40625rem, 62.6579% .98875rem, 85.584% .41rem, 90.252% .8325rem, 91.518% .7075rem, 100% .7075rem, 100% 100%, 0 100%);
        margin-top: -1.25rem;
        margin-bottom: -1.25rem;
    }

    /* Decorative patterns */
    .pattern-diamond {
        background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .15) 1px, transparent 0);
        background-size: 20px 20px;
    }

    .pattern-dots {
        background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .1) 2px, transparent 0);
        background-size: 24px 24px;
    }

    .pattern-zigzag {
        background-image: linear-gradient(45deg, rgba(255, 255, 255, .1) 25%, transparent 25%),
            linear-gradient(-45deg, rgba(255, 255, 255, .1) 25%, transparent 25%);
        background-size: 16px 16px;
    }

    /* Utils */
    .shadow-lg {
        box-shadow: var(--shadow-lg);
    }

    .shadow-xl {
        box-shadow: var(--shadow-xl);
    }

    .shadow-2xl {
        box-shadow: var(--shadow-2xl);
    }

    .rounded-2xl {
        border-radius: var(--radius-2xl);
    }

    .rounded-3xl {
        border-radius: var(--radius-3xl);
    }

    .rounded-full {
        border-radius: 999px;
    }

    .border-4 {
        border-width: 4px;
    }

    .badge {
        display: inline-block;
        padding: .5rem .9rem;
        font-weight: 900;
        border-radius: 999px;
    }

    .badge--18 {
        background: var(--yellow-400);
        color: var(--orange-900);
        font-size: var(--fs-12);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .75rem;
        padding: .9rem 1.25rem;
        font-weight: 900;
        border-radius: 999px;
        cursor: pointer;
        transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
        border: 0;
    }

    .btn:focus {
        outline: 3px solid rgba(250, 204, 21, .6);
        outline-offset: 2px;
    }

    .btn--primary {
        background: var(--orange-700);
        color: var(--white);
    }

    .btn--primary:hover {
        background: var(--orange-800);
        transform: scale(1.05);
    }

    .btn--dark {
        background: var(--gray-900);
        color: var(--white);
    }

    .btn--dark:hover {
        background: var(--gray-800);
        transform: scale(1.05);
    }

    .btn--accent {
        background: var(--green-600);
        color: var(--white);
    }

    .btn--accent:hover {
        background: var(--green-700);
        transform: scale(1.06);
    }

    .btn--danger {
        background: var(--red-600);
        color: var(--white);
    }

    .btn--danger:hover {
        background: var(--red-700);
        transform: scale(1.06);
    }

    /* Top alert */
    .alert {
        background: var(--orange-600);
        color: var(--white);
        padding: .35rem .5rem;
        box-shadow: var(--shadow-lg);
    }

    .alert__row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        font-size: var(--fs-14);
    }

    /* Header */
    header {
        position: sticky;
        top: .5rem;
        z-index: 40;
    }

    .nav {
        background: var(--white);
        border: 4px solid var(--yellow-400);
        border-radius: var(--radius-3xl);
        padding: 1rem;
        backdrop-filter: blur(6px);
        box-shadow: var(--shadow-2xl);
    }

    .nav__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__logo img {
        height: 40px;
    }

    .nav__menu {
        display: none;
        gap: .5rem;
    }

    .nav__menu a,
    .nav__menu button {
        font-size: var(--fs-16);
    }

    .hamb {
        display: inline-flex;
        background: var(--orange-700);
        color: var(--white);
        padding: .6rem .8rem;
        border-radius: 999px;
        border: 0;
        cursor: pointer;
    }

    @media (min-width: 1024px) {
        .nav__menu {
            display: flex;
        }

        .hamb {
            display: none;
        }
    }

    /* Mobile menu */
    .mnav {
        height: 0;
        overflow: hidden;
        transition: height .35s ease;
        display: grid;
        gap: .5rem;
    }

    .mnav.open {
        height: auto;
    }

    .mnav a,
    .mnav button {
        text-align: center;
        padding: .9rem 1rem;
        border-radius: 1rem;
        font-weight: 900;
    }

    /* Sections */
    main {
        margin-top: .5rem;
    }

    section {
        padding: 1rem 0 2rem;
    }

    @media (min-width: 640px) {
        section {
            padding: 2rem 0 4rem;
        }
    }

    @media (min-width: 1024px) {
        section {
            padding: 2rem 0 6rem;
        }
    }

    /* HERO */
    .hero {
        position: relative;
        background: var(--orange-700);
        color: var(--white);
        border-radius: var(--radius-3xl);
        overflow: hidden;
        padding: 1.5rem;
        box-shadow: var(--shadow-2xl);
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .2);
        border-radius: inherit;
    }

    .hero__img {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        opacity: .9;
        transform-origin: center;
        animation: pulse-bg 5s infinite ease-in-out;
    }

    @keyframes pulse-bg {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.03);
        }
    }

    .hero__inner {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    @media (min-width: 1024px) {
        .hero__inner {
            text-align: right;
        }
    }

    .ribbon {
        display: inline-block;
        background: var(--yellow-400);
        color: var(--orange-900);
        padding: .6rem 1.2rem;
        border-radius: 999px;
        font-weight: 900;
        transform: rotate(-2deg);
    }

    .hero__title {
        font-weight: 900;
        line-height: .95;
        margin: .5rem 0 1rem;
        font-size: var(--fs-32);
    }

    .hero__lead {
        font-weight: 800;
        opacity: .95;
        font-size: var(--fs-20);
        margin-bottom: 1.2rem;
    }

    @media (min-width: 640px) {
        .hero__title {
            font-size: var(--fs-48);
        }

        .hero__lead {
            font-size: var(--fs-24);
        }
    }

    @media (min-width: 1024px) {
        .hero__title {
            font-size: var(--fs-64);
        }

        .hero__lead {
            font-size: var(--fs-32);
        }
    }

    /* Grid helpers */
    .grid {
        display: grid;
        gap: 1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* Cards */
    .card {
        background: var(--white);
        border-radius: var(--radius-3xl);
        padding: 1.25rem;
        border: 4px solid var(--orange-200);
        box-shadow: var(--shadow-2xl);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 40px 70px rgba(17, 24, 39, .28);
    }

    .card--accent {
        background: var(--red-600);
        color: var(--white);
        border-color: transparent;
    }

    .card--dark {
        background: var(--gray-900);
        color: var(--white);
        border-color: transparent;
    }

    .divider {
        width: 96px;
        height: 8px;
        background: var(--yellow-400);
        border-radius: 999px;
        margin: 0 auto;
    }

    /* Featured/Lotteries carousel wrapper */
    .games-swiper {
        border-left: 4px solid var(--orange-600);
        border-right: 4px solid var(--orange-600);
        border-radius: var(--radius-3xl);
        padding: .5rem;
    }

    /* Winner cards */
    .winner {
        border: 4px solid var(--orange-200);
        border-radius: var(--radius-2xl);
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        background: var(--white);
        transition: border-color .2s ease;
    }

    .winner:hover {
        border-color: var(--green-600);
    }

    .winner__img {
        height: 256px;
        width: 100%;
        object-fit: cover;
    }

    .winner__body {
        padding: 1rem 1.25rem;
    }

    /* Responsible block */
    .rg-box {
        background: var(--white);
        border: 4px solid #f5d565;
        border-radius: var(--radius-3xl);
        padding: 1.5rem;
        box-shadow: var(--shadow-2xl);
    }

    .logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    @media (min-width:1024px) {
        .logos {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .logo-tile {
        $1border: 4px solid #c7d2fe;
        border-radius: var(--radius-2xl);
        padding: 1.5rem;
        display: grid;
        place-content: center;
        transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .logo-tile:hover {
        transform: scale(1.03);
        border-color: var(--green-600);
        box-shadow: var(--shadow-xl);
    }

    /* Regulation chips */
    .chip {
        $1border: 4px solid #c7d2fe;
        border-radius: var(--radius-2xl);
        padding: 1.25rem;
        box-shadow: var(--shadow-xl);
    }

    /* Footer */
    footer {
        background: #0b1536;
        color: #e2e8f0;
    }

    .footer-grid {
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 3fr;
        }
    }

    .lists {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 640px) {
        .lists {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .lists h3 {
        color: #facc15;
        margin: 0 0 .75rem;
        font-size: var(--fs-20);
        font-weight: 900;
    }

    .lists a {
        color: #c7d2fe;
        font-size: var(--fs-16);
    }

    .lists a:hover {
        color: #ffffff;
    }

    /* Helpers for spacing */
    .mt-1 {
        margin-top: .5rem;
    }

    .mt-2 {
        margin-top: 1rem;
    }

    .mt-3 {
        margin-top: 1.5rem;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .mb-1 {
        margin-bottom: .5rem;
    }

    .mb-2 {
        margin-bottom: 1rem;
    }

    .mb-3 {
        margin-bottom: 1.5rem;
    }

    .mb-4 {
        margin-bottom: 2rem;
    }

    .py-1 {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    /* Accessibility */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* User-badge near logo */
    .user-badge {
        display: flex;
        margin: 0 .25rem;
        padding-left: .75rem;
        border-left: 2px solid var(--yellow-400);
    }

    .user-badge .user-id {
        font-weight: 900;
        font-size: var(--fs-14);
        letter-spacing: .5px;
        color: var(--orange-700);
        text-transform: uppercase;
    }

    .user-badge .user-name {
        font-weight: 900;
        font-size: var(--fs-16);
        color: var(--orange-900);
    }

    @media (min-width: 1024px) {
        .user-badge {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
    }

    /* Header cluster (logo + user) */
    .nav__left {
        display: flex;
        align-items: center;
        gap: .5rem;
        min-width: 0;
    }

    .nav__row {
        gap: .75rem;
    }

    /* Mobile tweaks */
    @media (max-width: 640px) {
        .nav {
            padding: .6rem .75rem;
            border-radius: 1rem;
        }

        .nav__logo img {
            height: 32px;
        }

        .user-badge {
            padding-left: .5rem;
            border-left: 1.5px solid var(--yellow-400);
        }

        .user-badge .user-id {
            font-size: .7rem;
            letter-spacing: .3px;
        }

        .user-badge .user-name {
            font-size: .9rem;
        }

        .hamb {
            padding: .45rem .6rem;
        }
    }

    /* ===== Footer ===== */
    .site-footer {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }

    .footer-brand__logo {
        display: flex;
        align-items: center;
        padding: .5rem 0;
    }

    .footer-brand__logo img {
        width: 150px;

    }

    .footer-brand__meta {
        color: #64748b;
        font-size: .9rem;
        margin: .25rem 0 .75rem;
    }

    .footer-badges {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .badge--licensed {
        background: var(--yellow-400);
        color: var(--orange-900);
    }

    .badge--au {
        background: var(--green-600);
        color: #fff;
    }

    .footer-divider {
        border: 0;
        border-top: 1px solid #334155;
        margin: 1rem 0;
    }

    .footer-legal {
        max-width: 960px;
    }

    .footer-legal__text {
        color: #6b7280;
        font-size: .9rem;
        margin: .5rem 0 1rem;
    }

    .footer-legal__text:last-child {
        margin-bottom: 0;
    }

    .footer-legal a {
        color: var(--accent);
        text-decoration: underline;
        font-weight: 800;
    }

    /* ===== Responsible play section ===== */
    .resp {
        background: var(--orange-100);
        position: relative;
        overflow: hidden;
    }

    .resp__img {
        position: absolute;
        right: -80px;
        top: 0;
        height: 100%;
        pointer-events: none;
        display: none;
    }

    @media (min-width: 1280px) {
        .resp__img {
            display: block;
        }
    }

    .resp__head {
        text-align: center;
        margin-bottom: 2rem;
    }

    .resp__badge {
        text-transform: uppercase;
        background: var(--yellow-400);
        color: var(--orange-900);
    }

    .resp__title {
        margin: .75rem 0;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 900;
        color: var(--orange-900);
    }

    .rg-box p {
        font-size: 1.05rem;
        color: #374151;
        line-height: 1.7;
        margin: 0 0 1rem;
    }

    .rg-box p:last-child {
        margin-bottom: 0;
    }

    .logo-tile img {
        height: 56px;
        width: auto;
        margin-inline: auto;
    }

    /* ===== Steps to a Better Life ===== */
    .steps {
        background: var(--orange-50);
        position: relative;
        overflow: hidden;
    }

    .steps__head {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .steps__badge {
        background: var(--green-600);
        color: var(--white);
        text-transform: uppercase;
    }

    .steps__title {
        margin: .75rem 0;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 900;
        color: var(--orange-900);
    }

    /* Grid of steps */
    .steps__grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .steps__grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Individual step card */
    .step {
        background: var(--white);
        border: 4px solid var(--orange-200);
        border-radius: var(--radius-3xl);
        padding: 1.25rem 1.25rem 1rem;
        box-shadow: var(--shadow-2xl);
    }

    .step__num {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--yellow-400);
        color: var(--orange-900);
        font-weight: 900;
        margin-bottom: .5rem;
    }

    .step h3 {
        margin: .25rem 0 .5rem;
        font-weight: 900;
        color: var(--orange-900);
        font-size: 1.2rem;
    }

    .step p {
        margin: 0;
        color: #5b646f;
        line-height: 1.6;
        font-size: 1rem;
    }

    /* Actions */
    .steps__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Important notice */
    .steps__warning {
        margin-top: 1.25rem;
        background: rgba(250, 204, 21, .14);
        border: 1px solid rgba(250, 204, 21, .45);
        color: #1f2937;
        padding: 12px 14px;
        border-radius: 16px;
        font-weight: 600;
    }

    /* ===== Recent Winners ===== */
    .winners {
        background: var(--orange-200);
    }

    .winners__head {
        text-align: center;
        margin-bottom: 2rem;
    }

    .winners__title {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: var(--orange-900);
    }

    .winner__title {
        font-size: 1.5rem;
        font-weight: 900;
        color: #0f172a;
        margin: 0 0 .5rem;
    }

    /* ===== Promo / Jackpot cards ===== */

    .badge--success {
        background: var(--green-600);
        color: var(--white);
    }

    .btn--block {
        width: 100%;
    }

    .promo__bar {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .promo__rule {
        flex: 1;
        height: 6px;
        background: rgba(255, 255, 255, .3);
        border-radius: 999px;
    }

    .promo__headline {
        margin: .25rem 0 .5rem;
        font-size: var(--fs-24);
        font-weight: 900;
        color: var(--orange-900);
    }

    .promo__title {
        margin: 0 0 .5rem;
        font-size: var(--fs-40);
        font-weight: 900;
    }

    .promo__lead {
        opacity: .95;
    }

    /* Right card (jackpot) */
    .deal__timer {
        display: flex;
        align-items: center;
        gap: .5rem;
        background: rgba(0, 0, 0, .4);
        padding: .5rem .75rem;
        width: max-content;
        border-radius: 999px;
    }

    .deal__dot {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        background: var(--green-600);
        border-radius: 999px;
        animation: pulse-bg 1.5s infinite;
    }

    .deal__jackpot {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: var(--yellow-400);
        margin: .25rem 0;
    }

    .deal__subtitle {
        margin: .25rem 0 1rem;
        font-size: 1.75rem;
        font-weight: 900;
    }

    /* Hero: desktop image left, content centered */
    @media (min-width: 1024px) {
        .hero__img {
            left: 0;
            right: auto;
        }

        .hero__inner {
            text-align: center !important;
            max-width: 820px;
            margin-inline: auto;
        }
    }

    .hero__cta {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-2xl);
        display: inline-flex;
        align-items: center;
        gap: .75rem;
        margin-inline: auto;
    }

    .hero__cta-icon {
        display: grid;
        place-items: center;
        width: 64px;
        height: 64px;
        background: var(--yellow-400);
        color: var(--orange-900);
        border-radius: 999px;
    }

    /* ===== Draw cards ===== */
    .draws {
        background: var(--orange-50);
    }

    .draw-grid {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .draw-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .draw-card {
        background: #fff;
        border-radius: var(--radius-3xl);
        box-shadow: var(--shadow-2xl);
        padding: 1.25rem;
        border: 1px solid rgba(15, 23, 42, .06);
    }

    .draw-card__banner {
        border-radius: 14px;
        padding: 1rem 1.25rem;
        color: #fff;
        font-weight: 900;
        margin-bottom: 1rem;
    }

    .draw-card__banner small {
        display: block;
        opacity: .9;
        font-weight: 800;
        letter-spacing: .2px;
        margin-bottom: .35rem;
    }

    .draw-card__amount {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1;
    }

    /* theme variants */
    .banner--blue {
        background: #06b6d4;
    }

    /* cyan-like */
    .banner--pink {
        background: #ef476f;
    }

    /* vibrant pink/red */

    /* info rows */
    .draw-row {
        background: #f1f5f9;
        border-radius: 12px;
        padding: .75rem .9rem;
        display: flex;
        gap: .75rem;
        align-items: center;
        margin-bottom: .6rem;
    }

    .draw-row__label {
        color: #0f172a;
        font-weight: 800;
        font-size: .95rem;
        display: flex;
        gap: .5rem;
        align-items: center;
    }

    .draw-row__time {
        color: #475569;
        font-weight: 700;
        font-size: .9rem;
    }

    .draw-row__balls {
        margin-left: auto;
        display: flex;
        gap: .4rem;
        flex-wrap: wrap;
    }



    /* bottom actions */
    .draw-actions {
        display: flex;
        justify-content: flex-end;
        gap: .6rem;
        margin-top: .75rem;
        flex-wrap: wrap;
    }

    .draw-actions .btn {
        font-weight: 900;
    }

    .draw-actions .btn--ghost {
        background: transparent;
        color: var(--accent);
        border: 1px solid rgba(37, 99, 235, .35);
    }

    .draw-actions .btn--ghost:hover {
        background: rgba(37, 99, 235, .06);
    }

    /* helpers */
    .icon {
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: #e2e8f0;
        color: #0f172a;
    }

    /* ===== Draw cards (v2) ===== */
    .draws {
        background: var(--orange-50);
    }

    .draw-grid {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .draw-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .draw-card {
        background: #fff;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, .06);
        box-shadow: 0 30px 60px rgba(17, 24, 39, .15);
        padding: 1.25rem;
    }

    .draw-card__banner {
        border-radius: 16px;
        padding: 1rem 1.25rem;
        color: #fff;
        font-weight: 900;
        margin-bottom: 1rem;
        box-shadow: inset 0 -10px 30px rgba(0, 0, 0, .12);
    }

    .banner--blue {
        background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    }

    .banner--pink {
        background: linear-gradient(135deg, #ef476f 0%, #f97316 100%);
    }

    .draw-card__banner small {
        display: block;
        opacity: .95;
        letter-spacing: .2px;
        margin-bottom: .35rem;
    }

    .draw-card__amount {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1;
    }

    /* info rows */
    .draw-row {
        background: #f1f5f9;
        border-radius: 14px;
        padding: .75rem .9rem;
        display: flex;
        align-items: center;
        gap: .75rem;
        margin-bottom: .6rem;
    }

    .draw-row__label {
        color: #0f172a;
        font-weight: 800;
        font-size: .95rem;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .draw-row__time {
        color: #475569;
        font-weight: 700;
        font-size: .9rem;
    }

    .draw-row__balls {
        margin-left: auto;
        display: flex;
        gap: .45rem;
        flex-wrap: wrap;
    }

    /* balls */
    .ball {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        font-weight: 900;
        color: #0f172a;
        border: 2px solid #e2e8f0;
        background:
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .9), rgba(255, 255, 255, .3) 40%, rgba(255, 255, 255, 0) 41%),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #e2e8f0 100%);
        box-shadow:
            0 6px 14px rgba(2, 6, 23, .1),
            inset 0 2px 0 rgba(255, 255, 255, .75),
            inset 0 -2px 0 rgba(2, 6, 23, .06);
    }

    .ball--bonus {
        border-color: #f59e0b;
        background:
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .95), rgba(255, 255, 255, .35) 40%, rgba(255, 255, 255, 0) 41%),
            linear-gradient(180deg, #fde68a 0%, #fbbf24 70%, #f59e0b 100%);
        color: #111827;
    }

    .ball--tag {
        font-size: .8rem;
        width: 42px;
        height: 28px;
        border-radius: 999px;
    }

    .ball--enter {
        opacity: 0;
        transform: translateY(8px) scale(.8);
        animation: ball-pop .55s cubic-bezier(.2, .8, .2, 1) both;
    }

    /* appear staging */
    @keyframes ball-pop {
        0% {
            transform: translateY(8px) scale(.8);
            opacity: 0;
        }

        60% {
            transform: translateY(0) scale(1.06);
            opacity: 1;
        }

        100% {
            transform: translateY(0) scale(1);
        }
    }

    /* bottom actions */
    .draw-actions {
        display: flex;
        justify-content: flex-end;
        gap: .6rem;
        margin-top: .8rem;
        flex-wrap: wrap;
    }

    .btn--ghost {
        background: transparent;
        color: var(--accent);
        border: 1px solid rgba(37, 99, 235, .35);
    }

    .btn--ghost:hover {
        background: rgba(37, 99, 235, .06);
    }

    /* tiny icons */
    .icon {
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: #e2e8f0;
        color: #0f172a;
    }

    /**/
    /* Uses your existing CSS variables (orange/slate/etc.) */
    .age-gate {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: none;
        place-items: center;
        background: rgba(15, 23, 42, .45);
        backdrop-filter: blur(24px) saturate(120%) brightness(0.9);
        -webkit-backdrop-filter: blur(24px) saturate(120%) brightness(0.9);
    }

    .age-gate.age-gate--open {
        display: grid;
    }

    /* Fallback blur for unsupported browsers */
    html.no-scroll {
        overflow: hidden;
    }

    #site-wrap.is-blurred {
        filter: blur(6px);
    }

    .age-card {
        width: min(560px, 92vw);
        background: #fff;
        border-radius: 22px;
        padding: 1.25rem 1.25rem 1rem;
        box-shadow: var(--shadow-2xl);
        border: 3px solid rgba(0, 0, 0, .06);
        text-align: center;
    }

    .age-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 999px;
        background: linear-gradient(180deg, #f97316, #ea580c);
        color: #fff;
        font-weight: 900;
        font-size: 1.15rem;
        margin: .25rem auto .5rem;
        box-shadow: 0 8px 20px rgba(234, 88, 12, .35), inset 0 -3px 8px rgba(0, 0, 0, .15);
    }

    .age-title {
        margin: .25rem 0 .35rem;
        font-size: clamp(1.25rem, 2.2vw, 1.75rem);
        font-weight: 900;
        color: var(--orange-900);
    }

    .age-sub {
        color: var(--slate-700);
        margin: 0 auto .9rem;
        line-height: 1.5;
        max-width: 42ch;
    }

    .age-sub a {
        color: var(--orange-700);
        font-weight: 800;
        text-decoration: underline;
    }

    .age-actions {
        display: flex;
        gap: .5rem;
        margin-top: .5rem;
    }

    .age-actions .btn {
        flex: 1;
    }

    .age-legal {
        margin: .75rem 0 0;
        font-size: .85rem;
        color: var(--slate-600);
    }

    /* Buttons: reuse your .btn variants */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        border: 0;
        border-radius: 14px;
        padding: .9rem 1.05rem;
        font-weight: 900;
        cursor: pointer;
        box-shadow: var(--shadow-md);
    }

    .btn--soft {
        background: #fff7ed;
        border: 1px solid #fed7aa;
        color: var(--orange-900);
    }

    .btn--accent {
        background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
        color: #fff;
    }

    .btn:focus-visible {
        outline: 3px solid rgba(234, 88, 12, .25);
        outline-offset: 2px;
    }

    @media (max-width:480px) {
        .age-actions {
            flex-direction: column;
        }
    }