/* ═══════════════════════════════════════════════════════
   sweepstakes-casino.ca — CSS Design System
   Theme: Light Editorial — Forest Green + Maple Red
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --green: #1B4332;
    --green-m: #2D6A4F;
    --green-l: #40916C;
    --green-xl: #74C69D;
    --green-bg: #D8F3DC;
    --green-pale: #F0FAF4;
    --red: #DC143C;
    --red-l: #E85775;
    --red-pale: #FDEEF2;
    --gold: #F5A623;
    --gold-l: #FFBE57;
    --gold-pale: #FFF8EC;
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --text1: #0D1F15;
    --text2: #2E4A38;
    --text3: #6B8F75;
    --border: #D0E8D8;
    --border-red: rgba(220, 20, 60, 0.2);
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --trans: 0.25s ease;
    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Inter', system-ui, sans-serif;
    --container: 1200px;
    --container-sm: 760px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    background: var(--off-white);
    color: var(--text1);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── Skip Link ─────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--green);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: top var(--trans);
}

.skip-link:focus {
    top: 0;
}

/* ── Container ─────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}

.nav-logo img,
.nav-logo svg {
    display: block;
    height: 44px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 4px;
    flex: 1;
    margin-left: 16px;
}

.nav-menu a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
    transition: background var(--trans), color var(--trans);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--green-pale);
    color: var(--green);
}

.nav-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    white-space: nowrap;
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(27, 67, 50, .25);
}

.btn-green:hover {
    background: var(--green-m);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 67, 50, .3);
}

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(220, 20, 60, .25);
}

.btn-red:hover {
    background: var(--red-l);
    transform: translateY(-1px);
}

.btn-gold {
    background: var(--gold);
    color: #1a0a00;
    box-shadow: 0 2px 10px rgba(245, 166, 35, .3);
}

.btn-gold:hover {
    background: var(--gold-l);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
}

/* ── Mobile nav ────────────────────────────────────────── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: all var(--trans);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px;
}

.mobile-nav a {
    padding: 12px 16px;
    color: var(--text1);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background var(--trans);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--green-pale);
    color: var(--green);
}

.mobile-nav.open {
    display: flex;
}

.mobile-cta {
    margin-top: 12px;
}

/* ── Hero ──────────────────────────────────────────────── */
.site-hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-m) 60%, #40916c 100%);
    color: var(--white);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.site-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.site-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--off-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title .accent {
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
}

.hero-stat .val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-h);
}

.hero-stat .lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Trust bar ─────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text2);
}

.trust-icon {
    font-size: 1.1rem;
}

/* ── Sections ──────────────────────────────────────────── */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--white);
}

.section-green {
    background: var(--green);
}

.section-pale {
    background: var(--green-pale);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-pale);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-green .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text3);
    max-width: 600px;
    margin: 0 auto;
}

.section-green .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Casino Cards (ranking list) ───────────────────────── */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    padding: 28px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 24px;
    align-items: center;
    transition: border-color var(--trans), box-shadow var(--trans);
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    border-color: var(--green-l);
    box-shadow: var(--shadow-md);
}

.casino-card.top-pick {
    border-color: var(--gold);
}

.casino-card.top-pick::before {
    content: '🏆 Editor\'s Pick';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #1a0a00;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 0 0 0 12px;
    letter-spacing: 0.5px;
}

.casino-rank {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.casino-card.top-pick .casino-rank {
    background: var(--gold-pale);
    color: #7a4700;
}

.casino-info h3 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 6px;
}

.casino-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.casino-meta-item {
    font-size: 0.8rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.casino-meta-item strong {
    color: var(--text1);
}

.casino-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 100px;
}

.score-num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.score-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.casino-bonus {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green-m);
    margin-top: 4px;
}

.casino-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--green-pale);
    color: var(--green);
}

.tag-red {
    background: var(--red-pale);
    color: var(--red);
}

.tag-gold {
    background: var(--gold-pale);
    color: #7a4700;
}

/* ── Feature Cards ─────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.feat-card:hover {
    border-color: var(--green-l);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feat-card h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 0.875rem;
    color: var(--text3);
    line-height: 1.7;
}

/* ── Comparison Table ──────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

thead th {
    background: var(--green);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

thead th:first-child {
    border-radius: 12px 0 0 0;
}

thead th:last-child {
    border-radius: 0 12px 0 0;
}

.th-gold {
    background: var(--gold) !important;
    color: #1a0a00 !important;
}

tbody td {
    padding: 14px 18px;
    font-size: 0.875rem;
    color: var(--text1);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background: #FAFCFB;
}

tbody tr:hover {
    background: var(--green-pale);
}

.td-green {
    color: var(--green-l);
    font-weight: 700;
}

.td-red {
    color: var(--red);
}

.td-muted {
    color: var(--text3);
}

.td-gold {
    color: #7a4700;
    font-weight: 700;
}

caption {
    font-size: 0.78rem;
    color: var(--text3);
    padding: 10px;
    text-align: left;
    caption-side: bottom;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text1);
    text-align: left;
    gap: 16px;
    transition: background var(--trans);
}

.faq-question:hover {
    background: var(--green-pale);
}

.faq-question[aria-expanded="true"] {
    color: var(--green);
    background: var(--green-pale);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background var(--trans), transform var(--trans);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--green);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.8;
}

/* ── Notice box ────────────────────────────────────────── */
.notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius);
    border-left: 4px solid;
}

.notice.info {
    background: var(--green-pale);
    border-color: var(--green-l);
}

.notice.warning {
    background: var(--gold-pale);
    border-color: var(--gold);
}

.notice.alert {
    background: var(--red-pale);
    border-color: var(--red);
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notice p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.7;
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--green) 0%, #2D6A4F 100%);
    color: var(--white);
    padding: 56px 0 52px;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--off-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .sep {
    opacity: 0.5;
}

.breadcrumbs .current {
    color: var(--gold);
}

.page-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero h1 .accent {
    color: var(--gold);
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.page-hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-hero-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-hero-stat .val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-h);
}

.page-hero-stat .lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
    background: var(--green);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🍁';
    position: absolute;
    font-size: 200px;
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── SEO Article ───────────────────────────────────────── */
.seo-article h2 {
    font-family: var(--font-h);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-bg);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-m);
    margin: 20px 0 10px;
}

.seo-article p {
    font-size: 0.925rem;
    color: var(--text2);
    line-height: 1.85;
    margin-bottom: 14px;
}

.seo-article strong {
    color: var(--text1);
}

.seo-article a {
    color: var(--green);
    text-decoration: underline;
}

.seo-article a:hover {
    color: var(--red);
}

.seo-article ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text2);
    font-size: 0.925rem;
    line-height: 1.9;
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
    background: var(--green);
    color: rgba(255, 255, 255, 0.8);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    font-family: var(--font-b);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--trans);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 24px;
}

.footer-warn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.footer-warning p {
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-warning a {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.footer-logo-link img,
.footer-logo-link svg {
    height: 38px;
    width: auto;
}

/* ── Animations ────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ── Utilities ─────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text2);
}

.check-item::before {
    content: '✓';
    color: var(--green-l);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item.cross::before {
    content: '✗';
    color: var(--red);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-img {
        display: none;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .burger {
        display: flex;
    }

    .casino-card {
        grid-template-columns: 44px 1fr;
    }

    .casino-score {
        display: none;
    }

    .cards-grid,
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 52px 0;
    }
}

@media (max-width: 540px) {
    .hero-stats {
        gap: 10px;
    }

    .hero-stat {
        padding: 10px 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}