/* =============================================
   WAZAMBA OFFIZIELL — Global Design System
   Domain: wazamba-offiziell.de
   Brand: Purple #6600CC, Gold #FFD700, Orange #FF6B00
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    --purple-dark: #3D0080;
    --purple-main: #6600CC;
    --purple-mid: #7B2FDD;
    --purple-light: #9B59F5;
    --gold: #FFD700;
    --gold-dark: #E6A800;
    --orange: #FF6B00;
    --orange-light: #FF9500;
    --white: #FFFFFF;
    --off-white: #F5F0FF;
    --text-main: #E8E0FF;
    --text-muted: #B39DDB;
    --bg-card: rgba(102, 0, 204, 0.18);
    --bg-card-hover: rgba(102, 0, 204, 0.35);
    --border: rgba(255, 215, 0, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --transition: 0.3s ease;
    --hero-h: 520px;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1A0038 0%, #2D0066 40%, #1A0038 100%);
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.7;
}

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

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

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

/* ── Skip to content ── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    z-index: 1000;
    border-radius: 0 0 var(--radius) 0;
    font-weight: 700;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =======================================
   HEADER / NAV
   ======================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1C0044 0%, #3D0080 50%, #1C0044 100%);
    border-bottom: 2px solid var(--gold);
    height: var(--header-h);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

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

.logo-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
}

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

.main-nav a {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

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

.btn-login {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 7px 18px;
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
}

.btn-login:hover {
    background: var(--gold);
    color: #000;
}

.btn-register {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #000;
}

/* Tracker link — in header CTA */
.btn-tracker {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-tracker:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #000;
}

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

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

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #1C0044;
    z-index: 800;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-nav a {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
}

.mobile-nav .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.mobile-nav .btn-tracker,
.mobile-nav .btn-login,
.mobile-nav .btn-register {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    position: relative;
    height: var(--hero-h);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 0, 50, 0.85) 0%, rgba(60, 0, 120, 0.55) 60%, transparent 100%);
}

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

.hero h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(90deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9), rgba(255, 215, 0, 0.9));
    color: #000;
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

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

.btn-hero {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: #000;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.5);
    color: #000;
}

.btn-hero-outline {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    transform: translateY(-2px);
}

/* =======================================
   STATS STRIP
   ======================================= */
.stats-strip {
    background: linear-gradient(90deg, var(--purple-dark) 0%, #4A0099 50%, var(--purple-dark) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =======================================
   SECTION TITLES
   ======================================= */
.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
}

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

/* =======================================
   CARDS
   ======================================= */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card:hover::before {
    opacity: 1;
}

/* =======================================
   GENERIC SECTIONS
   ======================================= */
section {
    padding: 64px 0;
}

.section-alt {
    background: rgba(0, 0, 0, 0.25);
}

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

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 0, 40, 0.88) 0%, rgba(60, 0, 120, 0.55) 60%, transparent 100%);
}

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

.page-banner h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

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

.page-banner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
}

/* =======================================
   BREADCRUMB
   ======================================= */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

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

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

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

caption {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    text-align: left;
    padding: 12px 16px;
    caption-side: top;
}

thead th {
    background: linear-gradient(90deg, var(--purple-dark), #4A0099);
    color: var(--gold);
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    transition: var(--transition);
}

tbody tr:hover {
    background: rgba(255, 215, 0, 0.06);
}

td {
    padding: 12px 16px;
    color: var(--text-main);
}

td.highlight {
    color: var(--gold);
    font-weight: 700;
}

td .check {
    color: #4CAF50;
}

td .cross {
    color: #e74c3c;
}

/* =======================================
   CHARTS / DIAGRAMS
   ======================================= */
.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}

.chart-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Bar chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-item {}

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

.bar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 12px;
    overflow: hidden;
}

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

.bar-fill.orange {
    background: linear-gradient(90deg, var(--orange), var(--gold));
}

.bar-fill.green {
    background: linear-gradient(90deg, #2ECC71, #27AE60);
}

/* Donut chart SVG */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Radial gauge */
.gauge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.gauge-item {
    text-align: center;
}

.gauge-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
}

.gauge-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =======================================
   BONUS BOX
   ======================================= */
.bonus-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-amount {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1.1;
}

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

/* =======================================
   RATING STARS
   ======================================= */
.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-num {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    color: var(--gold);
    font-size: 1.4rem;
}

/* =======================================
   GAME GRID (slot thumbnails)
   ======================================= */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

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

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

.game-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.game-info {
    padding: 10px 14px;
}

.game-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
}

.game-provider {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

/* =======================================
   AUTHOR BOX
   ======================================= */
.author-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.author-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* =======================================
   SEO CONTENT SECTION
   ======================================= */
.seo-content {
    padding: 56px 0;
}

.seo-article {
    max-width: 920px;
    margin: 0 auto;
}

.seo-article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin: 32px 0 14px;
}

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

.seo-article h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin: 22px 0 10px;
}

.seo-article p {
    color: var(--text-main);
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.seo-article .text-link {
    color: var(--gold);
    border-bottom: 1px dashed var(--gold-dark);
}

.seo-article .text-link:hover {
    color: var(--orange-light);
    border-color: var(--orange-light);
}

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

/* =======================================
   FAQ ACCORDION
   ======================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}

.faq-q.open::after {
    content: '−';
}

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

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

/* =======================================
   VERIFICATION BADGE STRIP
   ======================================= */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-main);
}

.trust-badge .icon {
    font-size: 1.2rem;
}

/* =======================================
   FOOTER
   ======================================= */
.site-footer {
    background: #0D0020;
    border-top: 2px solid var(--border);
    padding: 48px 0 24px;
}

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

.footer-brand .logo-img {
    height: 40px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(179, 157, 219, 0.6);
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

/* =======================================
   GSV META VERIFICATION
   ======================================= */
/* Included in each page <head> via meta tag */

/* =======================================
   RESPONSIVE — MOBILE FIRST
   ======================================= */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Phone (≤ 768px) */
@media (max-width: 768px) {
    :root {
        --hero-h: 400px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 10px 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 40px 0;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donut-wrap {
        flex-direction: column;
    }

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-banner {
        height: 220px;
    }

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

    table {
        font-size: 0.78rem;
    }

    td,
    th {
        padding: 8px 10px;
    }

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

/* Small phone (≤ 480px) */
@media (max-width: 480px) {
    :root {
        --hero-h: 340px;
    }

    .container {
        padding: 0 14px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gauge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .logo-text {
        display: none;
    }
}

/* =======================================
   ANIMATIONS
   ======================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.fade-up-d1 {
    animation-delay: 0.1s;
}

.fade-up-d2 {
    animation-delay: 0.2s;
}

.fade-up-d3 {
    animation-delay: 0.3s;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    }
}

.pulse {
    animation: pulse-gold 2.5s infinite;
}

/* Totem decoration */
.totem-decor {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
}

/* =============================================
   ACCESSIBILITY — Focus Visible, Reduced Motion
   Screen Reader Utilities, Print Styles
   ============================================= */

/* Only show focus outline for keyboard users */
:focus {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }

    .bar-fill {
        transition: none !important;
    }

    .pulse {
        animation: none !important;
    }
}

/* Color scheme declaration */
:root {
    color-scheme: dark;
}

/* ── Print Styles ── */
@media print {
    .site-header,
    .mobile-nav,
    .hamburger,
    .btn-tracker,
    .btn-hero,
    .btn-register,
    footer .btn-tracker {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .seo-article a::after {
        content: ' (' attr(href) ')';
        font-size: 9pt;
        color: #555;
    }

    .page-banner {
        height: auto;
        padding: 20px 0;
    }

    .page-banner-bg {
        display: none;
    }

    .page-banner h1 {
        color: #000;
    }

    table {
        border-collapse: collapse;
    }

    th, td {
        border: 1px solid #999;
        padding: 8px;
        color: #000;
    }

    thead th {
        background: #eee;
        color: #000;
    }
}

/* =======================================
   GAME CARDS (slot thumbnails grid)
   ======================================= */
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.game-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.game-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 12px;
}

.game-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
}

.game-provider {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #000;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

/* =======================================
   AUTHOR BOX
   ======================================= */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 0 auto;
}

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

.author-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--purple-light);
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =======================================
   SEO CONTENT SECTION
   ======================================= */
.seo-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0;
}

.seo-article {
    max-width: 880px;
    margin: 0 auto;
}

.seo-article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.seo-article h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--purple-light);
    margin: 28px 0 10px;
}

.seo-article p {
    color: var(--text-muted);
    line-height: 1.88;
    margin-bottom: 12px;
    font-size: 0.96rem;
}

.seo-article ul,
.seo-article ol {
    padding-left: 22px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.text-link {
    color: var(--purple-light);
    text-decoration: underline;
    text-decoration-color: rgba(155, 89, 245, 0.4);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* =======================================
   GLASS BG (used in author stat boxes)
   ======================================= */
.glass-bg {
    background: rgba(102, 0, 204, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(6px);
}

/* Responsive: mobile adjustments for game-card, author, charts */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .game-thumb {
        height: 110px;
    }

    .seo-article h2 {
        font-size: 1.3rem;
    }

    .seo-article h3 {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    /* Stack two-column charts to single column */
    [style*="grid-template-columns:1fr 1fr"] {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }
}