/* =========================================================
   Boho Casino Australia — Global Design System
   Brand: Dark Green #062010 | Orange #F06E00 | White #FFFFFF
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand */
    --boho-green: #062010;
    --boho-green-mid: #0d3a1c;
    --boho-green-light: #144d25;
    --boho-orange: #F06E00;
    --boho-orange-light: #fd8b0f;
    --boho-orange-deep: #BD5800;

    /* UI */
    --bg-dark: #111913;
    --bg-card: #0e2718;
    --bg-card2: #112b1a;
    --border: #1e4028;
    --text: #e8ead0;
    --text-muted: #8a9e8d;
    --white: #ffffff;

    /* Effects */
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 8px 40px rgba(240, 110, 0, 0.25);
    --glow: 0 0 20px rgba(240, 110, 0, 0.4);
    --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   ACCESSIBILITY
   ========================= */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--boho-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

#main-content {
    scroll-margin-top: 80px;
    /* offset for sticky header */
}

/* Scrolled header */
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    background: rgba(6, 32, 16, 0.99);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: var(--boho-orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--boho-orange-light);
}

ul,
ol {
    list-style: none;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

.text-orange {
    color: var(--boho-orange);
}

/* =========================
   LAYOUT
   ========================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 72px 0;
}

.section-sm {
    padding: 48px 0;
}

/* =========================
   HEADER
   ========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(6, 32, 16, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo-text span {
    color: var(--boho-orange);
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--boho-orange);
    background: rgba(240, 110, 0, 0.1);
}

/* CTA Button in nav */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--boho-orange), var(--boho-orange-deep));
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--boho-orange-light), var(--boho-orange));
    box-shadow: var(--glow);
    transform: translateY(-1px);
    color: var(--white) !important;
}

/* Mobile burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

/* =========================
   MOBILE NAV DRAWER
   ========================= */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--boho-green);
    border-left: 1px solid var(--border);
    z-index: 1001;
    transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-overlay.open {
    display: block;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    overflow-y: auto;
}

.drawer-links a {
    color: var(--text);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
}

.drawer-links a:hover {
    background: rgba(240, 110, 0, 0.12);
    color: var(--boho-orange);
}

.drawer-cta {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.drawer-cta .btn-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--boho-orange), var(--boho-orange-deep));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--boho-orange-light), var(--boho-orange));
    box-shadow: var(--glow);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--boho-orange);
    color: var(--boho-orange);
}

.btn-outline:hover {
    background: var(--boho-orange);
    color: var(--white);
    box-shadow: var(--glow);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* =========================
   CARDS
   ========================= */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(240, 110, 0, 0.45);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 110, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

/* =========================
   SECTION LABELS
   ========================= */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 110, 0, 0.1);
    border: 1px solid rgba(240, 110, 0, 0.3);
    color: var(--boho-orange);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 640px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* =========================
   GRIDS
   ========================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* =========================
   TABLES
   ========================= */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    background: var(--boho-green-mid);
    color: var(--boho-orange);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(30, 64, 40, 0.5);
    color: var(--text);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(240, 110, 0, 0.04);
}

.data-table .badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.badge-orange {
    background: rgba(240, 110, 0, 0.15);
    color: var(--boho-orange);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

/* =========================
   BONUS BOX
   ========================= */
.bonus-hero {
    background: linear-gradient(135deg, var(--boho-green-mid) 0%, #0d2e18 100%);
    border: 1px solid rgba(240, 110, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 110, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--boho-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.bonus-steps {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.bonus-step-pill {
    background: rgba(240, 110, 0, 0.1);
    border: 1px solid rgba(240, 110, 0, 0.25);
    border-radius: 8px;
    padding: 10px 18px;
    text-align: center;
}

.bonus-step-pill .pct {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--boho-orange);
}

.bonus-step-pill .amt {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background: linear-gradient(160deg, #062010 0%, #071a0c 50%, #0a1f10 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(240, 110, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 110, 0, 0.1);
    border: 1px solid rgba(240, 110, 0, 0.35);
    color: var(--boho-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--boho-orange);
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================
   RATING / SCORE
   ========================= */
.rating-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.rating-score {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--boho-orange);
    line-height: 1;
    flex-shrink: 0;
}

.rating-bars {
    flex: 1;
    min-width: 0;
}

.rating-bar-item {
    margin-bottom: 10px;
}

.rating-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.rating-bar-track {
    background: var(--border);
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--boho-orange), var(--boho-orange-light));
    border-radius: 100px;
    transition: width 1s ease;
}

/* =========================
   PROS / CONS
   ========================= */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box,
.cons-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pros-box {
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.cons-box {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-box h4 {
    color: #22c55e;
    margin-bottom: 16px;
}

.cons-box h4 {
    color: #f87171;
    margin-bottom: 16px;
}

.pros-box li,
.cons-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.pros-box li:last-child,
.cons-box li:last-child {
    border-bottom: none;
}

.pros-box li::before {
    content: '✓';
    color: #22c55e;
    flex-shrink: 0;
    font-weight: 700;
}

.cons-box li::before {
    content: '✗';
    color: #f87171;
    flex-shrink: 0;
    font-weight: 700;
}

/* =========================
   PAGE BANNER
   ========================= */
.page-banner {
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 32, 16, 0.95) 40%, transparent 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

/* =========================
   BREADCRUMBS
   ========================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--boho-orange);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
}

/* =========================
   CHART CONTAINER
   ========================= */
.chart-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 320px;
    position: relative;
}

.chart-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    background: var(--boho-green);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 12px;
    line-height: 1.7;
}

.footer-col h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--boho-orange);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--boho-orange);
}

/* Footer CTA button must NOT inherit text-link styling */
.footer-col .btn,
.footer-col .btn-cta {
    color: var(--white) !important;
    font-size: 0.88rem !important;
    display: inline-flex !important;
    text-decoration: none;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.payment-icon {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 760px;
}

.footer-license {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.license-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
}

.age-badge {
    background: rgba(240, 110, 0, 0.15);
    border: 2px solid var(--boho-orange);
    color: var(--boho-orange);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 8px;
}

/* =========================
   FAQ ACCORDION
   ========================= */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--boho-orange);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--boho-orange);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 20px 18px;
}

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

/* =========================
   UTILITY
   ========================= */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.gap-8 {
    gap: 8px;
}

.flex {
    display: flex;
}

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

.highlight {
    background: rgba(240, 110, 0, 0.1);
    border-left: 3px solid var(--boho-orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text);
    margin: 16px 0;
}

/* =========================
   RESPONSIVE — TABLET
   ========================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}





/* ==================================================
   RESPONSIVE — MOBILE (single source of truth)
   Replace ALL previous mobile patches with this block
   ================================================== */

/* ── GLOBAL OVERFLOW FIX ── */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Force grid/flex children to not overflow their container */
.grid-2>*,
.grid-3>*,
.grid-4>*,
.grid-auto>* {
    min-width: 0;
}

/* Footer button must NOT inherit .footer-col a text-link styling */
.footer-col .btn,
.footer-col .btn-cta {
    color: #fff !important;
    background: linear-gradient(135deg, #F06E00, #BD5800) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem !important;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.footer-col .btn:hover,
.footer-col .btn-cta:hover {
    color: #fff !important;
}

/* ── 900px BREAKPOINT ── */
@media (max-width: 900px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

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

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 768px BREAKPOINT ── */
@media (max-width: 768px) {

    /* Layout */
    .section {
        padding: 44px 0;
    }

    .section-sm {
        padding: 32px 0;
    }

    .container {
        padding: 0 14px;
    }

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

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

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

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

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    /* Header */
    .site-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Show compact CTA in mobile header */
    .header-inner .btn-cta {
        display: inline-flex !important;
        padding: 8px 14px;
        font-size: 0.78rem;
        letter-spacing: 0;
        white-space: nowrap;
    }

    /* Hero */
    .hero {
        padding: 44px 0 28px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        font-size: 0.93rem;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 14px;
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    /* Sections */
    .section-header {
        margin-bottom: 24px;
    }

    .section-label {
        font-size: 0.68rem;
    }

    body {
        font-size: 15px;
    }

    /* Bonus */
    .bonus-hero {
        padding: 24px 16px;
    }

    .bonus-steps {
        flex-direction: column;
        align-items: center;
    }

    .bonus-label {
        font-size: 0.88rem;
    }

    .bonus-step-pill .pct {
        font-size: 1.1rem;
    }

    .bonus-step-pill .amt {
        font-size: 0.75rem;
    }

    /* Rating */
    .rating-box {
        flex-direction: column;
        padding: 18px 14px;
        gap: 14px;
    }

    .rating-score {
        font-size: 2.6rem;
    }

    .rating-bar-label {
        font-size: 0.78rem;
    }

    /* Cards */
    .card {
        padding: 16px;
    }

    .card-icon {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1rem;
    }

    /* Tables */
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: block;
        width: 100%;
    }

    .data-table {
        min-width: 500px;
        font-size: 0.8rem;
    }

    .data-table th,
    .data-table td {
        padding: 9px 10px;
    }

    /* Charts */
    .chart-wrap {
        height: 230px !important;
        overflow: hidden;
        padding: 12px;
        max-width: 100%;
    }

    .chart-wrap canvas {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .chart-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 13px 14px;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 0 14px 12px;
    }

    /* Page banner */
    .page-banner {
        height: 190px;
        background: linear-gradient(135deg, #062010 0%, #0b2e18 100%);
    }

    .page-banner img {
        opacity: 0.2;
    }

    .page-banner-content h1 {
        font-size: 1.6rem !important;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-col a {
        font-size: 0.82rem;
    }

    .footer-col h5 {
        font-size: 0.84rem;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-legal {
        font-size: 0.72rem;
    }

    .footer-payments {
        gap: 5px;
    }

    .payment-icon {
        padding: 4px 8px;
        font-size: 0.72rem;
    }

    /* Highlight */
    .highlight {
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: 0.88rem;
    }

    /* Text overflow prevention */
    p,
    li,
    td,
    th,
    span,
    h1,
    h2,
    h3,
    h4 {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Quick-chip nav bar — allow wrapping on mobile */
    [style*="white-space:nowrap"],
    [style*="white-space: nowrap"] {
        white-space: normal !important;
    }

    /* Inline font-size overrides (HTML attribute selectors) */
    .card [style*="font-size:1.5rem"],
    .card [style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
    }

    .card [style*="font-size:0.88rem"],
    .card [style*="font-size: 0.88rem"] {
        font-size: 0.82rem !important;
    }

    [style*="font-size:0.85rem"],
    [style*="font-size: 0.85rem"] {
        font-size: 0.8rem !important;
    }

    /* Buttons: never break up text, always visible */
    .btn,
    .btn-primary,
    .btn-outline,
    .btn-cta {
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }

    .btn:hover,
    .btn-cta:hover,
    .card:hover {
        transform: none !important;
    }

    /* Inline grids with fixed widths */
    [style*="grid-template-columns:280px"],
    [style*="grid-template-columns: 280px"],
    [style*="grid-template-columns:1fr 420px"],
    [style*="grid-template-columns: 1fr 420px"] {
        display: block !important;
    }
}

/* ── 480px BREAKPOINT ── */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    /* Hero */
    .hero {
        padding: 36px 0 24px;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .hero-stat-num {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-btns .btn {
        padding: 12px 16px;
        font-size: 0.88rem;
    }

    /* Grid */
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Rating */
    .rating-score {
        font-size: 2.1rem;
    }

    /* Cards */
    .card-icon {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 0.93rem;
    }

    /* Chart */
    .chart-wrap {
        height: 200px !important;
    }

    /* Bonus */
    .bonus-step-pill {
        padding: 8px 12px;
    }

    .bonus-step-pill .pct {
        font-size: 1rem;
    }

    .bonus-hero {
        padding: 18px 12px;
    }

    /* Page banner */
    .page-banner {
        height: 160px;
    }

    .page-banner-content h1 {
        font-size: 1.3rem !important;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
    }

    /* Sections */
    .section {
        padding: 32px 0;
    }

    .section-header {
        margin-bottom: 16px;
    }

    /* Card game stats (inline style overrides) */
    .card [style*="font-size:1.5rem"],
    .card [style*="font-size: 1.5rem"] {
        font-size: 0.95rem !important;
    }
}