/* canadalottogame.com - Minimal, clean CSS (no frameworks) */
:root {
    --bg: #0b0b0f;
    --panel: rgba(20, 20, 25, 0.65);
    --panel2: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.75);
    --muted2: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.15);
    --shadow: 0 18px 35px rgba(0, 0, 0, .35);
    --accent: #e31237;
    --accent2: #ff355e;
    --darkBtn: #000000;
    --radius: 18px;
    --radius2: 22px;
    --container: 1150px;
}

* {
    box-sizing: border-box;
}
html {

}
html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.45;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 14px;
}

h1, h2, h3 {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: .2px;
}

h1 {
    font-size: clamp(28px, 4vw, 54px);
}

h2 {
    font-size: clamp(22px, 2.4vw, 36px);
}

h3 {
    font-size: clamp(18px, 2vw, 26px);
}

.lead {
    font-size: 18px;
    color: var(--muted);
}

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

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.age-strip {
    background: rgba(0, 0, 0, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
}

.age-strip strong {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    margin-right: 8px;
}

.age-strip-dark {
    background: rgba(10, 10, 14, .9);
}

.bg-hero {
    background: radial-gradient(1200px 800px at 12% 24%, rgba(255, 255, 255, .12), transparent 60%),
    radial-gradient(1000px 700px at 85% 70%, rgba(255, 255, 255, .08), transparent 65%),
    radial-gradient(900px 500px at 45% 55%, rgba(0, 0, 0, .65), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .85)),
    var(--bg);
    position: relative;
    overflow: hidden;
}

.bg-hero::before {
    content: "";
    position: absolute;
    inset: -120px -120px -120px -120px;
    background: linear-gradient(0deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .20) 0, rgba(255, 255, 255, .20) 2px, transparent 2px, transparent 38px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .20) 0, rgba(255, 255, 255, .20) 2px, transparent 2px, transparent 38px);
    opacity: .12;
    transform: rotate(13deg) skewX(-8deg);
    pointer-events: none;
    filter: blur(0.2px);
}

.bg-dark {
    background: radial-gradient(1000px 700px at 12% 25%, rgba(255, 255, 255, .08), transparent 60%),
    radial-gradient(900px 650px at 90% 65%, rgba(255, 255, 255, .06), transparent 64%),
    linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .9)),
    var(--bg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 20, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .25), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
    font-size: 18px;
}

.brand-mark img {
    width: 100%;
}

.brand-name {
    font-weight: 900;
    letter-spacing: .6px;
    font-size: 14px;
    opacity: .95;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.nav-link {
    padding: 8px 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .88);
    opacity: .95;
}

.nav-link[aria-current="page"] {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .45);
    text-underline-offset: 6px;
}

.header-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
    font-weight: 800;
    letter-spacing: .3px;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--accent);
    border-color: rgba(255, 255, 255, .12);
    color: #ffffff
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .22);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .07);
}

.btn-dark {
    color: #ffffff;
    background: var(--darkBtn);
    border-color: rgba(255, 255, 255, .14);
}

.btn-dark:hover {
    background: rgba(0, 0, 0, .82);
}

.btn-lg {
    padding: 14px 22px;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

.burger {
    display: none;
    width: 44px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
    padding: 7px 10px
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .95);
    border-radius: 2px;
}

.mobile-nav {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(10, 10, 14, .9);
}

.mobile-nav-inner {
    display: grid;
    gap: 12px;
    padding: 14px 0 18px;
}

.mobile-actions {
    display: grid;
    gap: 10px;
}

.w-100 {
    width: 100%;
}

.hero {
    padding: 64px 0 34px;
    position: relative;
}

.hero-inner {
    display: grid;
    place-items: center;
    min-height: 520px;
}

.hero-content {
    text-align: center;
    max-width: 820px;
}

.hero-content h1 {
    color: var(--accent);
    text-shadow: 0 12px 35px rgba(0, 0, 0, .55);
}

.hero-subtitle {
    margin-top: 10px;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
}

.countdown {
    margin: 22px auto 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .14);
}

.time-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 12px;
    padding: 12px 10px;
}

.num {
    font-weight: 900;
    font-size: 26px;
}

.lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
}

.hero-scroll {
    margin-top: 38px;
    font-size: 24px;
    opacity: .8;
}

.section {
    padding: 56px 0;
}

.section-light {
    background: #ffffff;
    color: #111;
}

.section-dark {
    background: rgba(0, 0, 0, .48);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.section-head {
    margin-bottom: 22px;
}

.section-head h2 {
    color: var(--accent);
}

.section-head p {
    color: rgba(0, 0, 0, .7);
    max-width: 820px;
}

.boxed {
    border: 2px solid var(--accent);
    border-radius: 4px;
    padding: 22px 22px 18px;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.bundle-card {
    border: 2px solid rgba(0, 0, 0, .15);
    border-top: 4px solid var(--accent);
    border-radius: 4px;
    padding: 26px 22px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
    text-align: center;
}

.bundle-chip {
    margin: 14px auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid rgba(227, 18, 55, .55);
    border-radius: 6px;
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.bundle-note {
    margin-bottom: 18px;
    color: rgba(0, 0, 0, .6);
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

.info-card p {
    color: rgba(255, 255, 255, .78);
}

.link {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .35);
    text-underline-offset: 4px;
}

.page {
    padding: 26px 0 40px;
}

.form-hero {
    padding: 34px 0 60px;
}

.form-wrap {
    width: min(820px, 100%);
    margin: 0 auto;
    text-align: center;
}

.form-wrap h1 {
    color: rgba(255, 255, 255, .95);
    margin-bottom: 18px;
}

.form {
    margin: 0 auto;
    width: min(720px, 100%);
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
    text-align: left;
}

.field span {
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
}

.field input, .field textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: #111;
    font-size: 16px;
    outline: none;
}

.field textarea {
    resize: vertical;
}

.hint {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    text-align: center;
}

.form-wrap-wide {
    width: min(980px, 100%);
}

.contact-form {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 22px;
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}

.contact-form .field input, .contact-form .field textarea {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .10);
}

.contact-form .two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-meta {
    margin-top: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, .88);
}

.page-legal {
    padding: 18px 0 60px;
}

.legal-card {
    background: rgba(0, 0, 0, .52);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius2);
    padding: 26px 24px;
    box-shadow: var(--shadow);
}

.legal-card h1 {
    margin-bottom: 14px;
}

.legal-card h2 {
    margin-top: 18px;
    color: var(--accent);
}

.legal-card ul {
    margin: 8px 0 14px 18px;
}

.legal-card li {
    margin: 6px 0;
    color: rgba(255, 255, 255, .82);
}

.site-footer {
    background: rgba(0, 0, 0, .75);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 44px 0 34px;
}

.footer-inner {
    display: grid;
    gap: 18px;
}

.footer-top {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
}

.age-badge {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .85);
    font-weight: 900;
  font-size: 18px;
}

.footer-copy h3 {
    font-size: 34px;
    margin: 0 0 6px;
}

.footer-copy p {
    color: rgba(255, 255, 255, .78);
    max-width: 980px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    justify-content: center;
    padding: 8px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255, 255, 255, .35);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.meta-title {
    font-weight: 900;
    margin-bottom: 6px;
}

.meta-line {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .86);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .35);
    max-width: min(520px, calc(100% - 28px));
    text-align: center;
    z-index: 99;
}

.logo-help {
  display: flex;
  margin: 15px 0;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-help a {
  height: 60px;
}
.logo-help a img {
  height: 100%;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .nav, .header-actions {
        display: none;
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
        flex-wrap: wrap;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-form .two-col {
        grid-template-columns: 1fr;
    }

    .boxed {
        padding: 18px 16px 14px;
    }
}
