:root {
    --bg: #f4efe4;
    --bg-strong: #092f2d;
    --bg-soft: #f8f3e8;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-strong: #ffffff;
    --text: #15312f;
    --muted: #42534f;
    --accent: #d96d27;
    --accent-deep: #8f3909;
    --accent-soft: #f4b37d;
    --emerald: #0e7b68;
    --gold: #b88a17;
    --danger: #8d1a1a;
    --line: rgba(21, 49, 47, 0.12);
    --shadow: 0 24px 60px rgba(7, 31, 29, 0.14);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(218, 109, 39, 0.18), transparent 28%),
        radial-gradient(circle at 90% 15%, rgba(14, 123, 104, 0.18), transparent 24%),
        linear-gradient(180deg, #fcf7ee 0%, #f4efe4 30%, #efe6d7 100%);
    color: var(--text);
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    line-height: 1.6;
    min-width: 320px;
}

[hidden] {
    display: none !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 70%);
    opacity: 0.35;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

main,
section,
footer {
    position: relative;
    z-index: 1;
}

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

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Baskerville", "Palatino Linotype", serif;
    line-height: 1.08;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #d96d27, #b44d13);
    color: #fff;
    box-shadow: 0 16px 30px rgba(180, 77, 19, 0.22);
}

.btn-secondary,
.btn-ghost {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(21, 49, 47, 0.14);
    color: var(--text);
}

.btn-lg {
    min-height: 54px;
    padding: 0 26px;
}

.inline-link {
    color: var(--emerald);
    font-weight: 700;
}

.topline {
    background: var(--bg-strong);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.topline__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.topline a {
    color: #f7d998;
    font-weight: 700;
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(252, 247, 238, 0.86);
    border-bottom: 1px solid var(--line);
}

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

.brandmark {
    display: inline-flex;
    align-items: center;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.header-cta {
    display: flex;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 999px;
}

.hero-section {
    padding: 38px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.payment-section,
.activity-section .container,
.jackpot-section,
.lobby-section,
.providers-section,
.rewards-section,
.crypto-section,
.seo-section,
.faq-section,
.site-footer {
    position: relative;
}

.hero-copy {
    padding: 34px;
    border: 1px solid rgba(21, 49, 47, 0.1);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 88% 20%, rgba(217, 109, 39, 0.22), transparent 24%),
        radial-gradient(circle at 76% 75%, rgba(14, 123, 104, 0.18), transparent 22%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.78));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.18) 100%);
    z-index: -1;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.hero-lead {
    max-width: 60ch;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-footnote {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 58ch;
}

.compliance-chip {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(11, 61, 55, 0.08);
    color: var(--bg-strong);
    font-weight: 700;
}

.compliance-chip a {
    color: var(--emerald);
}

.hero-panel {
    display: grid;
    gap: 16px;
}

.panel-card,
.trust-card,
.note-banner,
.game-card,
.stack-card,
.crypto-card,
.details-panel,
.faq-item,
.footer-alert,
.support-drawer,
.demo-modal__panel,
.page-hero,
.page-card,
.toast-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 49, 47, 0.1);
    box-shadow: var(--shadow);
}

.panel-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.panel-card--signal {
    background: linear-gradient(145deg, rgba(9, 47, 45, 0.96), rgba(14, 123, 104, 0.88));
    color: rgba(255, 255, 255, 0.92);
}

.panel-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

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

.trust-card {
    min-height: 170px;
    padding: 18px;
    border-radius: var(--radius-lg);
}

.trust-card__icon {
    font-size: 1.6rem;
}

.trust-card h2 {
    margin-top: 12px;
    font-size: 1.3rem;
}

.trust-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.96rem;
}

.payment-section,
.lobby-section,
.providers-section,
.rewards-section,
.crypto-section,
.seo-section,
.faq-section {
    padding: 20px 0;
}

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

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading--row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
}

.section-meta {
    max-width: 28ch;
    color: var(--muted);
    font-weight: 600;
}

.payment-strip,
.provider-marquee,
.coin-row,
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-strip span,
.provider-marquee span,
.coin-row span,
.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 49, 47, 0.1);
    font-weight: 700;
    color: var(--text);
}

.note-banner {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
}

.activity-section {
    padding: 18px 0;
}

.ticker-shell {
    overflow: hidden;
    border-top: 1px solid rgba(21, 49, 47, 0.08);
    border-bottom: 1px solid rgba(21, 49, 47, 0.08);
    background: rgba(9, 47, 45, 0.92);
}

.ticker-track {
    display: inline-flex;
    gap: 46px;
    padding: 16px 0 16px 100%;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
    color: rgba(255, 255, 255, 0.88);
}

.ticker-item strong {
    color: #f7cf77;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.microcopy {
    padding: 10px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.jackpot-section {
    padding: 20px 0;
}

.jackpot-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
    padding: 24px 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(140deg, rgba(9, 47, 45, 0.94), rgba(42, 24, 10, 0.92));
    color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.jackpot-shell h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.jackpot-shell p {
    margin-top: 14px;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.88);
}

.jackpot-panel {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.jackpot-amount {
    font-family: "Baskerville", "Palatino Linotype", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffd786;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-chip {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(21, 49, 47, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-weight: 700;
}

.filter-chip.is-active {
    background: var(--emerald);
    border-color: var(--emerald);
    color: #fff;
}

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

.game-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.game-card.is-hidden {
    display: none;
}

.game-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 61, 55, 0.3), rgba(217, 109, 39, 0.2));
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-thumb--text {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #103f39, #0e7b68);
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}

.game-thumb--red {
    background: linear-gradient(135deg, #7f2316, #c95b18);
}

.game-info {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-badge,
.card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.provider-badge {
    background: rgba(14, 123, 104, 0.12);
    color: var(--emerald);
}

.provider-badge--aussie {
    background: rgba(184, 138, 23, 0.12);
    color: var(--gold);
}

.card-tag {
    background: rgba(217, 109, 39, 0.12);
    color: var(--accent-deep);
}

.game-info h3 {
    font-size: 1.4rem;
}

.game-info p {
    color: var(--muted);
    font-weight: 600;
}

.game-info p span {
    color: rgba(21, 49, 47, 0.28);
    padding: 0 4px;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.providers-section .provider-marquee {
    padding: 0;
}

.providers-section .provider-marquee span {
    background: rgba(9, 47, 45, 0.94);
    color: rgba(255, 255, 255, 0.9);
    border: none;
}

.rewards-grid,
.crypto-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px;
}

.reward-machine,
.reward-stack,
.crypto-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(21, 49, 47, 0.1);
    box-shadow: var(--shadow);
}

.reward-machine {
    background:
        radial-gradient(circle at 85% 20%, rgba(217, 109, 39, 0.22), transparent 25%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 232, 0.9));
}

.reward-machine h2,
.crypto-grid h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.reward-machine p,
.crypto-grid p {
    margin-top: 14px;
    color: var(--muted);
}

.reward-picks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.reward-picks div,
.countdown-card {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(11, 61, 55, 0.05);
    border: 1px solid rgba(21, 49, 47, 0.08);
}

.reward-picks span,
.countdown-card p,
.countdown-card span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.reward-picks strong,
.countdown-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
}

.countdown-card {
    margin-top: 18px;
}

.countdown-card strong {
    color: var(--accent-deep);
    font-size: 2rem;
}

.reward-stack {
    display: grid;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.stack-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.stack-card h3 {
    font-size: 1.5rem;
}

.stack-card p {
    margin-top: 12px;
    color: var(--muted);
}

.tier-list li,
.meta-list li,
.resource-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.tier-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.tier-list li {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(21, 49, 47, 0.08);
}

.check-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.check-list li {
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--emerald);
    font-weight: 800;
}

.guide-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.guide-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(11, 61, 55, 0.08);
    color: var(--bg-strong);
    font-weight: 700;
}

.details-panel {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.details-panel summary {
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.details-panel summary::-webkit-details-marker {
    display: none;
}

.details-body {
    display: grid;
    gap: 18px;
    padding: 0 28px 28px;
}

.details-body p {
    color: var(--muted);
}

.details-body a {
    color: var(--emerald);
    font-weight: 700;
}

.comparison-table {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(21, 49, 47, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: rgba(255, 255, 255, 0.92);
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid rgba(21, 49, 47, 0.08);
    text-align: left;
    vertical-align: top;
}

th {
    background: rgba(11, 61, 55, 0.92);
    color: #fff;
}

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

.author-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(247, 242, 232, 0.92);
    border: 1px solid rgba(21, 49, 47, 0.08);
}

.author-card p {
    color: var(--muted);
}

.meta-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    border: none;
    background: transparent;
    text-align: left;
    font-weight: 800;
    color: var(--text);
}

.faq-question span:last-child {
    color: var(--accent-deep);
    font-size: 1.3rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--muted);
    transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
    padding-bottom: 18px;
}

.site-footer {
    padding: 24px 0 120px;
}

.footer-alert {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius-xl);
    margin-bottom: 22px;
}

.footer-alert h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--danger);
}

.footer-alert p:last-child {
    margin-top: 14px;
    color: var(--muted);
}

.resource-list {
    display: grid;
    gap: 14px;
}

.resource-list li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(21, 49, 47, 0.08);
    align-items: start;
    color: var(--muted);
}

.resource-list strong {
    color: var(--text);
}

.resource-list a {
    color: var(--emerald);
    font-weight: 700;
    justify-self: end;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px;
    padding: 30px 0;
}

.footer-grid h3 {
    font-size: 1.3rem;
}

.footer-grid p,
.footer-grid li {
    margin-top: 12px;
    color: var(--muted);
}

.footer-grid a:hover,
.inline-link:hover {
    color: var(--accent-deep);
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(21, 49, 47, 0.08);
}

.footer-bottom p {
    margin-top: 12px;
    color: var(--muted);
}

.demo-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(6, 22, 21, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 40;
    padding: 16px;
}

.demo-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.demo-modal__panel {
    width: min(560px, 100%);
    padding: 28px;
    border-radius: var(--radius-xl);
}

.modal-close,
.support-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(11, 61, 55, 0.08);
    color: var(--text);
    font-size: 1.8rem;
    line-height: 1;
}

.demo-modal__panel,
.support-drawer {
    position: relative;
}

.modal-provider,
.modal-stats {
    margin-top: 14px;
    color: var(--muted);
}

.modal-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-stats span {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(11, 61, 55, 0.08);
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.support-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    padding: 24px;
    transform: translateX(105%);
    transition: transform 220ms ease;
    z-index: 45;
    border-radius: 0;
    overflow-y: auto;
}

.support-drawer.is-open {
    transform: translateX(0);
}

.support-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.support-drawer__header h2 {
    font-size: 2rem;
}

.support-drawer__body {
    margin-top: 22px;
}

.support-links {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.support-links a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    background: rgba(11, 61, 55, 0.08);
    font-weight: 700;
}

.toast-card {
    position: fixed;
    left: 18px;
    bottom: 96px;
    z-index: 35;
    display: grid;
    gap: 6px;
    max-width: 320px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    transform: translateX(-120%);
    transition: transform 240ms ease;
}

.toast-card.is-visible {
    transform: translateX(0);
}

.toast-card__eyebrow {
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-bar,
.install-prompt {
    display: none;
}

.page-hero {
    padding: 34px;
    border-radius: var(--radius-xl);
    margin: 34px auto 22px;
}

.page-hero p {
    margin-top: 14px;
    color: var(--muted);
    max-width: 60ch;
}

.page-layout {
    padding-bottom: 120px;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 22px;
}

.page-card {
    padding: 26px;
    border-radius: var(--radius-xl);
    margin-bottom: 22px;
}

.page-card h2 {
    font-size: 2rem;
}

.page-card p,
.page-card li {
    margin-top: 12px;
    color: var(--muted);
}

.page-card ul {
    list-style: disc;
    padding-left: 20px;
}

.callout {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(11, 61, 55, 0.06);
    border: 1px solid rgba(21, 49, 47, 0.08);
}

.link-grid {
    display: grid;
    gap: 12px;
}

.link-grid a {
    display: block;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(21, 49, 47, 0.08);
    font-weight: 700;
}

.legal-grid {
    display: grid;
    gap: 16px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.stat-grid div {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(11, 61, 55, 0.06);
}

.stat-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.stat-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 1.5rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .rewards-grid,
    .crypto-grid,
    .footer-alert,
    .page-grid,
    .jackpot-shell {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 820px) {
    .topline__inner,
    .section-heading--row,
    .header-shell {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .header-shell {
        gap: 14px;
    }

    .menu-toggle {
        display: block;
        align-self: flex-end;
        order: 2;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .site-nav.is-open,
    .header-cta.is-open {
        display: grid;
        gap: 12px;
    }

    .trust-grid,
    .author-wrap,
    .reward-picks,
    .stat-grid {
        grid-template-columns: 1fr;
    }

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

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

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 38;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(9, 47, 45, 0.96);
        backdrop-filter: blur(18px);
    }

    .mobile-bar a,
    .mobile-bar button {
        min-height: 52px;
        border-radius: 14px;
        border: none;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-weight: 700;
    }

    .install-prompt {
        position: fixed;
        right: 14px;
        bottom: 84px;
        z-index: 39;
        display: inline-flex;
        align-items: center;
        min-height: 46px;
        padding: 0 16px;
        border: none;
        border-radius: 999px;
        background: var(--accent-deep);
        color: #fff;
        box-shadow: 0 12px 24px rgba(180, 77, 19, 0.24);
    }

    .site-footer,
    .page-layout {
        padding-bottom: 150px;
    }

    .toast-card {
        left: 10px;
        right: 10px;
        bottom: 156px;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .hero-copy,
    .reward-machine,
    .crypto-card,
    .page-hero,
    .page-card,
    .footer-alert,
    .details-body,
    .details-panel summary,
    .support-drawer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-copy h1 {
        font-size: 2.55rem;
    }

    .section-heading h2,
    .reward-machine h2,
    .crypto-grid h2,
    .footer-alert h2 {
        font-size: 2rem;
    }
}
.brandmark img {
    width: 150px;
    height: auto;
}
