/* =============================================
   CODERE-CASINOS.ES — Global Stylesheet
   Brand: #00963F green / #0D1117 dark / #FFD700 gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #00963F;
    --green-dark: #006B2D;
    --green-light: #00C451;
    --gold: #FFD700;
    --gold-dark: #C9A800;
    --bg: #0D1117;
    --bg2: #161B22;
    --bg3: #1C2333;
    --text: #E6EDF3;
    --text-muted: #8B949E;
    --border: #30363D;
    --red: #E74C3C;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-green: 0 0 24px rgba(0, 150, 63, 0.3);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.2;
}

/* === SKIP TO CONTENT === */
.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    z-index: 9999;
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* === CONTAINER === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   HEADER
   =========================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: -4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(0, 150, 63, 0.15);
    color: var(--green);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-tracker {
    background: var(--green);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(0, 150, 63, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-tracker:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(0, 150, 63, 0.6);
}

.btn-login {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 9px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}

.btn-login:hover {
    border-color: var(--green);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity 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 */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    z-index: 999;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: rgba(0, 150, 63, 0.1);
    color: var(--green);
}

.mobile-nav .btn-tracker {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 14px;
    font-size: 16px;
}

/* ===========================
   HERO SECTIONS
   =========================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 17, 23, 0.92) 40%, rgba(13, 17, 23, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 150, 63, 0.15);
    border: 1px solid rgba(0, 150, 63, 0.4);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--green);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    display: inline-block;
    transition: all var(--transition);
    box-shadow: 0 0 20px rgba(0, 150, 63, 0.4);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(0, 150, 63, 0.6);
}

.btn-gold {
    background: var(--gold);
    color: #000 !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    display: inline-block;
    transition: all var(--transition);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text) !important;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: var(--radius);
    display: inline-block;
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green) !important;
}

/* Hero inner (subpages) */
.hero-inner {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.hero-inner .hero-content {
    padding: 50px 0;
}

.hero-inner h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 72px 0;
}

.section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--green);
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* ===========================
   CARDS
   =========================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: var(--shadow-green);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Feature cards (3-col) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media(max-width:900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:580px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   TABLES
   =========================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.data-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

.data-table caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    caption-side: top;
}

.data-table th {
    background: var(--bg3);
    color: var(--green);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
    color: var(--text);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: rgba(0, 150, 63, 0.05);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(0, 150, 63, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 150, 63, 0.3);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-red {
    background: rgba(231, 76, 60, 0.15);
    color: var(--red);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.badge-gray {
    background: rgba(139, 148, 158, 0.15);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* Stars */
.stars {
    color: var(--gold);
    letter-spacing: 1px;
}

/* ===========================
   CHARTS (CSS-based)
   =========================== */
.chart-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 40px;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bar chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bar-label {
    width: 140px;
    font-size: 13px;
    color: var(--text);
    flex-shrink: 0;
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.bar-fill.gold {
    background: linear-gradient(90deg, #B8860B, var(--gold));
}

.bar-fill.red {
    background: linear-gradient(90deg, #C0392B, var(--red));
}

.bar-value {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.bar-val-ext {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 8px;
    width: 44px;
}

/* Gauge / donut (CSS only) */
.donut-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.donut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.donut-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: conic-gradient(var(--green) var(--pct), rgba(255, 255, 255, 0.08) 0);
}

.donut-ring::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg2);
}

.donut-val {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.donut-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    max-width: 90px;
}

/* Progress bars (horizontal) */
.progress-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.progress-item {}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.progress-name {
    font-size: 13px;
    color: var(--text);
}

.progress-pct {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

.progress-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

/* ===========================
   SEO CONTENT SECTION
   =========================== */
.seo-content {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 72px 0;
}

.seo-article h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #fff;
    margin: 36px 0 14px;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.15rem;
    color: var(--green);
    margin: 24px 0 10px;
}

.seo-article p {
    color: rgba(230, 237, 243, 0.85);
    margin-bottom: 16px;
    line-height: 1.75;
}

.seo-article ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.seo-article ul li {
    color: rgba(230, 237, 243, 0.85);
    margin-bottom: 8px;
    list-style: disc;
}

.text-link {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--green-light);
}

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumbs {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--green);
}

.breadcrumbs .sep {
    color: var(--border);
}

.breadcrumbs .current {
    color: var(--text);
}

/* ===========================
   CASINO GAME GRID
   =========================== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.game-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.game-info {
    padding: 12px;
}

.game-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.game-rtp {
    font-size: 11px;
    color: var(--green);
}

/* ===========================
   STEP DIAGRAM (App install)
   =========================== */
.steps-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 150, 63, 0.1);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}

.step-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===========================
   FAQ / ACCORDION
   =========================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-q .icon {
    color: var(--green);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.faq-item.open .faq-q .icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ===========================
   AUTHOR BOX
   =========================== */
.author-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 40px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
    flex-shrink: 0;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 0.85rem;
    color: var(--green);
    margin-bottom: 8px;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    font-size: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--green);
}

.age-badge {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius);
    display: inline-block;
    margin-top: 12px;
}

.responsible-disclaimer {
    background: rgba(0, 150, 63, 0.05);
    border: 1px solid rgba(0, 150, 63, 0.15);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* ===========================
   FORMS (Login/Registro)
   =========================== */
.form-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-title {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 8px;
}

.form-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-submit {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background var(--transition), transform var(--transition);
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.form-footer-txt {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 20px;
}

.form-footer-txt a {
    color: var(--green);
}

/* ===========================
   INFO BOXES & STATS
   =========================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.stat-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-cta .btn-login {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-gold,
    .btn-secondary {
        text-align: center;
    }

    section {
        padding: 48px 0;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donut-row {
        justify-content: center;
    }

    .bar-label {
        width: 90px;
        font-size: 11px;
    }

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .container {
        padding: 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}