/* ============================================
   Sweep-Stakes-Casino.ca — Main Stylesheet
   Theme: Dark Navy + Gold Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --navy: #0a0e1a;
    --navy-mid: #111827;
    --navy-card: #1a2235;
    --navy-light: #1e2d4a;
    --gold: #d4a017;
    --gold-bright: #f0c040;
    --gold-dim: #8a6a0a;
    --teal: #00b4a6;
    --teal-dim: #007a70;
    --red: #e63946;
    --green: #2dc653;
    --text: #e2e8f5;
    --text-muted: #8a9ab5;
    --border: rgba(212, 160, 23, 0.2);
    --border-strong: rgba(212, 160, 23, 0.5);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.2);
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 20px;
    --font-main: 'Barlow', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --tracker: 'https://adminclick.org/ZWkPFG';
    --max-w: 1200px;
    --header-h: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--navy);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.25s;
}

a:hover {
    color: var(--gold-bright);
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo .logo-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold-bright);
    font-weight: 700;
}

.site-logo .logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
}

.nav-desktop li a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-desktop li a:hover,
.nav-desktop li a.active {
    color: var(--gold-bright);
    background: rgba(212, 160, 23, 0.1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Play button in header */
.btn-play-header {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--gold), #c8860a);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

.btn-play-header:hover {
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.6);
}

/* Mobile burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.nav-mobile a:hover {
    border-color: var(--border-strong);
    color: var(--gold-bright);
}

/* Mobile CTA in drawer */
.nav-mobile .btn-play-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--gold), #c8860a);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #050810 0%, #0a1428 50%, #071020 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 8, 16, 0.9) 40%, rgba(5, 8, 16, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid var(--border-strong);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 680px;
}

.hero h1 span {
    color: var(--gold-bright);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), #c8860a);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(212, 160, 23, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-dim));
    color: #fff;
    font-weight: 700;
}

.btn-teal:hover {
    color: #fff;
    opacity: 0.9;
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--navy-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-bright);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* ── SECTION ── */
.section {
    padding: 4rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-full {
    padding: 4rem 0;
}

.section-alt {
    background: var(--navy-mid);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered p {
    margin: 0 auto;
}

.tag-line {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

/* ── CARDS ── */
.card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold), var(--shadow);
    border-color: var(--border-strong);
}

.card-body {
    padding: 1.5rem;
}

.card-img img {
    width: 100%;
    object-fit: cover;
}

.card-img.ratio-16-9 img {
    aspect-ratio: 16/9;
}

.card-img.ratio-3-2 img {
    aspect-ratio: 3/2;
}

.card-img.ratio-wide img {
    aspect-ratio: 21/9;
}

/* Casino rating card */
.casino-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    transition: all 0.25s;
}

.casino-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.casino-rank {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 800;
    line-height: 1;
    min-width: 2.5rem;
    text-align: center;
}

.casino-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.casino-info .tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.tag.teal {
    background: rgba(0, 180, 166, 0.1);
    border-color: rgba(0, 180, 166, 0.3);
    color: var(--teal);
}

.tag.green {
    background: rgba(45, 198, 83, 0.1);
    border-color: rgba(45, 198, 83, 0.3);
    color: var(--green);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-bright);
    font-family: var(--font-display);
}

.rating-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── TABLES ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 1.5rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.data-table caption {
    caption-side: top;
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    background: var(--navy-light);
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--navy-light);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 1rem;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--border-strong);
}

.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.08);
    color: var(--text);
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.data-table tr:hover td {
    background: rgba(212, 160, 23, 0.05);
}

.td-green {
    color: var(--green);
    font-weight: 600;
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-muted {
    color: var(--text-muted);
}

.td-center {
    text-align: center;
}

/* Check / X symbols */
.check {
    color: var(--green);
    font-size: 1.1rem;
}

.cross {
    color: var(--red);
    font-size: 1.1rem;
}

/* ── CHARTS / DIAGRAMS ── */
.chart-container {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.chart-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

/* Bar chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    min-width: 140px;
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.bar-fill.teal {
    background: linear-gradient(90deg, var(--teal-dim), var(--teal));
}

.bar-fill.green {
    background: linear-gradient(90deg, #1a7a30, var(--green));
}

.bar-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    min-width: 40px;
}

/* Donut Chart (SVG-based) */
.donut-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    min-width: 160px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Progress bars for ratings */
.score-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.score-name {
    font-size: 0.82rem;
    color: var(--text-muted);
    min-width: 130px;
}

.score-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
}

.score-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 35px;
}

/* Comparison grid chart */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.comparison-col {
    text-align: center;
}

.comparison-col .col-head {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    padding: 0.5rem;
    border-bottom: 2px solid var(--border-strong);
    margin-bottom: 0.75rem;
}

.comparison-col .col-item {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.comparison-col.highlight .col-head {
    background: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    color: var(--gold-bright);
}

.comparison-col.highlight .col-item {
    color: var(--text);
}

/* ── GRIDS ── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ── STEPS (how-to) ── */
.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps-flow::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    width: 2px;
    bottom: 28px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c8860a);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.step-body h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.step-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ── SEO CONTENT SECTION ── */
.seo-content {
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
}

.seo-article {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text);
}

.seo-article h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    margin: 2rem 0 0.75rem;
}

.seo-article h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 1.5rem 0 0.5rem;
    font-weight: 700;
}

.seo-article p {
    margin-bottom: 1rem;
}

.seo-article ul,
.seo-article ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.seo-article li {
    margin-bottom: 0.35rem;
}

.seo-article strong {
    color: #fff;
}

.seo-article .text-link {
    color: var(--gold);
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 1px;
}

.seo-article .text-link:hover {
    color: var(--gold-bright);
}

/* Related links block */
.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.related-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.88rem;
    transition: all 0.2s;
}

.related-link-item:hover {
    border-color: var(--border-strong);
    color: var(--gold);
}

.related-link-item .rli-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── AUTHOR BOX ── */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-strong);
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info .role {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .sep {
    color: var(--border-strong);
}

.breadcrumbs .current {
    color: var(--gold);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, #050810 0%, #0f1a2e 60%, #0a0e1a 100%);
    padding: 3rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 0.6rem;
}

.page-hero h1 span {
    color: var(--gold-bright);
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ── NOTICE / DISCLAIMER ── */
.notice {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin: 1rem 0;
}

.notice-warning {
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--text);
}

.notice-info {
    background: rgba(0, 180, 166, 0.08);
    border: 1px solid rgba(0, 180, 166, 0.3);
    color: var(--text);
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ── FAQ / ACCORDION ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color 0.2s;
}

.faq-q:hover,
.faq-q[open] {
    color: var(--gold);
}

.faq-q::marker {
    display: none;
}

details[open] .faq-q {
    color: var(--gold);
    border-bottom: 1px solid var(--border);
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.25s;
}

details[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    padding: 1rem 1.25rem;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
    background: #060911;
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-bright);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(0, 180, 166, 0.05));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--gold-bright);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--text);
    margin: 0;
}

/* ── SIDEBAR LAYOUT ── */
.layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.sidebar-widget {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.sidebar-widget h3 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

/* ── BONUS CARD ── */
.bonus-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
}

.bonus-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.bonus-card-header {
    background: linear-gradient(135deg, #1a2235, #0f1a2e);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-bright);
    font-weight: 700;
}

.bonus-type {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bonus-card-body {
    padding: 1.25rem;
}

.bonus-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.75rem 0;
}

.bonus-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.bonus-meta-row span:first-child {
    color: var(--text-muted);
}

.bonus-meta-row span:last-child {
    color: var(--text);
    font-weight: 600;
}

/* ── PULSE ANIMATION (CTA) ── */
@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(212, 160, 23, 0.7);
    }
}

.btn-pulse {
    animation: pulse-gold 2.5s infinite;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .layout-sidebar {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 60px;
    }

    /* Desktop nav hidden, burger shown */
    .nav-desktop {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Header layout compact */
    .header-inner {
        padding: 0 0.85rem;
        gap: 0.4rem;
    }

    /* Logo single line, no wrap */
    .site-logo { min-width: 0; flex: 1; }
    .site-logo .logo-main { font-size: 0.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .site-logo .logo-sub { display: none; }
    .header-cta { flex-shrink: 0; gap: 0.35rem; }
    .btn-play-header { font-size: 0.68rem; padding: 0.42rem 0.65rem; letter-spacing: 0.02em; white-space: nowrap; }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .hero {
        min-height: 360px;
    }

    .casino-card {
        grid-template-columns: auto 1fr;
    }

    .casino-card .btn-sm {
        display: none;
    }

    .donut-wrapper {
        flex-direction: column;
    }

    .bar-label {
        min-width: 100px;
        font-size: 0.75rem;
    }

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .page-hero {
        padding: 2rem 1rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }
}

/* ============================================
   Extra utility styles added for new pages
   ============================================ */

/* FAQ accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item[open] {
    border-color: rgba(212, 160, 23, 0.5);
}

.faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.faq-answer p {
    margin: 0.65rem 0 0;
}

/* Scores fill animation */
.score-fill {
    transition: width 1s ease-out;
}

/* Tag utility */
.tag {
    background: rgba(212, 160, 23, 0.12);
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    padding: 0.15rem 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tag.teal {
    background: rgba(0, 180, 166, 0.12);
    color: var(--teal);
    border-color: rgba(0, 180, 166, 0.3);
}

.tag.green {
    background: rgba(45, 198, 83, 0.12);
    color: var(--green);
    border-color: rgba(45, 198, 83, 0.3);
}

/* Bonus meta rows */
.bonus-meta {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bonus-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.bonus-meta-row:last-child {
    border-bottom: none;
}

/* Check / Cross helpers */
.check {
    color: var(--green);
    font-weight: 700;
}

.cross {
    color: var(--red);
    font-weight: 700;
}

/* Stars */
.stars {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Grid-4 */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ── FOOTER CTA BUTTON ── */
.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--gold), #c8860a);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-cta:hover {
    color: #000;
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ── FOOTER BRAND ── */
.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-brand .logo-main {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold-bright);
}


/* ── SUPER SMALL SCREENS: header CTA icon only ── */
@media (max-width: 480px) {
    .btn-play-header .btn-text { display: none; }
    .btn-play-header { padding: 0.45rem 0.6rem; font-size: 1.1rem; }
    .site-logo .logo-main { font-size: 0.78rem; }
}
