/* ===== Design tokens ===== */
:root {
    /* Blueclaw brand palette — blue, orange & white */
    --pastel-lav: #cfe2ff;   /* light blue */
    --pastel-mint: #bfe0ff;  /* pale blue */
    --pastel-peach: #ffd9b0; /* light orange */
    --pastel-sky: #a9d1ff;   /* sky blue */
    --pastel-blush: #ffc999; /* soft orange */

    --color-bg: #f4f8ff;
    --color-surface: #ffffff;
    --color-text: #0f2444;
    --color-muted: #5a6b85;
    --color-accent: #1462d4;       /* Blueclaw blue */
    --color-accent-dark: #0f4aa8;
    --color-accent-2: #f6821f;     /* Blueclaw orange */
    --color-border: #dce6f5;

    --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1120px;
    --space: 1rem;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 10px 30px rgba(20, 98, 212, 0.12);
    --shadow-hover: 0 18px 44px rgba(20, 98, 212, 0.22);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }

a { color: var(--color-accent); text-decoration: none; }

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

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section { padding: 4.5rem 0; }

.section-head { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }
.section-head p { color: var(--color-muted); }

.grad-text {
    background: linear-gradient(90deg, var(--color-accent), var(--pastel-blush));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--pastel-lav); outline-offset: 2px; }

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #4a90e8);
    box-shadow: 0 8px 20px rgba(20, 98, 212, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(20, 98, 212, 0.45); }

.btn-ghost {
    color: var(--color-text);
    background: var(--color-surface);
    border: 2px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--pastel-lav); }

.btn-light { color: var(--color-accent); background: #fff; box-shadow: var(--shadow); }
.btn-block { width: 100%; margin-top: auto; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-accent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-accent-dark);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
}
.logo-mark {
    display: block;
    width: 34px; height: 34px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff;
    transition: transform 0.4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.08); }
.logo-accent { color: #fff; }

.main-nav { display: flex; gap: 1.5rem; }
.main-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    position: relative;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 2px;
    background: var(--color-accent-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background:
        radial-gradient(60% 60% at 80% 0%, var(--pastel-sky) 0%, transparent 60%),
        radial-gradient(50% 50% at 10% 20%, var(--pastel-blush) 0%, transparent 55%),
        radial-gradient(55% 55% at 50% 100%, var(--pastel-mint) 0%, transparent 60%);
}
.hero-inner { position: relative; text-align: center; max-width: 780px; }
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 1rem; }
.hero-sub { color: var(--color-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.hero-stats strong { display: block; font-size: 1.8rem; color: var(--color-text); }
.hero-stats span { color: var(--color-muted); font-size: 0.9rem; }

/* ===== Filters ===== */
.filters {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.55rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--pastel-lav); color: var(--color-text); }
.filter-btn.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 6px 16px rgba(20, 98, 212, 0.35);
}

/* ===== Casino cards ===== */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.casino-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.casino-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.casino-card.is-hidden { display: none; }

.rank-badge {
    position: absolute;
    top: -12px; left: 1.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pastel-blush), var(--color-accent));
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 6px 14px rgba(20, 98, 212, 0.35);
}
.card-logo {
    width: 60px; height: 60px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--tile, var(--pastel-lav));
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: transform 0.35s var(--ease);
}
.casino-card:hover .card-logo { transform: rotate(-6deg) scale(1.05); }
.casino-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }

.rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }
.stars {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--color-border);
}
.stars::before {
    content: "\2605\2605\2605\2605\2605";
    position: absolute;
    top: 0; left: 0;
    width: var(--pct, 100%);
    overflow: hidden;
    white-space: nowrap;
    color: #ffb703;
}
.rating-num { font-weight: 700; font-size: 0.9rem; }

.bonus {
    font-weight: 700;
    color: var(--color-accent);
    background: linear-gradient(90deg, rgba(20,98,212,0.12), rgba(246,130,31,0.12));
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}
.perks { list-style: none; margin-bottom: 1.25rem; display: grid; gap: 0.4rem; }
.perks li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--color-muted);
    font-size: 0.92rem;
}
.perks li::before {
    content: "\2713";
    position: absolute; left: 0;
    color: var(--color-accent-2);
    font-weight: 800;
}

/* ===== Ranked list ===== */
.ranked-list {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    counter-reset: rank;
    display: grid;
    gap: 0.75rem;
}
.ranked-list li {
    counter-increment: rank;
    position: relative;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.9rem 1.1rem 0.9rem 3.4rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    color: var(--color-muted);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ranked-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.ranked-list li::before {
    content: counter(rank);
    position: absolute;
    left: 0.9rem; top: 50%;
    transform: translateY(-50%);
    width: 1.9rem; height: 1.9rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pastel-lav), var(--color-accent));
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
}
.ranked-list a { font-weight: 700; }
.list-note { max-width: 760px; margin: 1.75rem auto 0; text-align: center; color: var(--color-muted); }

/* ===== Reviews ===== */
.reviews-section { background: var(--color-bg); }
.review-card {
    scroll-margin-top: 90px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-head .card-logo { margin-bottom: 0; flex-shrink: 0; }
.review-card:hover .card-logo { transform: rotate(-6deg) scale(1.05); }
.review-head h3 { font-size: 1.35rem; }
.rank-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pastel-blush), var(--color-accent));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.review-card p { color: var(--color-muted); margin-bottom: 0.9rem; }
.review-card p:last-child { margin-bottom: 0; }
.read-review {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}
.read-review:hover { transform: translateX(4px); color: var(--color-accent-dark, var(--color-accent)); }
.read-review:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* ===== Bonus band ===== */
.bonus-band {
    background: linear-gradient(135deg, var(--pastel-lav), var(--pastel-sky));
}
.bonus-band-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.bonus-band-head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.bonus-band-head p { color: rgba(51, 41, 74, 0.8); }
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.bonus-mini {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 1.4rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.bonus-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.bonus-mini strong { display: block; font-size: 1.15rem; color: var(--color-text); margin-bottom: 0.4rem; }
.bonus-mini span { color: var(--color-accent); font-weight: 600; font-size: 0.92rem; }
.bonus-note { max-width: 760px; margin: 2rem auto 0; text-align: center; color: rgba(51, 41, 74, 0.85); }

/* ===== Pros & Cons ===== */
.proscons-section { background: var(--color-bg); }
.proscons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.proscons-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.proscons-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.proscons-card.pros { border-top: 5px solid var(--pastel-mint); }
.proscons-card.cons { border-top: 5px solid var(--pastel-blush); }
.proscons-card ul { list-style: none; display: grid; gap: 0.6rem; }
.proscons-card li { position: relative; padding-left: 1.7rem; color: var(--color-muted); }
.proscons-card li::before {
    position: absolute; left: 0; top: 0;
    font-weight: 800;
}
.proscons-card.pros li::before { content: "\2713"; color: var(--color-accent-2); }
.proscons-card.cons li::before { content: "\2715"; color: var(--pastel-blush); }

/* ===== Steps ===== */
.steps {
    max-width: 760px;
    margin: 0 auto;
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 1rem;
}
.steps li {
    counter-increment: step;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.steps li:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.step-num {
    flex-shrink: 0;
    width: 2.4rem; height: 2.4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #4a90e8);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(20, 98, 212, 0.35);
}
.steps p { margin: 0; color: var(--color-muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--color-bg); }
.faq-item {
    max-width: 820px;
    margin: 0 auto 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.25s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-hover); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem; top: 50%;
    transform: translateY(-50%);
    width: 1.6rem; height: 1.6rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pastel-lav);
    color: #fff;
    font-weight: 800;
    transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-item[open] summary::after { content: "\2212"; background: var(--color-accent); transform: translateY(-50%) rotate(180deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--pastel-lav); outline-offset: -3px; }
.faq-body { padding: 0 1.25rem 1.25rem; }
.faq-body p { color: var(--color-muted); margin-bottom: 0.8rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ===== Review pages ===== */
.breadcrumb {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.25rem 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}
.breadcrumb a { font-weight: 600; }
.breadcrumb span { margin: 0 0.4rem; }

.review-hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 3rem;
    background:
        radial-gradient(55% 55% at 85% 0%, var(--pastel-sky) 0%, transparent 60%),
        radial-gradient(50% 50% at 5% 30%, var(--pastel-blush) 0%, transparent 55%);
}
.review-hero-inner { position: relative; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.review-hero .card-logo {
    width: 84px; height: 84px;
    font-size: 1.6rem;
    margin-bottom: 0;
    box-shadow: var(--shadow);
}
.review-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 0.5rem; }
.review-hero .rank-tag { margin-bottom: 0.6rem; }
.review-hero-meta { flex: 1 1 320px; }

.review-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}
.review-main > p { color: var(--color-muted); margin-bottom: 1.1rem; }
.review-main h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.8rem;
    padding-top: 0.5rem;
}
.review-main h2:first-child { margin-top: 0; }
.review-main ul { list-style: none; display: grid; gap: 0.5rem; margin-bottom: 1.1rem; }
.review-main ul li { position: relative; padding-left: 1.5rem; color: var(--color-muted); }
.review-main ul li::before {
    content: "\2713";
    position: absolute; left: 0;
    color: var(--color-accent-2);
    font-weight: 800;
}

/* Sticky sidebar fact box + CTA */
.review-aside { position: sticky; top: 90px; display: grid; gap: 1.25rem; }
.fact-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.fact-box h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.fact-list { list-style: none; display: grid; gap: 0.7rem; }
.fact-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.7rem;
}
.fact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fact-list span { color: var(--color-muted); }
.fact-list strong { color: var(--color-text); text-align: right; }

.cta-box {
    background: linear-gradient(135deg, var(--pastel-lav), var(--pastel-sky));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.cta-box .rating { justify-content: center; margin-bottom: 0.75rem; }
.cta-box .bonus { background: rgba(255,255,255,0.7); }

.verdict {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--pastel-mint);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
}
.verdict h2 { margin-top: 0; }

.back-link { display: inline-block; margin-top: 2rem; font-weight: 700; }

@media (max-width: 860px) {
    .review-layout { grid-template-columns: 1fr; }
    .review-aside { position: static; }
}

/* ===== Feature grid ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
    width: 58px; height: 58px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--tile, var(--pastel-lav));
    font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-card p { color: var(--color-muted); font-size: 0.92rem; }

/* ===== Footer ===== */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.9rem;
    background: var(--color-surface);
}
.footer-warn {
    display: inline-block;
    background: var(--pastel-peach);
    color: #8a4a12;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .main-nav { display: none; }
    .hero-stats { gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

/* ===== SEO additions ===== */
.byline {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0.25rem 0 1rem;
}

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

/* Comparison table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    min-width: 760px;
    font-size: 0.95rem;
}
.compare-table thead th {
    background: var(--color-accent);
    color: #fff;
    text-align: left;
    padding: 0.85rem 1rem;
    font-weight: 600;
    white-space: nowrap;
}
.compare-table tbody th,
.compare-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: middle;
}
.compare-table tbody th { font-weight: 700; color: var(--color-text); }
.compare-table tbody tr:nth-child(even) { background: var(--color-bg); }
.compare-table tbody tr:hover { background: var(--pastel-lav); }
.compare-table a {
    color: var(--color-accent-dark);
    font-weight: 600;
    text-decoration: none;
}
.compare-table a:hover { text-decoration: underline; }

/* Responsible gambling list */
.rg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}
.rg-list li {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent-2);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow);
}
.rg-list a {
    color: var(--color-accent-dark);
    font-weight: 600;
    text-decoration: none;
}
.rg-list a:hover { text-decoration: underline; }
