:root {
    --bg-main: #050816;
    --bg-elevated: rgba(15, 23, 42, 0.96);
    --bg-muted: rgba(15, 23, 42, 0.9);
    --bg-soft: rgba(148, 163, 184, 0.08);
    --accent: #facc15;
    --accent-soft: rgba(250, 204, 21, 0.18);
    --accent-strong: #fde047;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --text-main: #e5e7eb;
    --text-soft: #9ca3af;
    --text-faint: #6b7280;
    --danger: #f97373;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.7);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --spacing-section-y: clamp(3rem, 4vw, 4.5rem);
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text-main);
    background:
        radial-gradient(circle at 0% 0%, #1f2937 0, #020617 40%, #000 100%),
        radial-gradient(circle at 100% 100%, #1e293b 0, #020617 45%, #000 100%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.shell {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.section {
    padding-block: var(--spacing-section-y);
}

.section-dark {
    background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.04), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(248, 250, 252, 0.04), transparent 55%);
    position: relative;
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(250, 204, 21, 0.08), transparent 55%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.section-muted {
    background: rgba(15, 23, 42, 0.75);
    position: relative;
}

.section-muted::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(148, 163, 184, 0.15) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.12;
    pointer-events: none;
}

.section-inner {
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.section-header p {
    margin: 0;
    color: var(--text-soft);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.75rem;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 2px solid rgba(250, 204, 21, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: radial-gradient(circle at 30% 0%, #facc15, #a855f7 60%, #0f172a 100%);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1rem;
    font-weight: 600;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-soft);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.main-nav a {
    color: var(--text-soft);
    text-decoration: none;
    position: relative;
    padding-block: 0.25rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #facc15, #a855f7);
    transition: width 0.2s ease-out;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #f9fafb;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(2px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    transform: translateY(-2px) rotate(-45deg);
}

/* HERO */
.hero {
    position: relative;
    padding-block: clamp(3rem, 8vw, 4.5rem);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.12), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.13), transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(34, 197, 235, 0.14), transparent 55%);
    opacity: 0.9;
    filter: blur(10px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(250, 204, 21, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: 0 0 0.9rem;
}

.hero-lead {
    margin: 0 0 1.4rem;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: radial-gradient(circle at 0 0, #facc15, #a855f7 70%);
    color: #111827;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
    border-color: rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(249, 250, 251, 0.9);
}

.hero-meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-faint);
}

.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hero-pill {
    border-radius: var(--radius-lg);
    backdrop-filter: blur(22px);
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem 1.4rem;
}

.hero-pill-main {
    border-color: rgba(250, 204, 21, 0.6);
    background: radial-gradient(circle at 10% 0%, rgba(250, 204, 21, 0.16), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.25), transparent 55%),
                rgba(15, 23, 42, 0.96);
}

.pill-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin-bottom: 0.3rem;
}

.pill-value {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

.pill-value span {
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--text-soft);
}

.hero-pill-secondary {
    padding: 1.1rem 1.1rem 1.2rem;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.pill-stat-label {
    font-size: 0.75rem;
    color: var(--text-soft);
}

.pill-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.pill-stat-note {
    font-size: 0.75rem;
    color: var(--text-faint);
}

.hero-footnote {
    margin-top: 1.8rem;
    font-size: 0.75rem;
    color: var(--text-faint);
}

/* GRID BASICS */
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.8rem;
}

.card {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0.2rem 0 0.5rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.card-muted {
    background: rgba(15, 23, 42, 0.96);
}

.card-highlight {
    border-color: rgba(250, 204, 21, 0.6);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
}

.icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
    font-size: 0.93rem;
}

.icon-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: flex-start;
}

.icon-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #facc15, #a855f7 80%);
    margin-top: 0.25rem;
}

.key-facts {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
    font-size: 0.93rem;
}

.key-facts div {
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
}

.key-facts div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.key-facts dt {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.key-facts dd {
    margin: 0;
    color: var(--text-soft);
}

/* PROMOTIONS */
.promotions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 1.6rem;
    align-items: flex-start;
}

.promo-card {
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.94));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(234, 179, 8, 0.5);
}

.promo-card h3 {
    font-size: 1.1rem;
}

.promo-tag {
    font-size: 0.8rem;
    color: var(--accent-strong);
    margin-top: 0.1rem;
    margin-bottom: 0.6rem;
}

.bullet-list {
    margin: 0.4rem 0 0.6rem;
    padding-left: 1.1rem;
    font-size: 0.93rem;
    color: var(--text-soft);
}

.bullet-list li + li {
    margin-top: 0.35rem;
}

.promo-note {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: 0.7rem;
}

.promo-card-narrow {
    border-style: dashed;
    background: rgba(15, 23, 42, 0.8);
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.step {
    position: relative;
    padding-top: 1.6rem;
}

.step-number {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.18);
}

.step h3 {
    margin-bottom: 0.3rem;
}

/* BANKING */
.banking-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
}

.banking-card {
    background: rgba(15, 23, 42, 0.95);
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.9);
}

/* RETAIL */
.retail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.retail-location {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-bottom: 0.6rem;
}

/* SPORTS & MARKETS */
.sports-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
    gap: 1.4rem;
}

.sports-card {
    background: rgba(15, 23, 42, 0.95);
}

.pill-list {
    margin: 0.4rem 0 0.4rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
}

.pill-list li {
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    font-size: 0.8rem;
}

/* REQUIREMENTS */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.requirement-card {
    background: rgba(15, 23, 42, 0.95);
}

/* RESPONSIBLE GAMBLING */
.rg-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 1.05fr);
    gap: 1.3rem;
}

.rg-card {
    background: rgba(15, 23, 42, 0.96);
}

.rg-card-warning {
    border-color: rgba(248, 113, 113, 0.7);
    background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.16), transparent 60%),
                rgba(15, 23, 42, 0.96);
}

.rg-note {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: 0.7rem;
}

.rg-card a {
    color: var(--accent-strong);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.rg-card a:hover {
    color: #fefce8;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.92);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: 0.93rem;
}

.faq-question span:first-child {
    padding-right: 1.3rem;
}

.faq-toggle-icon {
    font-size: 1.1rem;
    color: var(--text-soft);
    transition: transform 0.16s ease-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-inline: 1.1rem;
    background: rgba(15, 23, 42, 0.96);
    transition: max-height 0.2s ease-out, padding-bottom 0.18s ease-out;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0.3rem 0 0.9rem;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
    padding-bottom: 0.5rem;
}

.faq-item.is-open .faq-toggle-icon {
    transform: rotate(45deg);
}

/* FOOTER */
.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.08), transparent 55%),
                rgba(15, 23, 42, 0.98);
    padding-block: 1.8rem 2.2rem;
    font-size: 0.82rem;
}

.footer-main {
    margin-bottom: 1rem;
}

.footer-brand {
    font-weight: 600;
    margin: 0 0 0.4rem;
}

.footer-text {
    margin: 0.2rem 0;
    color: var(--text-soft);
}

.footer-meta {
    color: var(--text-faint);
}

.footer a {
    color: var(--accent-strong);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.footer a:hover {
    color: #fefce8;
}

.footer-inner a {
    color: var(--accent-strong);
}

/* RESPONSIVENESS */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    }

    .promotions-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
    }

    .rg-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .retail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding-block: 0.6rem;
    }

    .main-nav {
        position: fixed;
        inset-inline: 1rem;
        top: 3.3rem;
        border-radius: var(--radius-lg);
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.6);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.6rem 0.9rem 0.8rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-header.is-open .main-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-aside {
        order: -1;
    }

    .hero-pill-main {
        margin-bottom: 0.5rem;
    }

    .split-grid,
    .promotions-grid,
    .steps-grid,
    .banking-grid,
    .features-grid,
    .retail-grid,
    .sports-layout,
    .requirements-grid,
    .rg-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .card {
        padding: 1.1rem 1.1rem;
    }
}

@media (max-width: 520px) {
    .shell {
        padding-inline: 1.1rem;
    }

    .hero {
        padding-block: 2.4rem 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}
