/* =============================================
   TIPICO CASINO OFFIZIELL — Design System
   Brand: Red #E30613 | Black #0A0A0A | White
   Font: Inter (Google Fonts)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ─────────────────── */
:root {
    --red: #E30613;
    --red-dark: #B8000E;
    --red-light: #FF2233;
    --red-glow: rgba(227, 6, 19, 0.25);
    --bg: #0A0A0A;
    --bg-card: #141414;
    --bg-card2: #1A1A1A;
    --bg-input: #111111;
    --border: rgba(227, 6, 19, 0.18);
    --border-light: rgba(255, 255, 255, 0.08);
    --text: #FFFFFF;
    --text-muted: #9A9A9A;
    --text-dim: #666666;
    --gold: #FFD700;
    --green: #00C853;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 4px 24px rgba(227, 6, 19, 0.3);
    --transition: 0.25s ease;
    --max-w: 1200px;
}

/* ── Reset ─────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--red-light)
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit
}

/* ── Skip to Content ───────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 6px;
    background: var(--red);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    left: 6px
}

/* ── Container ─────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px
}

.container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px
}

/* ── HEADER ────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    box-shadow: 0 0 16px rgba(227, 6, 19, 0.5);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--red)
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

nav.main-nav a {
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

nav.main-nav a:hover,
nav.main-nav a.active {
    color: #fff;
    background: rgba(227, 6, 19, 0.12);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--red-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(227, 6, 19, 0.45);
}

.btn-outline {
    border: 2px solid var(--border-light);
    color: var(--text-muted);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--red);
    color: #fff
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg)
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px
}

.btn-gold {
    background: var(--gold);
    color: #000;
    font-weight: 800
}

.btn-gold:hover {
    background: #FFE44D;
    color: #000;
    transform: translateY(-1px)
}

/* mobile toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
    border-radius: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px)
}

/* mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
}

.mobile-nav a:hover {
    color: #fff;
    background: rgba(227, 6, 19, 0.1)
}

.mobile-nav-cta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* tracker in mobile */
.mobile-tracker-btn {
    width: 100%;
    text-align: center;
    background: var(--red);
    color: #fff;
    padding: 13px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-red);
}

/* ── HERO ──────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #160006 60%, #0A0A0A 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(227, 6, 19, 0.15) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 6, 19, 0.12);
    border: 1px solid var(--border);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--red)
}

.hero-desc {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.stars {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px
}

.rating-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff
}

.rating-label {
    color: var(--text-muted);
    font-size: 13px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border);
}

.hero-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

/* ── STATS BAR ─────────────────────────────── */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 8px 16px;
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--red)
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

/* ── SECTION ───────────────────────────────── */
section {
    padding: 64px 0
}

.section-header {
    text-align: center;
    margin-bottom: 48px
}

.section-label {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 12px
}

/* ── CARDS ─────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(227, 6, 19, 0.12);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px
}

.card-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6
}

/* Bonus card */
.bonus-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a0008 100%);
    border: 1px solid rgba(227, 6, 19, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.2), transparent 70%);
}

.bonus-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.bonus-label {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px
}

.bonus-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

/* ── TABLES ────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: var(--radius)
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table caption {
    caption-side: top;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

thead th {
    background: var(--bg-card2);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

tbody tr:last-child {
    border-bottom: none
}

tbody td {
    padding: 14px 16px;
    color: var(--text-muted)
}

tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03)
}

tbody td:first-child {
    color: #fff;
    font-weight: 600
}

.tag-green {
    color: var(--green);
    font-weight: 700
}

.tag-red {
    color: var(--red);
    font-weight: 700
}

.tag-gold {
    color: var(--gold);
    font-weight: 700
}

.check {
    color: var(--green)
}

.cross {
    color: var(--red-light)
}

/* ── CHART CONTAINER ───────────────────────── */
.chart-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
}

.chart-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff
}

.chart-box {
    position: relative;
    height: 300px
}

/* ── PROS CONS ─────────────────────────────── */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.pros-block,
.cons-block {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
}

.pros-block {
    border-top: 3px solid var(--green)
}

.cons-block {
    border-top: 3px solid var(--red)
}

.pros-cons-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.pros-cons-title.pro {
    color: var(--green)
}

.pros-cons-title.con {
    color: var(--red)
}

.pros-cons ul {
    list-style: none
}

.pros-cons li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-cons li:last-child {
    border: none
}

.pros-cons li::before {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
}

.pros-cons li.pro::before {
    content: '✓';
    color: var(--green)
}

.pros-cons li.con::before {
    content: '✗';
    color: var(--red)
}

/* ── RATING BARS ───────────────────────────── */
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.rating-row-label {
    font-size: 13px;
    color: var(--text-muted);
    width: 150px;
    flex-shrink: 0
}

.rating-row-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 8px;
    overflow: hidden
}

.rating-row-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--red);
    transition: width 1s ease
}

.rating-row-num {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    width: 36px;
    text-align: right
}

/* ── FAQ ───────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-q::after {
    content: '+';
    font-size: 20px;
    color: var(--red);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 18px
}

.faq-item.open .faq-a {
    display: block
}

/* ── SEO CONTENT ───────────────────────────── */
.seo-content {
    background: var(--bg-card);
    padding: 64px 0
}

.seo-article h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #fff;
}

.seo-article h2:first-child {
    margin-top: 0
}

.seo-article h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 28px;
    color: var(--red);
}

.seo-article p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-article strong {
    color: #fff;
    font-weight: 600
}

.text-link {
    color: var(--red);
    font-weight: 600;
    border-bottom: 1px dashed rgba(227, 6, 19, 0.4);
}

.text-link:hover {
    color: var(--red-light);
    border-color: var(--red-light)
}

/* ── BREADCRUMB ────────────────────────────── */
.breadcrumb {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-muted)
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb span {
    color: var(--red)
}

/* ── PAGE HERO (inner pages) ───────────────── */
.page-hero {
    background: linear-gradient(170deg, #100005 0%, #0A0A0A 100%);
    border-bottom: 1px solid var(--border);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(227, 6, 19, 0.1), transparent);
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-hero h1 span {
    color: var(--red)
}

.page-hero p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 600px
}

/* ── PAYMENT GRID ──────────────────────────── */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.payment-card {
    background: var(--bg-card2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition);
}

.payment-card:hover {
    border-color: var(--border);
    transform: translateY(-2px)
}

.payment-icon {
    font-size: 32px;
    margin-bottom: 10px
}

.payment-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.payment-speed {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px
}

/* ── STEPS ─────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px
}

.step {
    text-align: center;
    padding: 24px 16px
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.4);
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px
}

.step-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

/* ── APP SECTION ───────────────────────────── */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.app-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 1px solid var(--border-light);
}

.app-feature-icon {
    font-size: 20px;
    flex-shrink: 0
}

.app-feature-text {
    font-size: 14px;
    color: var(--text-muted)
}

.app-feature-text strong {
    color: #fff
}

.store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 12px 20px;
    transition: all var(--transition);
    color: #fff;
}

.store-btn:hover {
    border-color: var(--red);
    color: #fff
}

.store-btn-icon {
    font-size: 24px
}

.store-btn-text {
    font-size: 12px;
    color: var(--text-muted)
}

.store-btn-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

/* ── FORM (Login/Register) ─────────────────── */
.form-wrap {
    max-width: 440px;
    margin: 0 auto
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px
}

.form-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px
}

.form-group {
    margin-bottom: 18px
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: var(--text-muted)
}

.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 13px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--red)
}

.form-input::placeholder {
    color: var(--text-dim)
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px
}

.form-check input {
    margin-top: 2px;
    accent-color: var(--red)
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: var(--shadow-red)
}

.form-submit:hover {
    background: var(--red-light);
    transform: translateY(-1px)
}

.form-link {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--text-dim);
    font-size: 13px
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light)
}

/* ── AUTHOR ────────────────────────────────── */
.author-hero {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 48px 0
}

.author-photo {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--red);
    box-shadow: 0 0 30px rgba(227, 6, 19, 0.4);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px
}

.author-role {
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.author-bio {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7
}

.author-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px
}

.author-stat-num {
    font-size: 24px;
    font-weight: 900;
    color: #fff
}

.author-stat-label {
    font-size: 12px;
    color: var(--text-muted)
}

/* ── FOOTER ────────────────────────────────── */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    color: var(--text-dim);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 13px
}

.footer-warn {
    color: var(--text-dim);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 8px;
    line-height: 1.6;
}

/* ── 18+ BADGE ─────────────────────────────── */
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--text-dim);
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
}

/* ── UTILITIES ─────────────────────────────── */
.text-center {
    text-align: center
}

.text-red {
    color: var(--red)
}

.text-muted {
    color: var(--text-muted)
}

.mt-8 {
    margin-top: 8px
}

.mt-12 {
    margin-top: 12px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mt-48 {
    margin-top: 48px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.mb-32 {
    margin-bottom: 32px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-48 {
    margin-bottom: 48px
}

.gap-16 {
    gap: 16px
}

.d-flex {
    display: flex
}

.align-center {
    align-items: center
}

.flex-wrap {
    flex-wrap: wrap
}

.highlight {
    color: var(--red);
    font-weight: 700
}

.divider {
    height: 1px;
    background: var(--border-light);
    margin: 32px 0
}

/* ── RESPONSIVE ────────────────────────────── */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-grid {
        gap: 32px
    }
}

@media(max-width:768px) {
    nav.main-nav {
        display: none
    }

    .hamburger {
        display: flex
    }

    .header-cta .btn-outline {
        display: none
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 0 32px
    }

    .hero-img {
        order: -1
    }

    .hero h1 {
        font-size: 1.9rem
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item:nth-child(2) {
        border-right: none
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border-light)
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border-light);
        border-right: none
    }

    .pros-cons {
        grid-template-columns: 1fr
    }

    .app-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .author-hero {
        flex-direction: column;
        text-align: center
    }

    .author-stats {
        justify-content: center
    }

    .chart-box {
        height: 220px
    }

    section {
        padding: 40px 0
    }

    .seo-content {
        padding: 40px 0
    }

    .page-hero {
        padding: 32px 0 28px
    }

    /* collapse inner-page 2-column grids */
    [style*="grid-template-columns: 1fr 1.2fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 1fr 2fr"],
    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important
    }

    .app-feature-list [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-btns {
        flex-direction: column
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center
    }

    .store-btns {
        flex-direction: column
    }

    .form-card {
        padding: 28px 20px
    }
}