/* ============================================================
   WinShark Casino DE — Global Stylesheet
   Brand: Dark Navy #0a0e1a | Cyan #00d4ff | Gold #ffd700
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --navy: #0a0e1a;
    --navy-mid: #111827;
    --navy-light: #1a2234;
    --navy-card: #151c2e;
    --cyan: #00d4ff;
    --cyan-dark: #0099cc;
    --gold: #ffd700;
    --gold-dark: #e6b800;
    --white: #f0f4ff;
    --muted: #8b9ab3;
    --danger: #ff4d6d;
    --success: #00e676;
    --border: rgba(0, 212, 255, 0.15);
    --border-gold: rgba(255, 215, 0, 0.25);
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.35);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.35);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

/* ── Skip to content ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: var(--cyan);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 8px;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    margin-bottom: 1rem;
    color: var(--muted);
}

p strong {
    color: var(--white);
}

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

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

/* ── Header / Navigation ────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
}

.logo .logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px var(--cyan));
}

.logo span.brand {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

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

/* CTA buttons in nav */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile tracker CTA — visible always in mobile header */
.header-tracker-mobile {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--navy);
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--cyan);
    color: var(--navy);
    box-shadow: var(--glow-cyan);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 10px;
}

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

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

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

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

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

.mobile-nav {
    display: none;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
}

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

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav ul a {
    display: block;
    padding: 12px 0;
    color: var(--muted);
    font-weight: 500;
    transition: color var(--transition);
}

.mobile-nav ul a:hover {
    color: var(--cyan);
}

.mobile-nav .mobile-cta-group {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mobile-nav .mobile-cta-group .btn {
    flex: 1;
    text-align: center;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover;
    opacity: 0.25;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.hero .hero-text {
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

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

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

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
    border: 1px solid var(--border);
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* floating badge */
.hero-float-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--navy-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: var(--glow-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-badge .badge-icon {
    font-size: 2rem;
}

.hero-float-badge .badge-text-top {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

.hero-float-badge .badge-text-bot {
    font-size: 0.75rem;
    color: var(--muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ── Section Generics ───────────────────────────────────────── */
section {
    padding: 80px 0;
}

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

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
}

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

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

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

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

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

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--navy-card);
}

caption {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    caption-side: top;
}

thead th {
    background: var(--navy-mid);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--white);
}

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

tbody tr:hover td {
    background: rgba(0, 212, 255, 0.04);
}

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

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

.badge-green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
}

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

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

.badge-red {
    background: rgba(255, 77, 109, 0.15);
    color: var(--danger);
}

/* ── Chart Containers ───────────────────────────────────────── */
.chart-container {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}

.chart-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: var(--cyan);
    border-radius: 2px;
}

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

.bar-row {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 14px;
}

.bar-label {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: right;
}

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

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

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

.bar-value {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

/* Donut chart (CSS) */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.donut {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(var(--cyan) 0% 42%,
            var(--gold) 42% 67%,
            #7c3aed 67% 82%,
            var(--danger) 82% 93%,
            #00e676 93% 100%);
    position: relative;
    flex-shrink: 0;
}

.donut::after {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    background: var(--navy-card);
}

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

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

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

/* Stat cards */
.stat-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
}

/* Rating stars */
.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-num {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

/* ── SEO Content Section ────────────────────────────────────── */
.seo-content {
    padding: 60px 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
}

.seo-article h2 {
    color: var(--white);
    margin-bottom: 18px;
}

.seo-article h3 {
    color: var(--cyan);
    margin: 24px 0 12px;
    font-size: 1.3rem;
}

.seo-article p {
    color: var(--muted);
    line-height: 1.8;
}

.seo-article ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.seo-article ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--muted);
}

.seo-article ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.text-link {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 212, 255, 0.4);
    transition: all var(--transition);
}

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

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    padding: 60px 0 28px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
    margin-top: 12px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 28px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-bottom .age-warning {
    background: rgba(255, 77, 109, 0.1);
    border: 1px solid rgba(255, 77, 109, 0.3);
    color: var(--danger);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── Alert banners ──────────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.alert-warning {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
}

.alert-info {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--cyan);
}

/* ── Accordion / FAQ ────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-icon {
    color: var(--cyan);
    font-size: 1.3rem;
    transition: transform var(--transition);
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--muted);
    font-size: 0.95rem;
    padding-bottom: 18px;
    display: none;
    line-height: 1.7;
}

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

/* ── Image sections ─────────────────────────────────────────── */
.img-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    border: 1px solid var(--border);
}

.img-rounded {
    border-radius: var(--radius);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--muted);
    padding: 14px 0;
    flex-wrap: wrap;
}

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

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

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

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

/* ── Progress / Score bars ──────────────────────────────────── */
.score-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.score-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.score-label {
    color: var(--muted);
}

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

.score-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
}

/* ── Notification stripe ─────────────────────────────────────── */
.top-bar {
    background: linear-gradient(135deg, #003344, #001a2e);
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
    padding: 8px 20px;
}

.top-bar a {
    color: var(--cyan);
    font-weight: 600;
}

/* ── Utility classes ────────────────────────────────────────── */
.text-cyan {
    color: var(--cyan);
}

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

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

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

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

.mb-0 {
    margin-bottom: 0;
}

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

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

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

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

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

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

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    animation: pulse-opacity 1.5s infinite;
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
    padding: 120px 0 60px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 70%),
        var(--navy);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero .lead {
    font-size: 1.1rem;
    max-width: 660px;
    margin: 0 auto 24px;
}

/* ── Forms (Login / Register) ────────────────────────────────── */
.form-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
    color: var(--muted);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.82rem;
    margin: 20px 0;
}

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

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

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-tracker-mobile {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

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

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

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

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

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .donut-wrap {
        justify-content: center;
    }

    section {
        padding: 56px 0;
    }

    .bar-row {
        grid-template-columns: 90px 1fr 50px;
    }

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

/* ── Forms ─────────────────────────────────────────────────── */
.form-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(180, 195, 220, 0.4);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--muted);
    font-size: 0.85rem;
}

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

/* ── Legal pages ────────────────────────────────────────────── */
.legal-section {
    padding: 60px 0 80px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--white);
    margin: 40px 0 14px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--cyan);
    margin: 20px 0 10px;
}

.legal-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.legal-content ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--muted);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.legal-content code {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.85em;
    color: var(--cyan);
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 60%), var(--navy);
    border-bottom: 1px solid var(--border);
    padding: 56px 0 56px;
}

.page-hero h1 {
    margin: 12px 0 14px;
}

.page-hero .lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* ── Top bar ────────────────────────────────────────────────── */
.top-bar {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(255, 215, 0, 0.06));
    border-bottom: 1px solid var(--border);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.83rem;
    color: var(--muted);
    position: relative;
    z-index: 1002;
}

.top-bar a {
    color: var(--gold);
    font-weight: 600;
}

.top-bar a:hover {
    color: var(--cyan);
}

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

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

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

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    h1 {
        font-size: 1.9rem;
    }

    .nav-inner {
        height: 60px;
    }

    .mobile-cta-group {
        flex-direction: column;
    }
}

/* ── Affiliate notice (⚖️ Legal Compliance) ─────────────────────── */
.affiliate-notice {
    font-size: 0.78rem;
    color: rgba(180, 195, 220, 0.55);
    text-align: center;
    padding: 14px 20px;
    background: rgba(255, 215, 0, 0.04);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    line-height: 1.6;
}

.affiliate-notice a {
    color: var(--cyan);
}

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

/* ── Performance: CSS Containment (⚡ LCP/CLS) ──────────────────── */
.card {
    contain: layout style;
}

.hero-float-badge {
    will-change: transform;
}

.bar-fill {
    will-change: width;
}

/* ── Focus Visible (♿ Accessibility) ───────────────────────────── */
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link:focus {
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 18px;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700;
    border-radius: 8px;
}

/* ── Print Styles ────────────────────────────────────────────────── */
@media print {

    .site-header,
    .mobile-nav,
    .nav-cta,
    .hamburger,
    .hero-float-badge,
    .affiliate-notice,
    .btn-primary {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

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

    .hero {
        min-height: auto;
        padding: 12px 0;
        background: #fff;
    }

    .hero::before {
        display: none;
    }

    .card {
        border: 1px solid #ccc;
        background: #fff;
        color: #000;
    }
}