/* ========================================
   OnePick Draw — Dark Theme
   Canadian Lottery White Site
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0b0f19;
    color: #c8cdd5;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: #f59e0b; text-decoration: none; transition: color .2s; }
a:hover { color: #fbbf24; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11,15,25,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245,158,11,.1);
    padding: 0 0;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}
.header__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.header__logo-accent { color: #f59e0b; }
.header__nav { display: flex; align-items: center; gap: 6px; }
.header__nav-link {
    padding: 8px 14px;
    border-radius: 6px;
    color: #94a3b8;
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s;
}
.header__nav-link:hover,
.header__nav-link.active { color: #fff; background: rgba(245,158,11,.08); }
.header__nav-link--cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b0f19 !important;
    font-weight: 600;
    padding: 8px 18px;
}
.header__nav-link--cta:hover { opacity: .9; }
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #c8cdd5;
    border-radius: 2px;
    transition: .3s;
}

/* === HERO === */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,.08) 0%, transparent 60%);
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.03em;
}
.hero__subtitle {
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto 36px;
    color: #8892a4;
}
.hero__badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: .8rem;
    color: #f59e0b;
    font-weight: 500;
}
.hero__badge i { font-size: .9rem; }
.hero__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s;
    border: none;
}
.btn--primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b0f19;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.25); }
.btn--outline {
    background: transparent;
    border: 1.5px solid rgba(245,158,11,.3);
    color: #f59e0b;
}
.btn--outline:hover { background: rgba(245,158,11,.08); border-color: #f59e0b; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--full { width: 100%; }
.btn--danger { background: #ef4444; color: #fff; }
.btn--danger:hover { background: #dc2626; }

/* === SECTION COMMON === */
.section { padding: 80px 0; }
.section--alt { background: rgba(255,255,255,.02); }
.section__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}
.section__subtitle {
    text-align: center;
    color: #8892a4;
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1rem;
}

/* === LOTTERY CARDS === */
.lotteries__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.lottery-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all .3s;
}
.lottery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245,158,11,.2);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.lottery-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
}
.lottery-card__icon--1 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.lottery-card__icon--2 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.lottery-card__icon--3 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.lottery-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.lottery-card__desc {
    font-size: .9rem;
    margin-bottom: 20px;
    color: #8892a4;
}

/* === HOW IT WORKS === */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: step;
}
.step {
    text-align: center;
    padding: 24px 16px;
}
.step__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(245,158,11,.1);
    border: 2px solid rgba(245,158,11,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f59e0b;
}
.step__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.step__desc { font-size: .9rem; color: #8892a4; }

/* === BENEFITS === */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.benefit {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color .3s;
}
.benefit:hover { border-color: rgba(245,158,11,.2); }
.benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(245,158,11,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: #f59e0b;
}
.benefit__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.benefit__desc { font-size: .9rem; color: #8892a4; }

/* === RESPONSIBLE === */
.responsible {
    background: rgba(245,158,11,.03);
    border-top: 1px solid rgba(245,158,11,.08);
    border-bottom: 1px solid rgba(245,158,11,.08);
    padding: 64px 0;
}
.responsible__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.responsible__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.responsible__text {
    font-size: .95rem;
    color: #8892a4;
    margin-bottom: 8px;
}

/* === FAQ === */
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    cursor: pointer;
    text-align: left;
    background: none;
    border: none;
}
.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    color: #f59e0b;
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq__item.open .faq__question::after { content: '−'; }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
}
.faq__item.open .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}
.faq__answer p { font-size: .9rem; color: #8892a4; }

/* === FOOTER === */
.footer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 40px 0 24px;
    font-size: .85rem;
    color: #64748b;
}
.footer__disclaimer {
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
    padding: 20px;
    background: rgba(239,68,68,.04);
    border: 1px solid rgba(239,68,68,.1);
    border-radius: 12px;
}
.footer__disclaimer-helpline {
    font-weight: 600;
    color: #f87171;
    margin-bottom: 8px;
}
.footer__disclaimer-text { font-size: .82rem; line-height: 1.6; color: #6b7990; }
.footer__disclaimer-text strong { color: #94a3b8; }
.footer__age-warning {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-weight: 600;
    color: #ef4444;
}
.footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer__links a { color: #64748b; }
.footer__links a:hover { color: #f59e0b; }
.footer__orgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer__org {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 6px;
    font-size: .75rem;
    color: #8892a4;
    transition: border-color .2s;
}
.footer__org:hover { border-color: rgba(245,158,11,.2); }
.footer__org-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
}
.footer__org-icon--loto { background: #1d4ed8; color: #fff; }
.footer__org-icon--aide { background: #16a34a; color: #fff; }
.footer__org-icon--19 { background: #ef4444; color: #fff; }
.footer__org-icon--gambleaware { background: #7c3aed; color: #fff; }
.footer__org-icon--gamblers { background: #f59e0b; color: #fff; }
.footer__copy {
    text-align: center;
    color: #475569;
    font-size: .8rem;
}

/* === FORMS === */
.form-page {
    padding: 80px 0;
    min-height: 60vh;
}
.form-card {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 40px 36px;
}
.form-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: .95rem;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #f59e0b;
    background: rgba(245,158,11,.03);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: .85rem;
    color: #64748b;
}
.form-footer a { color: #f59e0b; }
.form-msg {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: .9rem;
    display: none;
}
.form-msg--success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: #4ade80; }
.form-msg--error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2); color: #f87171; }

/* === CONTACT PAGE === */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
}
.contact-info__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(245,158,11,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    flex-shrink: 0;
}
.contact-info__text { font-size: .9rem; }
.contact-info__text strong { display: block; color: #e2e8f0; margin-bottom: 2px; }

/* === ABOUT PAGE === */
.about-hero {
    padding: 80px 0 40px;
    text-align: center;
}
.about-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.about-hero__subtitle { font-size: 1.05rem; color: #8892a4; }
.about-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 16px;
}
.about-content p {
    margin-bottom: 14px;
    color: #8892a4;
    font-size: .95rem;
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}
.value-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}
.value-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.value-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.value-card__desc { font-size: .85rem; color: #8892a4; }

/* === BUY TICKETS PAGE === */
.buy-page { padding: 60px 0; }
.buy-page__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}
.buy-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
.lottery-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.lottery-tab {
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #94a3b8;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
}
.lottery-tab.active,
.lottery-tab:hover {
    background: rgba(245,158,11,.1);
    border-color: #f59e0b;
    color: #f59e0b;
}
.picker {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 28px;
}
.picker__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.picker__desc {
    font-size: .85rem;
    color: #8892a4;
    margin-bottom: 20px;
}
.picker__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}
.picker__num {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #94a3b8;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.picker__num:hover { border-color: #f59e0b; color: #f59e0b; }
.picker__num.selected {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b0f19;
    border-color: #f59e0b;
}
.picker__num.disabled {
    opacity: .3;
    pointer-events: none;
}
.picker__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
/* Cart */
.cart {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 80px;
}
.cart__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cart__empty {
    text-align: center;
    color: #64748b;
    padding: 20px 0;
    font-size: .9rem;
}
.cart__items { margin-bottom: 16px; }
.cart__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .85rem;
}
.cart__item-nums { color: #f59e0b; font-weight: 600; }
.cart__item-remove {
    color: #ef4444;
    cursor: pointer;
    background: none;
    border: none;
    font-size: .85rem;
}
.cart__total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-bottom: 16px;
}
.cart__draws {
    margin-bottom: 16px;
}
.cart__draws label {
    font-size: .85rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}
.cart__draws select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: #e2e8f0;
}

/* === POLICY PAGES === */
.policy-page { padding: 80px 0; }
.policy-page__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}
.policy-content {
    max-width: 760px;
    margin: 0 auto;
}
.policy-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 32px 0 12px;
}
.policy-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
    margin: 20px 0 8px;
}
.policy-content p,
.policy-content li {
    font-size: .92rem;
    color: #8892a4;
    margin-bottom: 10px;
    line-height: 1.7;
}
.policy-content ul { padding-left: 20px; list-style: disc; }
.policy-content .warning-box {
    background: rgba(239,68,68,.05);
    border: 1px solid rgba(239,68,68,.15);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
    color: #f87171;
    font-size: .9rem;
}
.policy-content .info-box {
    background: rgba(245,158,11,.04);
    border: 1px solid rgba(245,158,11,.12);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: .9rem;
}
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.support-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 20px;
}
.support-card__title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.support-card__desc { font-size: .85rem; color: #8892a4; margin-bottom: 8px; }
.support-card__contact { font-weight: 600; color: #f59e0b; }

/* === AGE GATE === */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11,15,25,.97);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.age-gate.hidden { display: none; }
.age-gate__box {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 440px;
    text-align: center;
}
.age-gate__icon { font-size: 3rem; margin-bottom: 16px; }
.age-gate__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.age-gate__text {
    font-size: .92rem;
    color: #8892a4;
    margin-bottom: 24px;
    line-height: 1.6;
}
.age-gate__buttons { display: flex; gap: 12px; justify-content: center; }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(30,41,59,.97);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    backdrop-filter: blur(10px);
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text { font-size: .85rem; color: #94a3b8; flex: 1; }
.cookie-banner__text strong { color: #e2e8f0; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0f1525;
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 4px;
        transition: right .3s;
        border-left: 1px solid rgba(255,255,255,.06);
        z-index: 200;
    }
    .header__nav.open { right: 0; }
    .header__burger { display: flex; z-index: 201; }
    .header__nav-link { width: 100%; padding: 12px 16px; }
    .hero { padding: 60px 0 40px; }
    .buy-layout { grid-template-columns: 1fr; }
    .cart { position: static; }
    .picker__grid { grid-template-columns: repeat(7, 1fr); }
    .cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .picker__grid { grid-template-columns: repeat(5, 1fr); }
    .age-gate__box { padding: 32px 24px; }
    .form-card { padding: 28px 20px; }
}


/* === BACKGROUND PATTERNS (lottery themed) === */
.hero {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='8' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3Ctext x='27' y='34' fill='rgba(255,255,255,.03)' font-size='10'%3E%24%3C/text%3E%3C/svg%3E"),
        linear-gradient(180deg, rgba(11,15,25,0) 0%, rgba(11,15,25,.8) 100%);
    background-size: 60px 60px, 100% 100%;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ctext x='20' y='40' fill='rgba(255,255,255,.02)' font-size='30' transform='rotate(-15 100 100)'%3E%F0%9F%8E%B0%3C/text%3E%3Ctext x='120' y='90' fill='rgba(255,255,255,.02)' font-size='25' transform='rotate(10 100 100)'%3E%F0%9F%8E%AF%3C/text%3E%3Ctext x='50' y='150' fill='rgba(255,255,255,.02)' font-size='28' transform='rotate(-5 100 100)'%3E%F0%9F%8D%80%3C/text%3E%3Ctext x='140' y='170' fill='rgba(255,255,255,.02)' font-size='22'%3E%E2%AD%90%3C/text%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.section--alt {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='20' y='20' width='60' height='60' rx='12' fill='none' stroke='rgba(255,255,255,.02)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

/* === WINNERS SECTION === */
.section--winners { background: rgba(245,158,11,.03); border-top: 1px solid rgba(245,158,11,.06); border-bottom: 1px solid rgba(245,158,11,.06); }
.winners__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 32px; }
.winner-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.winner-card__amount { font-size: 1.75rem; font-weight: 800; color: #f59e0b; margin-bottom: 4px; }
.winner-card__game { font-size: .875rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.winner-card__info { font-size: .8rem; color: #64748b; }

/* === STATS SECTION === */
.section--stats { background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(245,158,11,.02)); padding: 48px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-card { text-align: center; padding: 20px; }
.stat-card__number { font-size: 2.25rem; font-weight: 800; color: #fff; }
.stat-card__label { font-size: .85rem; color: #94a3b8; margin-top: 4px; }

/* === DRAW RESULTS === */
.results__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.result-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.result-card__title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.result-card__date { font-size: .8rem; color: #64748b; margin-bottom: 16px; }
.result-card__numbers { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.result-ball {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b0f19;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
}
.result-ball--bonus { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.result-card__jackpot { font-size: .9rem; color: #94a3b8; }
.result-card__jackpot strong { color: #f59e0b; }

/* === TRUST SECTION === */
.section--trust {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect x='10' y='10' width='60' height='60' rx='8' fill='none' stroke='rgba(255,255,255,.02)' stroke-width='1'/%3E%3Cline x1='40' y1='25' x2='40' y2='55' stroke='rgba(255,255,255,.015)' stroke-width='1'/%3E%3Cline x1='25' y1='40' x2='55' y2='40' stroke='rgba(255,255,255,.015)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.trust-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.trust-item__icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.trust-item p { font-size: .85rem; color: #94a3b8; line-height: 1.6; }

/* === UPDATED FOOTER — real logos === */
.footer__orgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer__org {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    transition: border-color .2s, transform .2s;
}
.footer__org:hover { border-color: rgba(245,158,11,.3); transform: translateY(-2px); }
.footer__org svg { display: block; height: 36px; width: auto; }
.footer__age-ban { color: #ef4444; font-size: .82rem; margin-top: 10px; }
.footer__disclaimer-helpline { font-weight: 500; color: #94a3b8; margin-bottom: 8px; font-size: .85rem; }
.footer__disclaimer-helpline strong { color: #f87171; }
.footer__disclaimer-helpline a { color: #f87171; }

/* remove old icon styles */
.footer__org-icon { display: none; }
