/* =====================================================
   sweepstakes-casino-australia.com
   Theme: Outback Dusk — Dark Navy + Amber/Gold
   Fonts: Syne (headings) + DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
    --navy: #0b1629;
    --navy-mid: #132040;
    --navy-light: #1e2e4f;
    --amber: #f59e0b;
    --amber-light: #fde68a;
    --amber-dark: #d97706;
    --gold: #fbbf24;
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --coral: #f97316;
    --ruby: #e11d48;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --muted: rgba(255, 255, 255, .45);
    --muted-dark: rgba(255, 255, 255, .18);
    --border: rgba(255, 255, 255, .1);
    --border-amber: rgba(245, 158, 11, .25);

    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-w: 1200px;
    --radius: 10px;
    --radius-lg: 18px;

    --shadow-amber: 0 4px 24px rgba(245, 158, 11, .18);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, .35);
    --shadow-glow: 0 0 32px rgba(245, 158, 11, .12);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: var(--amber);
    text-decoration: none;
    transition: color .15s;
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    padding: .5rem 1rem;
    border-radius: 4px;
    z-index: 999;
}

.skip-link:focus {
    left: 1rem;
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 22, 41, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-amber);
}

.header-wrap {
    display: flex;
    align-items: center;
    height: 66px;
    gap: 1rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: var(--amber);
    letter-spacing: -.3px;
}

.logo-sub {
    font-size: .65rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* Desktop nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    padding: .4rem .7rem;
    border-radius: 6px;
    text-decoration: none;
    transition: color .15s, background .15s;
}

.main-nav a:hover {
    color: var(--amber);
    background: rgba(245, 158, 11, .08);
}

/* CTA button */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(135deg, var(--amber), var(--coral));
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    padding: .5rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
    min-height: 40px;
}

.btn-play:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: var(--navy);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding: 4px;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* Mobile nav */
.mob-nav {
    display: none;
    flex-direction: column;
    background: var(--navy-mid);
    border-top: 1px solid var(--border-amber);
    padding: .75rem 1.5rem 1rem;
    gap: 0;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    display: block;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
    font-size: .9rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: color .15s;
}

.mob-nav a:last-child {
    border-bottom: none;
}

.mob-nav a:hover {
    color: var(--amber);
}

.mob-nav .mob-cta {
    margin-top: .75rem;
    background: linear-gradient(135deg, var(--amber), var(--coral));
    color: var(--navy) !important;
    border: none;
    border-radius: 50px;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    padding: .7rem 1rem !important;
}

.mob-tracker {
    display: flex;
    justify-content: center;
    padding: .3rem 0 0;
}

/* ─── HERO — SPLIT LAYOUT ─── */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
}

.hero-content {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 4rem 3rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    width: 60px;
    background: inherit;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(245, 158, 11, .12);
    border: 1px solid var(--border-amber);
    color: var(--amber);
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: .3rem .75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.hero-h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -.5px;
}

.hero-h1 em {
    color: var(--amber);
    font-style: normal;
}

.hero-lead {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    max-width: 420px;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Trust pills in hero */
.trust-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .3rem .75rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    font-family: var(--font-body);
}

/* ─── SECTION UTILITIES ─── */
.sec {
    padding: 5rem 0;
}

.sec-dark {
    background: var(--navy);
}

.sec-mid {
    background: var(--navy-mid);
}

.sec-light {
    background: var(--navy-light);
}

.sec-label {
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amber);
    margin-bottom: .6rem;
}

.sec-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    line-height: 1.18;
    margin-bottom: .75rem;
    letter-spacing: -.3px;
}

.sec-desc {
    color: var(--muted);
    font-size: .95rem;
    max-width: 560px;
    line-height: 1.7;
}

.sec-head {
    margin-bottom: 2.5rem;
}

.sec-head.center {
    text-align: center;
}

.sec-head.center .sec-desc {
    margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    min-height: 44px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-amber);
    color: var(--navy);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    padding: .7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
    min-height: 44px;
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
    padding: .65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s;
    min-height: 44px;
}

.btn-teal:hover {
    background: var(--teal-dark);
    color: #fff;
}

/* ─── CASINO CARDS (horizontal) ─── */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-card {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    transition: border-color .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--amber);
    border-radius: 3px 0 0 3px;
}

.casino-card:hover {
    border-color: var(--border-amber);
    box-shadow: var(--shadow-glow);
}

.casino-rank {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--amber);
    text-align: center;
}

.casino-info {
    min-width: 0;
}

.casino-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: .25rem;
}

.casino-bonus {
    font-size: .82rem;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: .3rem;
}

.casino-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.tag {
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .15rem .5rem;
    border-radius: 4px;
}

.tag-teal {
    background: rgba(20, 184, 166, .15);
    color: var(--teal);
    border: 1px solid rgba(20, 184, 166, .25);
}

.tag-amber {
    background: rgba(245, 158, 11, .12);
    color: var(--amber);
    border: 1px solid var(--border-amber);
}

.tag-coral {
    background: rgba(249, 115, 22, .12);
    color: var(--coral);
    border: 1px solid rgba(249, 115, 22, .25);
}

.casino-score-box {
    text-align: center;
    flex-shrink: 0;
}

.score-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: var(--amber);
    margin: 0 auto .3rem;
}

.score-label {
    font-size: .62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─── FEATURE GRID CARDS ─── */
.feat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feat-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feat-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feat-box {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    transition: transform .2s, border-color .2s;
}

.feat-box:hover {
    transform: translateY(-3px);
    border-color: var(--border-amber);
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feat-box h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: .4rem;
}

.feat-box p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── STAT BLOCKS ─── */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-box {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.stat-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: .3rem;
}

.stat-label {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─── TABLES ─── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
}

caption {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--amber);
    text-align: left;
    padding: .75rem 1rem .5rem;
}

thead th {
    background: var(--navy-mid);
    text-align: left;
    padding: .8rem 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background .15s;
}

tbody tr:hover {
    background: rgba(245, 158, 11, .04);
}

tbody td {
    padding: .85rem 1rem;
    color: rgba(255, 255, 255, .75);
    vertical-align: middle;
}

tbody td:first-child {
    color: var(--white);
    font-weight: 600;
}

.td-green {
    color: #4ade80 !important;
    font-weight: 600;
}

.td-amber {
    color: var(--amber) !important;
    font-weight: 600;
}

.td-red {
    color: #f87171 !important;
}

/* ─── CHART: HORIZONTAL BARS ─── */
.hbar-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

/* .hbar-item — styled via child elements */

.hbar-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: .3rem;
    font-size: .8rem;
}

.hbar-name {
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

.hbar-val {
    color: var(--amber);
    font-weight: 700;
    font-family: var(--font-head);
}

.hbar-track {
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
}

.hbar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--amber-dark), var(--amber));
    width: 0;
    transition: width 1.2s ease;
}

.hbar-fill.teal {
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
}

.hbar-fill.coral {
    background: linear-gradient(90deg, #c2410c, var(--coral));
}

/* ─── CHART: VERTICAL BARS ─── */
.vbar-wrap {
    display: flex;
    align-items: flex-end;
    gap: .6rem;
    height: 180px;
    padding-top: 1rem;
}

.vbar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.vbar-pct {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .6);
}

.vbar-bar {
    width: 100%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-dark) 100%);
    height: 0;
    transition: height 1.1s ease;
}

.vbar-bar.teal {
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.vbar-bar.coral {
    background: linear-gradient(180deg, var(--coral) 0%, #c2410c 100%);
}

.vbar-bar.gold {
    background: linear-gradient(180deg, #fde68a 0%, var(--gold) 100%);
}

.vbar-label {
    font-size: .65rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.2;
}

/* ─── DONUT CHART ─── */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.donut-svg {
    flex-shrink: 0;
}

.donut-track {
    fill: none;
    stroke: rgba(255, 255, 255, .06);
    stroke-width: 10;
}

.donut-arc {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 1.3s ease;
}

.donut-arc-amber {
    stroke: var(--amber);
}

.donut-arc-teal {
    stroke: var(--teal);
}

.donut-arc-coral {
    stroke: var(--coral);
}

.donut-center {
    font-family: var(--font-head);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── TIMELINE ─── */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--amber), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--amber);
    border: 2px solid var(--navy);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .2);
}

.timeline-year {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .3rem;
}

.timeline-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: .3rem;
}

.timeline-desc {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── PAGE BANNER ─── */
.page-banner {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

.page-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 40%;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 22, 41, .92) 40%, rgba(11, 22, 41, .4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: .5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .5);
}

.breadcrumb a:hover {
    color: var(--amber);
}

.breadcrumb span {
    color: var(--amber);
}

/* ─── SEO PROSE ─── */
.seo-2col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.prose h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin: 2rem 0 .65rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--amber);
    margin: 1.25rem 0 .4rem;
}

.prose p {
    font-size: .93rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .9rem;
    line-height: 1.85;
}

.prose a {
    color: var(--amber);
    border-bottom: 1px dashed rgba(245, 158, 11, .4);
}

.prose a:hover {
    border-bottom-color: var(--amber);
}

.prose strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

/* Sidebar boxes */
.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sb {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sb-title {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--amber);
    margin-bottom: .85rem;
}

.sb ul {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.sb li a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .6);
    transition: color .15s;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.sb li a:hover {
    color: var(--amber);
}

.sb-cta {
    background: linear-gradient(135deg, var(--amber-dark), var(--coral));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.sb-cta p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .85);
    margin: .5rem 0 1rem;
}

/* ─── AUTHOR BOX ─── */
.author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--navy-light);
    border: 1px solid var(--border-amber);
    border-left: 4px solid var(--amber);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.author-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--amber);
}

.author-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
}

.author-role {
    font-size: .73rem;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: .35rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.author-bio {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── INFO BOXES ─── */
.info-banner {
    background: rgba(20, 184, 166, .08);
    border: 1px solid rgba(20, 184, 166, .2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.info-banner p {
    font-size: .87rem;
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.info-banner strong {
    color: var(--teal);
}

.warn-banner {
    background: rgba(249, 115, 22, .08);
    border: 1px solid rgba(249, 115, 22, .25);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.warn-banner p {
    font-size: .87rem;
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.warn-banner strong {
    color: var(--coral);
}

/* ─── RATING METER ─── */
.rating-meter {
    margin-bottom: .5rem;
}

.meter-label {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    margin-bottom: .25rem;
}

.meter-name {
    color: rgba(255, 255, 255, .65);
}

.meter-score {
    color: var(--amber);
    font-weight: 700;
}

.meter-bar {
    height: 6px;
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--amber-dark), var(--amber));
    width: 0;
    transition: width 1s ease;
}

/* ─── ACCORDION FAQ ─── */
.accord-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.accord-item {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.accord-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9rem;
    transition: color .15s;
}

.accord-q:hover {
    color: var(--amber);
}

.accord-icon {
    font-size: 1rem;
    color: var(--amber);
    transition: transform .3s;
}

.accord-item.open .accord-icon {
    transform: rotate(45deg);
}

.accord-a {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.75;
}

.accord-item.open .accord-a {
    display: block;
}

/* ─── COMPARISON CARDS ─── */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.compare-card {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.compare-card.highlighted {
    border-color: var(--amber);
    box-shadow: 0 0 0 1px var(--amber);
}

.compare-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: .3rem;
}

.compare-subtitle {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.compare-item {
    font-size: .84rem;
    color: rgba(255, 255, 255, .7);
    padding-left: 1.1rem;
    position: relative;
}

.compare-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.compare-item.neg::before {
    content: '✗';
    color: var(--ruby);
}

/* ─── FOOTER ─── */
.site-footer {
    background: #070e1c;
    border-top: 1px solid var(--border-amber);
    padding: 4rem 0 1.5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem 2.5rem;
}

.footer-brand .logo-name {
    font-size: 1.05rem;
}

.footer-brand p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    margin: .75rem 0 1.25rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .85rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer-col a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .38);
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--amber);
}

.footer-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .05);
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    max-width: var(--max-w);
    margin: 1.25rem auto 0;
    padding: 0 1.5rem;
}

.footer-copy {
    font-size: .7rem;
    color: rgba(255, 255, 255, .25);
}

.footer-disc {
    font-size: .7rem;
    color: rgba(255, 255, 255, .25);
    max-width: 500px;
    line-height: 1.55;
}

.age-warn {
    color: var(--coral);
    font-weight: 700;
}

/* ─── UTILS ─── */
.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.text-amber {
    color: var(--amber);
}

.text-teal {
    color: var(--teal);
}

.text-muted {
    color: var(--muted);
}

.fw700 {
    font-weight: 700;
}

.badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .15rem .5rem;
    border-radius: 4px;
}

.badge-amber {
    background: rgba(245, 158, 11, .15);
    color: var(--amber);
}

.badge-teal {
    background: rgba(20, 184, 166, .15);
    color: var(--teal);
}

.badge-coral {
    background: rgba(249, 115, 22, .15);
    color: var(--coral);
}

.badge-green {
    background: rgba(74, 222, 128, .15);
    color: #4ade80;
}

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    border-bottom: 1px solid var(--border-amber);
    padding: 2.5rem 0 2rem;
}

.page-h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .65rem;
    letter-spacing: -.3px;
}

.page-h1 em {
    color: var(--amber);
    font-style: normal;
}

.page-lead {
    font-size: .95rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ─── RESPONSIVE 960px ─── */
@media (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero-content::after {
        display: none;
    }

    .feat-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .feat-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .seo-2col {
        grid-template-columns: 1fr;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .donut-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── RESPONSIVE 620px ─── */
@media (max-width: 620px) {

    /* HEADER — logo compact, hide btn-play (it's in mob-nav) */
    .header-wrap {
        padding: 0 1rem;
        gap: .5rem;
    }

    .logo {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .logo-name {
        font-size: .82rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100vw - 120px);
    }

    .logo-sub {
        display: none;
    }

    /* Compact the Play Free button in header on mobile */
    .header-wrap>div>.btn-play {
        font-size: .72rem;
        padding: .45rem .8rem;
        min-height: 36px;
        white-space: nowrap;
    }

    .feat-grid-3,
    .feat-grid-2 {
        grid-template-columns: 1fr;
    }

    .feat-grid-4 {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .casino-card {
        grid-template-columns: 40px 1fr;
    }

    .casino-score-box {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .author-box {
        flex-direction: column;
    }

    .table-wrap {
        font-size: .78rem;
    }
}

/* ─── CHART ANIMATION TRIGGER ─── */
.animated .hbar-fill {
    width: var(--w, 0);
}

.animated .donut-arc {
    stroke-dashoffset: var(--offset, 251.2);
}

.animated .vbar-bar {
    height: var(--h, 0);
}

.animated .meter-fill {
    width: var(--w, 0);
}