﻿/* ═══════════════════════════════════════════════
   Rolla Casino Canada — Design System v1.0
   rollacasino.ca
   Brand: Black #0A0A0A · Red #CC1C1C · Gold #FFD700
═══════════════════════════════════════════════ */

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

/* ── CSS Variables ──────────────────────────── */
:root {
    --black: #0A0A0A;
    --black-2: #141414;
    --black-3: #1C1C1C;
    --black-4: #242424;
    --red: #CC1C1C;
    --red-hover: #E02020;
    --red-dark: #9B1515;
    --gold: #FFD700;
    --gold-light: #FFE55A;
    --white: #F5F5F5;
    --white-60: rgba(245, 245, 245, 0.6);
    --white-30: rgba(245, 245, 245, 0.3);
    --white-10: rgba(245, 245, 245, 0.08);
    --border: rgba(204, 28, 28, 0.25);
    --border-gold: rgba(255, 215, 0, 0.2);

    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --shadow-red: 0 0 30px rgba(204, 28, 28, 0.35);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

input,
select,
textarea {
    font-family: inherit;
}

/* ── Skip Link ──────────────────────────────── */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
    font-size: 14px;
    transition: top var(--transition);
}

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

/* ── Container ──────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-red);
}

.logo-text {
    color: var(--white);
}



.logo-image {
    width: 154px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    display: block;
}
.page-media-card {
    margin-top: 28px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    background: var(--black-3);
}
.page-media-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.page-media-card.portrait img {
    aspect-ratio: 4 / 5;
}

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

.main-nav a {
    color: var(--white-60);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: var(--white-10);
}

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

.btn-login {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--white-60);
    background: transparent;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.btn-login:hover {
    color: var(--white);
    border-color: var(--white-30);
}

.btn-register {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    transition: all var(--transition);
}

.btn-register:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

/* Tracker CTA */
.btn-tracker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-tracker:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    padding: 4px;
    background: transparent;
}

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

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

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

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

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--black-2);
    z-index: 999;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-60);
    background: var(--white-10);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--white);
    border-color: var(--border);
    background: rgba(204, 28, 28, 0.1);
}

.mobile-tracker {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

/* Mobile Sticky CTA */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 14px 24px;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 -4px 20px rgba(204, 28, 28, 0.4);
}

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

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #FFC400);
    color: var(--black);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 16px;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.74) 40%, rgba(10,10,10,0.36) 72%),
        url('/images/pages/home-hero.webp') center/cover no-repeat;
    opacity: 0.42;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204, 28, 28, 0.15);
    border: 1px solid var(--border);
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: var(--red);
}

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

.hero-desc {
    font-size: 18px;
    color: var(--white-60);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {}

.hero-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat span {
    font-size: 13px;
    color: var(--white-60);
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-card), var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204, 28, 28, 0.05), transparent);
    pointer-events: none;
}

/* ════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
section {
    padding: 80px 0;
}

.section-alt {
    background: var(--black-2);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

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

.section-sub {
    font-size: 16px;
    color: var(--white-60);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════
   CARDS
════════════════════════════════════════════ */
.card {
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    background: rgba(204, 28, 28, 0.1);
}

.card-icon.gold {
    background: rgba(255, 215, 0, 0.1);
}

.card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

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

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

table {
    font-size: 14px;
}

thead tr {
    background: var(--red);
}

thead th {
    padding: 16px 20px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-align: left;
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

tbody tr:hover {
    background: var(--white-10);
}

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

tbody td {
    padding: 14px 20px;
    color: var(--white-60);
}

tbody td:first-child {
    color: var(--white);
    font-weight: 500;
}

table caption {
    font-size: 13px;
    color: var(--white-60);
    padding: 12px;
    text-align: left;
    caption-side: top;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.badge-red {
    background: rgba(204, 28, 28, 0.15);
    color: var(--red);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

/* ════════════════════════════════════════════
   CHARTS (CSS-based)
════════════════════════════════════════════ */
.chart-bar-wrap {
    margin: 24px 0;
}

.chart-bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.chart-bar-label {
    font-size: 13px;
    color: var(--white-60);
    width: 140px;
    flex-shrink: 0;
}

.chart-bar-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--red), var(--red-hover));
    animation: growBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: left;
}

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

.chart-bar-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    width: 48px;
    text-align: right;
    flex-shrink: 0;
}

@keyframes growBar {
    from {
        width: 0 !important;
    }

    to {
        width: inherit;
    }
}

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

.donut-svg {
    flex-shrink: 0;
}

.donut-legend {
    flex: 1;
    min-width: 180px;
}

.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

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

.donut-legend-label {
    color: var(--white-60);
    flex: 1;
}

.donut-legend-val {
    color: var(--white);
    font-weight: 600;
}

/* Star rating */
.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-num {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
}

.rating-label {
    font-size: 13px;
    color: var(--white-60);
}

/* ════════════════════════════════════════════
   BONUS CARDS
════════════════════════════════════════════ */
.bonus-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

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

.bonus-card.gold-card::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

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

.bonus-amount {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    margin: 10px 0 6px;
    line-height: 1;
}

.bonus-type {
    font-size: 13px;
    color: var(--white-60);
    margin-bottom: 16px;
}

.bonus-features {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 16px;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white-60);
    margin-bottom: 8px;
}

.bonus-features li::before {
    content: '✓';
    color: #22C55E;
    font-weight: 700;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   GAME GRID
════════════════════════════════════════════ */
.game-card {
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

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

.game-thumb {
    height: 140px;
    background: var(--black-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    overflow: hidden;
}

.game-thumb::after {
    content: 'PLAY';
    position: absolute;
    inset: 0;
    background: rgba(204, 28, 28, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card:hover .game-thumb::after {
    opacity: 1;
}

.game-info {
    padding: 14px;
}

.game-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.game-provider {
    font-size: 12px;
    color: var(--white-60);
}

.game-rtp {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

/* ════════════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════════════ */
.testimonial-card {
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--white-60);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-loc {
    font-size: 12px;
    color: var(--white-60);
}

/* ════════════════════════════════════════════
   AUTHOR
════════════════════════════════════════════ */
.author-box {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    flex-shrink: 0;
    border: 3px solid var(--border);
    box-shadow: var(--shadow-red);
}

.author-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.author-role {
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.author-bio {
    font-size: 15px;
    color: var(--white-60);
    line-height: 1.7;
}

/* ════════════════════════════════════════════
   FORMS (Login / Register)
════════════════════════════════════════════ */
.form-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(204, 28, 28, 0.08) 0%, transparent 70%);
}

.form-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
}

.form-sub {
    text-align: center;
    color: var(--white-60);
    font-size: 14px;
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-60);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 15px;
    transition: all var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204, 28, 28, 0.15);
}

.form-input::placeholder {
    color: rgba(245, 245, 245, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--white-60);
}

.form-footer a {
    color: var(--red);
    font-weight: 600;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: var(--white-60);
    font-size: 13px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--red);
    flex-shrink: 0;
}

.form-check label {
    font-size: 13px;
    color: var(--white-60);
    line-height: 1.5;
}

.form-check a {
    color: var(--red);
}

/* ════════════════════════════════════════════
   APP PAGE
════════════════════════════════════════════ */
.app-hero {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 70% 70% at 80% 50%, rgba(204, 28, 28, 0.12) 0%, transparent 70%);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    margin: 0 auto;
    background: var(--black-3);
    border-radius: 36px;
    border: 6px solid var(--black-4);
    box-shadow: 0 0 0 2px var(--border), var(--shadow-card), var(--shadow-red);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-screen {
    flex: 1;
    background: var(--black-4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.phone-header {
    height: 48px;
    background: var(--black-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    border-bottom: 1px solid var(--border);
}

.phone-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
}

.phone-slot {
    aspect-ratio: 1;
    background: var(--black-3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    margin: 6px;
}

.app-badge:hover {
    border-color: var(--border);
    background: var(--black-4);
}

.app-badge-icon {
    font-size: 24px;
}

/* ════════════════════════════════════════════
   SEO CONTENT SECTION
════════════════════════════════════════════ */
.seo-content {
    padding: 70px 0;
    background: var(--black-2);
}

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

.seo-article h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--white);
    margin: 40px 0 16px;
}

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

.seo-article h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white-60);
    margin: 28px 0 12px;
}

.seo-article p {
    font-size: 16px;
    color: var(--white-60);
    line-height: 1.8;
    margin-bottom: 18px;
}

.seo-article a {
    color: var(--red);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

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

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

/* ════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════ */
.breadcrumb {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white-60);
}

.breadcrumb a {
    color: var(--white-60);
    transition: color var(--transition);
}

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

.breadcrumb-sep {
    opacity: 0.4;
}

.breadcrumb-current {
    color: var(--white);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
    background: var(--black-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
    font-size: 22px;
}

.footer-desc {
    font-size: 14px;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.35);
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--white-60);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    font-size: 13px;
    color: rgba(245, 245, 245, 0.4);
}

.footer-bottom a {
    color: rgba(245, 245, 245, 0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* ════════════════════════════════════════════
   404 PAGE
════════════════════════════════════════════ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.page-404 .big-num {
    font-family: var(--font-head);
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: var(--red);
    text-shadow: 0 0 60px rgba(204, 28, 28, 0.5);
}

.page-404 h1 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-404 p {
    color: var(--white-60);
    font-size: 16px;
    margin-bottom: 32px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .logo-image {
        width: 132px;
        max-height: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .logo-image {
        width: 116px;
        max-height: 42px;
    }
    .page-media-card {
        margin-top: 22px;
    }

    .main-nav,
    .header-cta .btn-register,
    .header-cta .btn-tracker {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .mobile-sticky {
        display: block;
    }

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

    .hero-visual {
        display: none;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero h1 {
        font-size: 34px;
    }

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

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

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

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

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

    .footer-legal {
        justify-content: center;
    }

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

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

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

    .form-card {
        padding: 32px 24px;
    }

    .author-box {
        flex-direction: column;
    }

    section {
        padding: 50px 0;
    }

    .seo-content {
        padding: 50px 0;
    }

    body {
        padding-bottom: 60px;
    }
}

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

    .hero-stats {
        gap: 20px;
    }

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

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(204, 28, 28, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(204, 28, 28, 0.15);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ── Glow divider ─────────────────────────── */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    margin: 0;
    opacity: 0.4;
}

/* ── Text utilities ───────────────────────── */
.text-red {
    color: var(--red);
}

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

.text-muted {
    color: var(--white-60);
}

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

.font-head {
    font-family: var(--font-head);
}

.fw-900 {
    font-weight: 900;
}

/* ── Spacing ──────────────────────────────── */
.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    font-size: 13px;
    color: var(--white-60);
}

.breadcrumb a {
    color: var(--white-60);
    transition: color var(--transition);
}

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

.breadcrumb-sep {
    color: rgba(245,245,245,0.3);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 500;
}

/* ════════════════════════════════════════════
   BONUS CARDS
════════════════════════════════════════════ */
.bonus-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

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

.bonus-card.gold-card {
    background: var(--black-4);
    border-color: rgba(255,215,0,0.2);
}

.bonus-card.gold-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1.2;
}

.bonus-type {
    font-size: 13px;
    color: var(--white-60);
    margin-bottom: 16px;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.bonus-features li {
    font-size: 13px;
    color: var(--white-60);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.bonus-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 11px;
}

/* ════════════════════════════════════════════
   FORMS
════════════════════════════════════════════ */
.form-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--black);
}

.form-card {
    width: 100%;
    max-width: 440px;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 14px;
    color: var(--white-60);
    text-align: center;
    margin-bottom: 28px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-60);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--black-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 15px;
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,28,28,0.15);
}

.form-input::placeholder {
    color: rgba(245,245,245,0.25);
}

.form-submit {
    width: 100%;
    margin-top: 4px;
    justify-content: center;
}

.form-divider {
    text-align: center;
    font-size: 12px;
    color: var(--white-60);
    margin: 20px 0;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-footer {
    text-align: center;
    font-size: 13px;
    color: var(--white-60);
    margin-top: 20px;
}

.form-footer a {
    color: var(--red);
    font-weight: 600;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--white-60);
    line-height: 1.5;
}

.form-check input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--red);
    flex-shrink: 0;
}

.form-check a {
    color: var(--red);
}

/* ════════════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════════════ */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-page h1 {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 13px;
    color: var(--white-60);
    margin-bottom: 40px;
}

.legal-body h2 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 12px;
}

.legal-body p {
    font-size: 15px;
    color: var(--white-60);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-body ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.legal-body ul li {
    font-size: 15px;
    color: var(--white-60);
    line-height: 1.7;
    list-style: disc;
}

.legal-body a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-color: rgba(204,28,28,0.4);
    transition: color var(--transition);
}

.legal-body a:hover {
    color: var(--red-hover);
}

/* ════════════════════════════════════════════
   PHONE MOCKUP (App page)
════════════════════════════════════════════ */
.app-hero {
    padding: 60px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.phone-mockup {
    width: 220px;
    background: var(--black-4);
    border: 3px solid var(--border);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-red), var(--shadow-card);
    position: relative;
}

.phone-header {
    background: var(--red);
    padding: 12px 16px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    color: var(--white);
}

.phone-screen {
    padding: 12px;
}

.phone-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.phone-slot {
    aspect-ratio: 1;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    color: var(--white);
    transition: all var(--transition);
}

.app-badge:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.app-badge-icon {
    font-size: 24px;
    line-height: 1;
}

/* ════════════════════════════════════════════
   REVIEWS PAGE
════════════════════════════════════════════ */
.rating-num {
    font-family: var(--font-head);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: -4px;
}

.rating-label {
    font-size: 14px;
    color: var(--white-60);
}

.stars {
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}

/* ════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
════════════════════════════════════════════ */
@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
    .phone-mockup {
        margin: 0 auto;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 116px;
        max-height: 42px;
    }
    .page-media-card {
        margin-top: 22px;
    }
    /* Override for Reviews star rating layout */
    .rating-num {
        font-size: 52px;
    }
}


