/* ==============================================
   VULKAN VEGAS ONLINE PL — Design System
   Theme: Vulkan Fire | Dark + Red + Gold
   ============================================== */

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

/* ---- CSS VARIABLES ---- */
:root {
    /* Brand colors */
    --red: #CC0000;
    --red-bright: #FF1A1A;
    --red-dark: #990000;
    --gold: #FFD700;
    --gold-light: #FFE454;
    --gold-dark: #C9A800;
    /* Background scale */
    --bg-000: #0A0A0A;
    --bg-100: #111111;
    --bg-200: #181818;
    --bg-300: #222222;
    --bg-400: #2A2A2A;
    /* Text */
    --text-100: #FFFFFF;
    --text-200: #E0E0E0;
    --text-300: #AAAAAA;
    --text-400: #777777;
    /* Border */
    --border: rgba(204, 0, 0, 0.25);
    --border-gold: rgba(255, 215, 0, 0.35);
    /* Glow */
    --glow-red: 0 0 20px rgba(204, 0, 0, 0.5), 0 0 40px rgba(204, 0, 0, 0.2);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
    /* Radius */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    /* Font */
    --font-main: 'Inter', 'Segoe UI', sans-serif;
    --font-display: 'Barlow Condensed', 'Impact', sans-serif;
    /* Transition */
    --t: 0.22s ease;
}

/* ---- BASE ---- */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-000);
    color: var(--text-200);
    line-height: 1.65;
    min-height: 100vh;
}

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

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

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

/* ---- SKIP LINK ---- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--red);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: var(--r-sm);
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-wide {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ==============================================
   HEADER
   ============================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--red);
    box-shadow: 0 2px 24px rgba(204, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 68px;
    padding: 0 1.25rem;
    max-width: 1380px;
    margin: 0 auto;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

/* Real logo image */
.logo-link img {
    height: 40px;
    width: auto;
    max-width: 150px;
    max-height: 40px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .logo-link img {
        height: 30px;
        max-height: 30px;
        max-width: 110px;
    }
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: var(--glow-red);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.4), transparent);
}

.logo-text {
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-100);
}

.logo-name span {
    color: var(--red);
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-400);
    letter-spacing: 0.05em;
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
}

.site-nav a {
    color: var(--text-300);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--r-sm);
    transition: all var(--t);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text-100);
    background: rgba(204, 0, 0, 0.15);
}

/* Header CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-login {
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text-200);
    font-size: 0.85rem;
    background: transparent;
    cursor: pointer;
    transition: all var(--t);
    font-family: var(--font-main);
}

.btn-login:hover {
    border-color: var(--red);
    color: var(--text-100);
}

.btn-register {
    padding: 0.4rem 1rem;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--t);
    font-family: var(--font-main);
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    box-shadow: var(--glow-red);
}

.btn-tracker-header {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, #B8860B, var(--gold));
    color: #000;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--t);
    white-space: nowrap;
    animation: pulse-gold 2.5s infinite;
}

.btn-tracker-header:hover {
    background: var(--gold-light);
    color: #000;
    box-shadow: var(--glow-gold);
}

@keyframes pulse-gold {

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

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

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

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-100);
    border-top: 1px solid var(--border);
    padding: 1rem;
}

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

.mobile-menu a {
    color: var(--text-200);
    padding: 0.75rem 1rem;
    border-radius: var(--r-sm);
    font-size: 0.95rem;
    transition: all var(--t);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu a:hover {
    background: rgba(204, 0, 0, 0.15);
    color: var(--text-100);
}

.mobile-cta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-cta .btn-tracker-header {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.mobile-auth {
    display: flex;
    gap: 0.5rem;
}

.mobile-auth a {
    flex: 1;
    text-align: center;
    padding: 0.65rem;
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    font-weight: 600;
}

.mobile-auth .btn-login-m {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-200);
}

.mobile-auth .btn-reg-m {
    background: var(--red);
    color: #fff;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0000 0%, var(--bg-000) 45%, #0d0d0d 100%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border);
}

.hero-fire-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(204, 0, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(180, 60, 0, 0.08) 0%, transparent 50%);
}

.hero-fire-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-fire-lines::before,
.hero-fire-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(204, 0, 0, 0.4) 40%, rgba(255, 100, 0, 0.2) 70%, transparent);
    animation: fire-line 4s ease-in-out infinite;
}

.hero-fire-lines::before {
    left: 30%;
    animation-delay: 0s;
}

.hero-fire-lines::after {
    left: 70%;
    animation-delay: 2s;
}

@keyframes fire-line {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(204, 0, 0, 0.15);
    border: 1px solid rgba(204, 0, 0, 0.4);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.78rem;
    color: var(--text-300);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: blink 1.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-100);
    margin-bottom: 0.75rem;
}

.hero-title .accent {
    color: var(--red);
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-300);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--t);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.5);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--r-md);
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--t);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--gold-light);
    border-color: var(--gold);
}

/* Bonus quick stats */
.hero-bonus-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bonus-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 0.65rem 1.1rem;
    text-align: center;
}

.bonus-pill .val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.bonus-pill .lbl {
    font-size: 0.72rem;
    color: var(--text-400);
}

/* Rating Card */
.rating-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

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

.rating-score {
    text-align: center;
    margin-bottom: 1.25rem;
}

.rating-score .score {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.rating-score .out-of {
    font-size: 0.85rem;
    color: var(--text-400);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.rbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rbar-label {
    font-size: 0.75rem;
    color: var(--text-300);
    min-width: 90px;
}

.rbar-track {
    flex: 1;
    height: 5px;
    background: var(--bg-400);
    border-radius: 5px;
    overflow: hidden;
}

.rbar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 5px;
}

.rbar-val {
    font-size: 0.72rem;
    color: var(--text-400);
    min-width: 28px;
    text-align: right;
}

.rating-cta {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: var(--r-md);
    background: var(--red);
    color: #fff;
    font-weight: 700;
    transition: all var(--t);
}

.rating-cta:hover {
    background: var(--red-bright);
    color: #fff;
    box-shadow: var(--glow-red);
}

/* ==============================================
   SECTIONS
   ============================================== */
.section {
    padding: 4rem 0;
}

.section-sm {
    padding: 2.5rem 0;
}

.section-dark {
    background: var(--bg-100);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.5rem;
}

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

.section-lead {
    font-size: 1rem;
    color: var(--text-300);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-400);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.breadcrumb .sep {
    color: var(--text-400);
}

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

/* ---- CARDS ---- */
.card {
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(204, 0, 0, 0.4);
    box-shadow: 0 4px 24px rgba(204, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    background: radial-gradient(ellipse at top left, rgba(204, 0, 0, 0.06), transparent 60%);
    pointer-events: none;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.4rem;
}

.card-text {
    font-size: 0.875rem;
    color: var(--text-300);
}

.card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ---- FEATURES ---- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-300);
}

.feature-text strong {
    color: var(--text-200);
}

/* ---- CHARTS ---- */
.chart-wrap {
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    position: relative;
}

.chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-200);
    margin-bottom: 1rem;
}

.chart-box {
    position: relative;
    height: 300px;
}

.chart-source {
    font-size: 0.72rem;
    color: var(--text-400);
    margin-top: 0.75rem;
    text-align: right;
}

/* ---- TABLES ---- */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

thead {
    background: linear-gradient(135deg, #1a0000, #220000);
}

thead th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--t);
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

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

tbody td {
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    color: var(--text-300);
    vertical-align: middle;
}

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

table caption {
    font-size: 0.8rem;
    color: var(--text-400);
    padding: 0.5rem 1rem;
    text-align: left;
    caption-side: top;
}

.tag {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
}

.tag-green {
    background: rgba(0, 200, 80, 0.12);
    color: #00C850;
}

.tag-red {
    background: rgba(204, 0, 0, 0.12);
    color: var(--red-bright);
}

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

.tag-gray {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-400);
}

/* ---- BONUS BOXES ---- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bonus-card {
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--t);
}

.bonus-card:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.08);
}

.bonus-card-num {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.bonus-dep {
    font-size: 0.72rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.bonus-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.bonus-fs {
    font-size: 0.875rem;
    color: var(--red-bright);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.bonus-detail {
    font-size: 0.8rem;
    color: var(--text-400);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bonus-detail span strong {
    color: var(--text-300);
}

/* ---- PROS/CONS ---- */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-box,
.cons-box {
    background: var(--bg-200);
    border-radius: var(--r-md);
    padding: 1.25rem;
}

.pros-box {
    border-left: 3px solid #00C850;
}

.cons-box {
    border-left: 3px solid var(--red);
}

.pc-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pros-box .pc-title {
    color: #00C850;
}

.cons-box .pc-title {
    color: var(--red);
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pc-list li {
    font-size: 0.875rem;
    color: var(--text-300);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.pc-list li::before {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pros-box .pc-list li::before {
    content: '✓';
    color: #00C850;
    font-weight: 700;
}

.cons-box .pc-list li::before {
    content: '✗';
    color: var(--red);
    font-weight: 700;
}

/* ---- PAGE BANNER ---- */
.page-banner {
    background: linear-gradient(160deg, #1a0000, #0d0d0d);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.12), transparent 60%);
    pointer-events: none;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 0.75rem;
}

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

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

/* ---- FAQ ACCORDION ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: var(--bg-200);
    border: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-200);
    font-family: var(--font-main);
    transition: background var(--t);
}

.faq-q:hover {
    background: var(--bg-300);
}

.faq-q .chevron {
    transition: transform var(--t);
    color: var(--text-400);
}

.faq-q.open .chevron {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--bg-100);
    font-size: 0.875rem;
    color: var(--text-300);
    line-height: 1.7;
}

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

/* ---- SEO CONTENT SECTION ---- */
.seo-section {
    background: var(--bg-100);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

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

.seo-article h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-100);
    margin: 2rem 0 0.75rem;
}

.seo-article h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1.5rem 0 0.5rem;
}

.seo-article p {
    font-size: 0.925rem;
    color: var(--text-300);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.seo-article a {
    color: var(--gold);
    border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
}

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

.seo-article ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.seo-article ul li {
    font-size: 0.9rem;
    color: var(--text-300);
}

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

/* ---- FOOTER ---- */
.site-footer {
    background: var(--bg-100);
    border-top: 2px solid var(--border);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-brand {}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.75rem;
}

.footer-logo span {
    color: var(--red);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-400);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--red-dark);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.footer-age-line {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-400);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-300);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-400);
    padding: 0.3rem 0;
    transition: color var(--t);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-400);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--text-400);
    font-size: 0.8rem;
}

.footer-legal-links a:hover {
    color: var(--text-300);
}

/* ---- AUTHOR SECTION ---- */
.author-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-200);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.author-mini img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
    flex-shrink: 0;
}

.author-mini-info {
    line-height: 1.3;
}

.author-mini-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-200);
}

.author-mini-role {
    font-size: 0.78rem;
    color: var(--text-400);
}

/* ---- AUTHOR PROFILE CARD ---- */
.author-profile-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.author-profile-img img {
    width: 180px;
    height: 180px;
    border-radius: var(--r-lg);
    object-fit: cover;
    border: 3px solid var(--red);
    box-shadow: var(--glow-red);
}

.author-profile-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.25rem;
}

.author-profile-title {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.author-profile-bio {
    font-size: 0.9rem;
    color: var(--text-300);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.author-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.author-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.author-stat span {
    font-size: 0.72rem;
    color: var(--text-400);
}

@media (max-width: 768px) {
    .author-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-profile-img img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .author-stats {
        justify-content: center;
    }
}

/* details/summary FAQ (native) */
details.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg-200);
    padding: 0;
    overflow: hidden;
}

details.faq-item summary {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-200);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--t);
}

details.faq-item summary:hover {
    background: var(--bg-300);
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item[open] summary {
    border-bottom: 1px solid var(--border);
}

details.faq-item>p {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-300);
    line-height: 1.7;
}

/* ---- STEP LIST ---- */
.steps-v {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: steps;
}

.step-v {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-red);
}

.step-v-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-200);
    margin-bottom: 0.3rem;
}

.step-v-content p {
    font-size: 0.875rem;
    color: var(--text-400);
}

/* ==============================================
   MOBILE RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    /* Header */
    .site-nav {
        display: none;
    }

    .btn-login,
    .btn-register {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .btn-tracker-header {
        font-size: 0.75rem;
        padding: 0.38rem 0.8rem;
    }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .rating-card {
        display: none;
    }

    .hero {
        padding: 2.5rem 0 2rem;
    }

    /* Sections */
    .section {
        padding: 2.5rem 0;
    }

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

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

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

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

    .chart-box {
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    /* Force charts not to overflow */
    canvas {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .chart-wrap {
        overflow: hidden;
        width: 100%;
    }

    /* Charts side by side → stack */
    .grid-2 .chart-wrap {
        min-width: 0;
    }

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

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

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

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

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

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

    .page-banner {
        padding: 2rem 0 1.5rem;
    }

    .chart-box {
        height: 180px;
        overflow: hidden;
    }

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

    .table-wrap {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        max-width: 100%;
    }
}