/* ═══════════════════════════════════════════════════════
   FlappyCasino-online.de — Design System
   Brand: Dark Navy #0f1923 | Orange #f5a023 | Green #28a84a
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────── */
:root {
    --bg: #0a1220;
    --bg2: #0f1923;
    --bg3: #162030;
    --bg4: #1c2a3f;
    --border: rgba(245, 160, 35, .18);
    --orange: #f5a023;
    --orange2: #e8900f;
    --green: #28a84a;
    --green2: #1f8c3c;
    --gold: #ffd166;
    --white: #ffffff;
    --text: #e2e8f0;
    --muted: #8fa3ba;
    --r: 8px;
    --r2: 14px;
    --r3: 20px;
    --trans: all .22s ease;
    --shadow: 0 8px 32px rgba(0, 0, 0, .45);
    --glow-o: 0 0 24px rgba(245, 160, 35, .35);
    --glow-g: 0 0 24px rgba(40, 168, 74, .3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none
}

/* ── Skip link ────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: var(--r);
    font-weight: 700;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: .5rem
}

/* ── Container ────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.25rem
}

.section {
    padding: 4.5rem 0
}

.section-alt {
    background: var(--bg2)
}

.section-dark {
    background: var(--bg3)
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    max-width: 130px;
    height: 50px
}

.logo-link img {
    width: auto !important;
    max-width: 130px !important;
    height: 50px !important;
    object-fit: cover;
    object-position: top center
}

.site-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: .88rem;
    padding: .4rem .75rem;
    border-radius: var(--r);
    transition: var(--trans);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--orange);
    background: rgba(245, 160, 35, .1)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0
}

.btn-login-sm {
    color: var(--muted);
    font-weight: 600;
    font-size: .85rem;
    padding: .45rem .9rem;
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: var(--trans);
}

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

/* Mobile CTA */
.header-cta-mobile {
    display: none
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--trans);
}

.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 */
.mobile-nav {
    display: none;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
}

.mobile-nav.open {
    display: block
}

.mobile-nav a {
    display: block;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--text);
}

.mobile-nav a:last-child {
    border-bottom: none
}

.mobile-nav .mob-cta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--orange);
    color: #0a0a0a;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    padding: .7rem 1.6rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: var(--glow-o);
    white-space: nowrap;
}

.btn-orange:hover {
    background: var(--orange2);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 160, 35, .5)
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    padding: .7rem 1.6rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: var(--glow-g);
    white-space: nowrap;
}

.btn-green:hover {
    background: var(--green2);
    transform: translateY(-2px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--orange);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    padding: .65rem 1.4rem;
    border-radius: 50px;
    border: 2px solid var(--orange);
    transition: var(--trans);
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--orange);
    color: #0a0a0a
}

.text-link {
    color: var(--orange);
    font-weight: 600;
    border-bottom: 1px solid rgba(245, 160, 35, .3);
    transition: var(--trans)
}

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

/* ══════════════════════════════════════════════════════
   HERO (Homepage)
   ══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #060d15 0%, #0f1923 40%, #0a1a0f 100%);
    padding: 5rem 0 3.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(245, 160, 35, .08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(40, 168, 74, .07) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 160, 35, .12);
    border: 1px solid rgba(245, 160, 35, .25);
    color: var(--orange);
    font-size: .82rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
    margin-bottom: 1.1rem;
}

.hero h1 .hl {
    color: var(--orange)
}

.hero-desc {
    color: var(--muted);
    font-size: 1.06rem;
    max-width: 520px;
    margin-bottom: 1.75rem
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

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

.hstat {
    text-align: center
}

.hstat-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--orange)
}

.hstat-lbl {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-visual {
    position: relative;
    border-radius: var(--r3);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: #0a0a0a;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .85rem;
    padding: .4rem .9rem;
    border-radius: 50px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 160, 35, .5)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 160, 35, 0)
    }
}

/* ══════════════════════════════════════════════════════
   BONUS STRIP
   ══════════════════════════════════════════════════════ */
.bonus-strip {
    background: linear-gradient(90deg, #0d1e10, #0f2215, #0a1220);
    border-top: 2px solid rgba(245, 160, 35, .25);
    border-bottom: 2px solid rgba(245, 160, 35, .25);
    padding: 1.5rem 0;
}

.bonus-strip-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bchip {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .6rem 1.1rem;
}

.bchip-icon {
    font-size: 1.3rem
}

.bchip-label {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.bchip-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: var(--orange)
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(180deg, #060e18 0%, var(--bg2) 100%);
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: .75rem;
    flex-wrap: wrap
}

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

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

.breadcrumb-sep {
    opacity: .4
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(245, 160, 35, .1);
    border: 1px solid rgba(245, 160, 35, .2);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 50px;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.page-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: .6rem;
}

.page-hero p {
    color: var(--muted);
    max-width: 640px
}

.page-hero-img {
    margin-top: 1.5rem;
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid var(--border);
    max-height: 220px;
}

.page-hero-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

/* ══════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════ */
.section-head {
    margin-bottom: 2.5rem
}

.section-head.center {
    text-align: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: .6rem;
}

.section-head h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: .5rem;
}

.section-head p {
    color: var(--muted);
    max-width: 600px
}

.section-head.center p {
    margin: 0 auto
}

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

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

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

.card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 1.5rem;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(245, 160, 35, .4);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

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

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

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

.card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: .5rem
}

.card-text {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6
}

.card-badge {
    display: inline-block;
    background: rgba(245, 160, 35, .15);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 50px;
    margin-bottom: .6rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.card-badge.green {
    background: rgba(40, 168, 74, .15);
    color: var(--green)
}

.card-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .25rem;
}

.card-val.green {
    color: var(--green)
}

/* Horizontal feature card */
.feat-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 1.25rem;
    transition: var(--trans);
}

.feat-card:hover {
    border-color: rgba(245, 160, 35, .35);
    box-shadow: var(--shadow)
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r);
    flex-shrink: 0;
    background: rgba(245, 160, 35, .1);
    border: 1px solid rgba(245, 160, 35, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feat-icon.g {
    background: rgba(40, 168, 74, .1);
    border-color: rgba(40, 168, 74, .2)
}

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

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

caption {
    font-size: .8rem;
    color: var(--muted);
    padding: .6rem;
    text-align: left;
    font-style: italic
}

th {
    background: var(--bg4);
    color: var(--orange);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: .85rem 1rem;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
}

td {
    padding: .8rem 1rem;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: middle;
}

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

tr:nth-child(even) {
    background: rgba(255, 255, 255, .02)
}

tr:hover {
    background: rgba(245, 160, 35, .04)
}

/* ══════════════════════════════════════════════════════
   TAGS / BADGES
   ══════════════════════════════════════════════════════ */
.tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.tag-o {
    background: rgba(245, 160, 35, .15);
    color: var(--orange)
}

.tag-g {
    background: rgba(40, 168, 74, .15);
    color: var(--green)
}

.tag-b {
    background: rgba(99, 179, 237, .15);
    color: #63b3ed
}

.tag-r {
    background: rgba(252, 129, 74, .15);
    color: #fc814a
}

/* ══════════════════════════════════════════════════════
   CHART
   ══════════════════════════════════════════════════════ */
.chart-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 1.5rem;
}

.chart-title {
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: .5rem
}

.chart-sub {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 1.25rem
}

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

.chart-wrap canvas {
    max-width: 100% !important;
    height: auto !important
}

.chart-note {
    font-size: .75rem;
    color: var(--muted);
    margin-top: .75rem;
    text-align: center
}

/* ══════════════════════════════════════════════════════
   RATING WIDGET
   ══════════════════════════════════════════════════════ */
.rating-widget {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 1.5rem;
    text-align: center;
}

.rating-score {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
}

.rating-max {
    font-size: 1.5rem;
    color: var(--muted)
}

.rating-stars {
    font-size: 1.4rem;
    margin: .4rem 0;
    color: var(--orange)
}

.rating-label {
    font-size: .82rem;
    color: var(--muted)
}

.rating-bars {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.rbar-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem
}

.rbar-name {
    width: 90px;
    text-align: right;
    color: var(--muted);
    flex-shrink: 0
}

.rbar-track {
    flex: 1;
    background: var(--bg4);
    border-radius: 50px;
    height: 6px;
    overflow: hidden
}

.rbar-fill {
    height: 6px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transition: width .8s ease
}

.rbar-val {
    width: 35px;
    font-weight: 700;
    color: var(--text);
    font-size: .82rem
}

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    transition: var(--trans);
}

.faq-q:hover {
    color: var(--orange)
}

.faq-q .chevron {
    flex-shrink: 0;
    font-size: .9rem;
    color: var(--orange);
    transition: transform .25s
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.faq-a.open {
    display: block
}

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

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

.pc-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 1.5rem
}

.pc-box.pros {
    border-top: 3px solid var(--green)
}

.pc-box.cons {
    border-top: 3px solid #fc814a
}

.pc-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem
}

.pc-list li {
    display: flex;
    gap: .6rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .9rem;
}

.pc-list li:last-child {
    border-bottom: none
}

.pc-list li::before {
    flex-shrink: 0;
    font-size: .9rem;
    margin-top: .1rem
}

.pc-box.pros .pc-list li::before {
    content: '✓';
    color: var(--green)
}

.pc-box.cons .pc-list li::before {
    content: '!';
    color: #fc814a
}

/* ══════════════════════════════════════════════════════
   SEO ARTICLE
   ══════════════════════════════════════════════════════ */
.seo-article {
    max-width: 820px
}

.seo-article h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    margin: 2.5rem 0 .9rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

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

.seo-article h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1.5rem 0 .6rem
}

.seo-article p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.72
}

.seo-article p:last-child {
    margin-bottom: 0
}

/* Author mini */
.author-byline {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: .9rem 1.1rem;
    margin-bottom: 2rem;
}

.author-byline img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange)
}

.author-name {
    font-weight: 700;
    font-size: .92rem
}

.author-meta {
    font-size: .78rem;
    color: var(--muted)
}

.author-meta span {
    color: var(--orange)
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 1.5rem;
    margin-top: auto;
}

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

.footer-brand img {
    width: 120px;
    margin-bottom: .9rem
}

.footer-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: .9rem
}

.footer-age {
    display: inline-block;
    background: var(--orange);
    color: #0a0a0a;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    padding: .2rem .7rem;
    border-radius: 50px;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    color: var(--white);
    margin-bottom: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-col a {
    display: block;
    font-size: .85rem;
    color: var(--muted);
    padding: .3rem 0;
    transition: var(--trans);
}

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

.footer-disclaimer {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.65;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}

.footer-disclaimer a {
    color: var(--orange)
}

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

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

.footer-links a {
    color: var(--muted);
    font-size: .78rem
}

.footer-links a:hover {
    color: var(--orange)
}

/* ══════════════════════════════════════════════════════
   FORM
   ══════════════════════════════════════════════════════ */
.form-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.form-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: .4rem
}

.form-sub {
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 1.5rem
}

.form-group {
    margin-bottom: 1.1rem
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .4rem;
    color: var(--text)
}

.form-group input,
.form-group select {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--text);
    font-size: .92rem;
    transition: var(--trans);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 160, 35, .12);
}

.form-or {
    text-align: center;
    color: var(--muted);
    font-size: .85rem;
    margin: .75rem 0;
    position: relative
}

.form-or::before,
.form-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}

.form-or::before {
    left: 0
}

.form-or::after {
    right: 0
}

.form-link {
    color: var(--orange);
    font-weight: 600
}

.form-note {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 1rem;
    text-align: center
}

/* ══════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════ */
.text-orange {
    color: var(--orange)
}

.text-green {
    color: var(--green)
}

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

.text-center {
    text-align: center
}

.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════════════════
   MOBILE
   ══════════════════════════════════════════════════════ */
@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        order: -1;
        aspect-ratio: 16/9
    }

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

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

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

    .pc-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {

    .site-nav,
    .header-actions {
        display: none
    }

    .hamburger {
        display: flex
    }

    .header-cta-mobile {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: .5rem;
    }

    .header-cta-mobile .btn-orange {
        font-size: .78rem;
        padding: .45rem .9rem;
    }

    .logo-link img {
        width: 90px !important;
        max-width: 90px !important
    }

    .grid-3,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .chart-wrap {
        height: 200px !important;
        min-height: 160px
    }

    .chart-wrap canvas {
        max-height: 200px !important
    }

    .chart-box {
        padding: 1rem
    }

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

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

    .pc-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        gap: 1rem
    }

    .bonus-strip-inner {
        gap: .75rem;
        justify-content: center
    }

    table {
        min-width: 380px
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 .9rem
    }

    .section {
        padding: 3rem 0
    }

    .hero {
        padding: 3rem 0 2.5rem
    }

    .hero h1 {
        font-size: 1.7rem
    }
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--dark-deep) 0%, var(--dark-mid) 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.page-eyebrow {
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: .6rem
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: .8rem;
    color: var(--text-primary)
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px
}

.page-hero-img {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.page-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 220px
}

/* ═══════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.feat-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    transition: border-color .2s
}

.feat-card:hover {
    border-color: var(--orange)
}

.feat-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-page {
    padding: 3rem 0 4rem
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: .5rem
}

.legal-page h2 {
    font-size: 1.3rem;
    margin: 2rem 0 .6rem;
    color: var(--orange)
}

.legal-page p,
.legal-page ul,
.legal-page li {
    color: var(--text-muted);
    line-height: 1.8
}

.legal-page ul {
    padding-left: 1.5rem;
    margin: .8rem 0
}

.legal-page a {
    color: var(--orange);
    text-decoration: underline
}

.legal-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border)
}

.legal-nav a {
    color: var(--orange);
    text-decoration: none;
    font-size: .9rem;
    border: 1px solid var(--orange);
    padding: .4rem 1rem;
    border-radius: 6px;
    transition: background .2s
}

.legal-nav a:hover {
    background: rgba(245, 160, 35, .1)
}

.responsible-alert {
    background: rgba(245, 160, 35, .08);
    border: 1px solid rgba(245, 160, 35, .3);
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    color: var(--text-muted)
}

.responsible-alert strong {
    color: var(--orange)
}

/* ═══════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════ */
.auth-card {
    max-width: 420px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center
}

.auth-logo {
    margin-bottom: 1.5rem
}

.auth-logo img {
    max-width: 160px;
    height: auto
}

.auth-title {
    font-size: 1.6rem;
    margin-bottom: .5rem
}

.auth-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem
}

.auth-cta-box {
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.auth-cta-box p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 1rem
}

.auth-note {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .8rem
}

.auth-links {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.auth-links a {
    color: var(--orange);
    text-decoration: none;
    font-size: .9rem
}

.auth-links a:hover {
    text-decoration: underline
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.5rem 0 2rem
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0
}

.contact-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: .3rem
}

.contact-item p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0
}

.contact-form {
    max-width: 600px
}

.form-group {
    margin-bottom: 1.2rem
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: .9rem
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange)
}

.form-group select {
    cursor: pointer
}

.form-group select option {
    background: var(--dark-deep);
    color: var(--text-primary)
}

/* ═══════════════════════════════════════
   AUTHOR PROFILE
   ═══════════════════════════════════════ */
.author-profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.author-photo {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 3px solid var(--orange);
    align-self: flex-start
}

.author-profile-info h2 {
    font-size: 1.6rem;
    margin-bottom: .2rem
}

.author-title {
    color: var(--orange);
    font-size: .95rem;
    margin-bottom: 1rem
}

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

.author-table td {
    padding: .5rem .3rem;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    vertical-align: top
}

.author-table td:first-child {
    width: 110px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap
}

/* ═══════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════ */
@media(max-width:768px) {
    .grid-3 {
        grid-template-columns: 1fr
    }

    .page-hero h1 {
        font-size: 1.6rem
    }

    .auth-card {
        padding: 1.5rem
    }

    .author-profile-card {
        padding: 1.2rem
    }

    .contact-form {
        max-width: 100%
    }
}