/* ============================================================
   Zula Casino US — Shared Stylesheet
   Brand: Royal Blue #1A3B96 + Gold #F5A623
   ============================================================ */

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

/* ── RESET & ROOT ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue-dark: #080F2A;
    --blue-deep: #0D1F5C;
    --blue-primary: #1A3B96;
    --blue-light: #2552CC;
    --gold: #F5A623;
    --gold-dark: #C47F00;
    --gold-light: #FFD166;
    --white: #FFFFFF;
    --gray-100: #F0F4FF;
    --gray-200: #D0D8F0;
    --gray-600: #8090C0;
    --text: #E8EDF8;
    --text-muted: #9AAACF;
    --card-bg: rgba(26, 59, 150, 0.18);
    --card-border: rgba(245, 166, 35, 0.2);
    --shadow-gold: 0 0 30px rgba(245, 166, 35, 0.25);
    --shadow-blue: 0 8px 40px rgba(13, 31, 92, 0.6);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--blue-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 15, 42, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 166, 35, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

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

.site-logo img {
    height: 44px;
    width: 44px;
    border-radius: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .logo-top {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text .logo-bot {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.main-nav a {
    color: var(--gray-200);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
}

/* CTA in header */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #080F2A;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.btn-play:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 166, 35, 0.5);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(245, 166, 35, 0.1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

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

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(8, 15, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
}

.mobile-nav .btn-play {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
}

.mobile-nav .btn-login {
    margin-top: 6px;
    text-align: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #080F2A 0%, #0D2260 50%, #1A3B96 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(245, 166, 35, 0.12) 0%, transparent 60%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #080F2A;
    font-weight: 800;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.55);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 166, 35, 0.08);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .num {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
}

.hero-stat .lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════
   BONUS SHOWCASE (homepage cards)
═══════════════════════════════════════════════════════════ */
.bonus-bar {
    background: linear-gradient(90deg, #0D2260, #1A3B96, #0D2260);
    border-top: 1px solid rgba(245, 166, 35, 0.3);
    border-bottom: 1px solid rgba(245, 166, 35, 0.3);
    padding: 18px 20px;
    overflow: hidden;
}

.bonus-bar-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-icon {
    font-size: 22px;
}

.bonus-text {
    line-height: 1.3;
}

.bonus-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.bonus-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════════════════════ */
.section {
    padding: 70px 0;
}

.section-alt {
    background: rgba(13, 31, 92, 0.3);
}

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

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   CARDS GRID
═══════════════════════════════════════════════════════════ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(245, 166, 35, 0.45);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   BONUS CARDS (special)
═══════════════════════════════════════════════════════════ */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(26, 59, 150, 0.4), rgba(13, 31, 92, 0.6));
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.bonus-amount {
    font-size: 34px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 6px;
}

.bonus-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   GAMES GRID
═══════════════════════════════════════════════════════════ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.game-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #1A3B96, #0D2260);
}

.game-info {
    padding: 14px;
}

.game-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.game-type {
    font-size: 12px;
    color: var(--text-muted);
}

.game-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: rgba(245, 166, 35, 0.15);
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════
   TABLES
═══════════════════════════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table caption {
    caption-side: top;
    padding: 14px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(13, 31, 92, 0.5);
    border-bottom: 1px solid var(--card-border);
}

thead tr {
    background: rgba(26, 59, 150, 0.5);
}

th {
    text-align: left;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(26, 59, 150, 0.3);
}

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

tbody tr:hover {
    background: rgba(26, 59, 150, 0.2);
}

.td-good {
    color: #4ADE80;
    font-weight: 600;
}

.td-warn {
    color: var(--gold);
    font-weight: 600;
}

.td-num {
    font-weight: 700;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════
   CHARTS
═══════════════════════════════════════════════════════════ */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
}

.chart-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
    min-width: 0;
}

.chart-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.chart-canvas-wrap {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

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

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    gap: 12px;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--gold);
    transition: var(--transition);
}

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

.faq-a {
    display: none;
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(26, 59, 150, 0.4);
}

.breadcrumb ol {
    display: flex;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 6px;
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text);
}

/* ══════════════════════════════════════════════════════════
   SEO CONTENT SECTION
═══════════════════════════════════════════════════════════ */
.seo-content {
    background: rgba(8, 15, 42, 0.6);
    border-top: 1px solid rgba(26, 59, 150, 0.4);
    padding: 60px 0;
}

.seo-article {
    max-width: 900px;
}

.seo-article h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 32px 0 14px;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gold);
    margin: 24px 0 10px;
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.75;
}

.seo-article strong {
    color: var(--text);
}

.seo-article a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px dashed rgba(245, 166, 35, 0.4);
}

.seo-article a:hover {
    border-bottom-color: var(--gold);
}

.seo-article ul {
    margin: 0 0 16px 20px;
}

.seo-article ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   STEPS (how-to-play)
═══════════════════════════════════════════════════════════ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(26, 59, 150, 0.3);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #080F2A;
}

.step-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-body p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   RATING STARS
═══════════════════════════════════════════════════════════ */
.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
}

.rating-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.rating-count {
    font-size: 13px;
    color: var(--text-muted);
}

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

.pro-con-box {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 22px;
}

.pro-con-box h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-con-box.pros h3 {
    color: #4ADE80;
}

.pro-con-box.cons h3 {
    color: #F87171;
}

.pro-con-box ul {
    list-style: none;
}

.pro-con-box ul li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
}

.pro-con-box ul li::before {
    flex-shrink: 0;
}

.pros ul li::before {
    content: '✓';
    color: #4ADE80;
    font-weight: 700;
}

.cons ul li::before {
    content: '✗';
    color: #F87171;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #0D2260, #1A3B96);
    border-top: 1px solid rgba(245, 166, 35, 0.25);
    border-bottom: 1px solid rgba(245, 166, 35, 0.25);
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.cta-section h2 span {
    color: var(--gold);
}

.cta-section p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    background: #050C20;
    border-top: 1px solid rgba(26, 59, 150, 0.5);
    padding: 60px 0 30px;
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 14px 0;
    line-height: 1.7;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--gray-600);
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    line-height: 1.6;
    border-left: 2px solid rgba(245, 166, 35, 0.3);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(26, 59, 150, 0.4);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gray-600);
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #080F2A, #0D2260, #1A3B96);
    padding: 50px 0 40px;
}

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

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

.page-hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 580px;
}

/* ══════════════════════════════════════════════════════════
   MOBILE APP PAGE SPECIFICS
═══════════════════════════════════════════════════════════ */
.app-stores {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 22px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(245, 166, 35, 0.12);
    border-color: var(--gold);
}

.store-btn .stor-icon {
    font-size: 28px;
}

.store-btn .stor-text small {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn .stor-text strong {
    font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   AUTH PAGES (login / register)
═══════════════════════════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.auth-box {
    width: 100%;
    max-width: 440px;
    background: rgba(13, 31, 92, 0.5);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    backdrop-filter: blur(20px);
}

.auth-box h1 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.auth-box .subtext {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--gold);
    background: rgba(245, 166, 35, 0.06);
}

.form-group input::placeholder {
    color: var(--gray-600);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #080F2A;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.auth-switch {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-cta .btn-login {
        display: none;
    }

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

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

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 420px;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .hero-stats {
        gap: 18px;
    }

    .bonus-bar-inner {
        gap: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }

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

    .page-hero {
        min-height: 220px;
    }

    .auth-box {
        padding: 28px 20px;
    }

    .section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .header-cta .btn-play {
        font-size: 13px;
        padding: 9px 16px;
    }
}

@media (max-width: 400px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        text-align: center;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════
   AUTH PAGES (login / register)
═══════════════════════════════════════════════════════════ */
.auth-card {
    background: rgba(13, 31, 92, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    width: 100%;
    max-width: 460px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: -8px;
}

.auth-form input,
.auth-form select {
    background: rgba(8, 15, 42, 0.6);
    border: 1.5px solid rgba(26, 59, 150, 0.6);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    transition: var(--transition);
    width: 100%;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.auth-form select option {
    background: #0D1F5C;
    color: var(--text);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(26, 59, 150, 0.6);
}

.social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.google-btn {
    background: #fff;
    color: #333;
}

.google-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.fb-btn {
    background: #1877F2;
    color: #fff;
}

.fb-btn:hover {
    background: #166FE5;
    transform: translateY(-2px);
}

.bonus-mini {
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.bonus-mini strong {
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   STEPS (how-to-play / mobile-app)
═══════════════════════════════════════════════════════════ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.step:hover {
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateX(4px);
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #080F2A;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   APP STORE BUTTONS
═══════════════════════════════════════════════════════════ */
.app-stores {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 22px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    min-width: 160px;
}

.store-btn:hover {
    border-color: var(--gold);
    background: rgba(245, 166, 35, 0.08);
    transform: translateY(-2px);
}

.stor-icon {
    font-size: 28px;
    line-height: 1;
}

.stor-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stor-text small {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stor-text strong {
    font-size: 15px;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════ */
.legal-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(26, 59, 150, 0.5);
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.legal-meta {
    color: var(--text-muted);
    font-size: 14px;
}

.legal-content {
    max-width: 820px;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.75;
    font-size: 15px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.legal-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.65;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ── RESPONSIBLE GAMBLING ─── */
.rg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ADE80;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rg-box {
    background: rgba(26, 59, 150, 0.2);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 28px;
}

.rg-box p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
}

.rg-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.rg-resource {
    background: rgba(13, 31, 92, 0.5);
    border: 1px solid rgba(26, 59, 150, 0.5);
    border-radius: var(--radius);
    padding: 20px;
}

.rg-resource h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.rg-resource p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.rg-resource a {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.rg-resource a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   AUTHOR PAGE
═══════════════════════════════════════════════════════════ */
.author-profile {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
}

.author-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
}

.author-bio h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.author-title {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.author-credentials span {
    background: rgba(26, 59, 150, 0.4);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.author-bio p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.author-expertise,
.editorial-policy {
    margin-top: 24px;
    background: rgba(13, 31, 92, 0.4);
    border: 1px solid rgba(26, 59, 150, 0.5);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.author-expertise h3,
.editorial-policy h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.author-expertise ul {
    padding-left: 18px;
}

.author-expertise li {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 7px;
    line-height: 1.5;
}

.editorial-policy p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .auth-card {
        padding: 32px 20px;
    }

    .author-profile {
        grid-template-columns: 1fr;
    }

    .author-avatar-wrap {
        text-align: center;
    }

    .app-stores {
        flex-direction: column;
    }

    .steps .step {
        flex-direction: column;
    }

    .rg-resources {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   GAME THUMB — Real Images
═══════════════════════════════════════════════════════════ */
.game-card img.game-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    display: block;
}

@media (max-width: 480px) {
    .game-card img.game-thumb {
        height: 110px;
    }
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY — Min touch targets (WCAG 2.5.5)
═══════════════════════════════════════════════════════════ */
.btn-primary,
.btn-outline,
.btn-play,
.btn-login {
    min-height: 44px;
}

.faq-q {
    min-height: 48px;
}

/* ══════════════════════════════════════════════════════════
   MOBILE — 480px breakpoint extras
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

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

    h1 {
        font-size: clamp(24px, 7vw, 56px);
    }

    h2 {
        font-size: clamp(20px, 5.5vw, 40px);
    }

    .table-wrap table {
        font-size: 12px;
    }

    .table-wrap th,
    .table-wrap td {
        padding: 8px 5px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ══════════════════════════════════════════════════════════
   PRINT — Legal pages
═══════════════════════════════════════════════════════════ */
@media print {
    .site-header,
    .mobile-nav,
    .cta-section,
    .site-footer,
    .hamburger {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        color: #000;
    }
}
