/* =======================================
   SpinGranny-Online.de — Global Styles
   Colors: #1a0a2e (purple) + #FF6B00 (orange) + #FFD700 (gold)
======================================= */

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

:root {
    --bg-dark: #0d0618;
    --bg-card: #1a0a2e;
    --bg-card2: #210d38;
    --purple-mid: #2d1154;
    --purple-light: #3d1a6e;
    --orange: #FF6B00;
    --orange-light: #ff8c33;
    --orange-glow: rgba(255, 107, 0, 0.15);
    --gold: #FFD700;
    --gold-light: #ffe44d;
    --text-main: #f0eaf8;
    --text-muted: #b09ec8;
    --border: rgba(255, 107, 0, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-orange: 0 0 20px rgba(255, 107, 0, 0.3);
}

*,
*::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-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
}

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

a {
    color: var(--orange);
    text-decoration: none;
    transition: color .2s;
}

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

strong {
    color: var(--text-main);
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 6, 24, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1rem;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

nav a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all .2s;
}

nav a:hover,
nav a.active {
    color: #fff;
    background: var(--orange-glow);
}

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

.btn-login {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all .2s;
}

.btn-login:hover {
    color: #fff;
    border-color: var(--orange);
}

.btn-register {
    background: var(--orange);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all .2s;
    box-shadow: var(--glow-orange);
    animation: pulse-btn 3s ease-in-out infinite;
}

.btn-register:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 107, 0, 0.6);
    }
}

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

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

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg-dark);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

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

.mobile-nav a {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all .2s;
}

.mobile-nav a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.mobile-nav .btn-register-mobile {
    background: var(--orange);
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    border-color: var(--orange);
    margin-top: 1rem;
    box-shadow: var(--glow-orange);
}

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 6, 24, 0.95) 40%, rgba(13, 6, 24, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-glow);
    border: 1px solid var(--orange);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.bonus-highlight {
    background: linear-gradient(135deg, var(--bg-card2), var(--purple-mid));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bonus-highlight .amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.bonus-highlight .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--glow-orange);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 0 35px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f0a800);
    color: #0d0618;
    font-weight: 800;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    color: #0d0618;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-sm {
    padding: 3rem 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .25s;
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.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;
}

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

.rating-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* ===== TABLES ===== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

thead tr {
    background: var(--purple-mid);
    text-align: left;
}

thead th {
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .15s;
}

tbody tr:hover {
    background: var(--bg-card2);
}

tbody td {
    padding: 0.875rem 1rem;
    color: var(--text-muted);
    vertical-align: middle;
}

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

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.badge-orange {
    background: var(--orange-glow);
    color: var(--orange);
}

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

.badge-blue {
    background: rgba(96, 165, 250, 0.15);
    color: #93c5fd;
}

/* ===== CHART WRAPPERS ===== */
.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.chart-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* ===== BONUS BOX ===== */
.bonus-box {
    background: linear-gradient(135deg, var(--bg-card2), var(--purple-mid));
    border: 1px solid var(--orange);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--glow-orange);
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-box .big-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bonus-box .bonus-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== STEP BOXES ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

/* ===== INFO STRIP ===== */
.info-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}

.info-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-stat .num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
}

.info-stat .lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ===== ACCORDION (FAQ) ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color .2s;
}

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

.accordion-q .chevron {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--orange);
    transition: transform .3s;
}

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

.accordion-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.45);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 6, 24, 0.2) 0%, rgba(13, 6, 24, 0.95) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

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

.breadcrumb span {
    color: var(--orange);
}

/* ===== AUTHOR CARD ===== */
.author-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

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

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

.author-meta strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.2rem;
}

/* ===== PROGRESS BARS ===== */
.progress-wrap {
    margin-bottom: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.progress-label span:first-child {
    color: var(--text-main);
}

.progress-label span:last-child {
    color: var(--orange);
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: var(--purple-mid);
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 50px;
    transition: width .6s ease;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-brand p {
    font-size: 0.875rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
}

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

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

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

/* ===== PAYMENT ICONS ROW ===== */
.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.payment-chip {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all .2s;
}

.payment-chip:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== SEO TEXT SECTION ===== */
.seo-text {
    max-width: 860px;
    margin: 0 auto;
}

.seo-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.seo-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--orange-light);
}

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

.seo-text a {
    color: var(--orange);
    font-weight: 500;
}

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

.seo-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

.seo-text ul li {
    margin-bottom: 0.5rem;
}

.seo-text table {
    margin: 1.5rem 0;
}

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

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

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-login {
        display: none;
    }

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

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

    .footer-bottom {
        flex-direction: column;
    }

    .hero {
        min-height: 420px;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .page-hero {
        height: 220px;
    }

    .info-strip-inner {
        gap: 1.25rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 3rem 1rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-register {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
    }

    .header-inner {
        padding: 0;
    }

    .bonus-box {
        padding: 1.75rem 1.25rem;
    }

    .chart-container {
        padding: 1.25rem;
    }

    .step {
        padding: 1rem;
    }

    table {
        font-size: 0.8rem;
    }

    thead th {
        padding: 0.6rem 0.75rem;
    }

    tbody td {
        padding: 0.6rem 0.75rem;
    }

    .seo-text {
        max-width: 100%;
    }

    .author-profile {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-avatar {
        width: 100px;
        height: 100px;
    }

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

    .card {
        padding: 1.25rem;
    }

    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .page-hero-content h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 360px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .bonus-box {
        padding: 1.5rem;
    }
}

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

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

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

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

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

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

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

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

.flex {
    display: flex;
}

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

.gap-1 {
    gap: 1rem;
}

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

/* ===== REVIEW BOX ===== */
.review-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.review-score {
    text-align: center;
    flex-shrink: 0;
}

.review-score .big {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.review-score .max {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-criteria {
    flex: 1;
    min-width: 220px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    color: var(--text-main);
    margin: 0;
}

/* ===== LOGO SVG ===== */
.sg-logo-svg {
    fill: none;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }

/* ===== DIVIDER ===== */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0;
}

/* ===== AUTHOR CARD (inline small, for page top) ===== */
.author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2.5rem;
}

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

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

.author-meta strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

/* ===== AUTHOR PROFILE (full page) ===== */
.author-profile {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
    flex-shrink: 0;
}

.author-profile-info h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.author-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== SEO TEXT BLOCK ===== */
.seo-text {
    line-height: 1.85;
}

.seo-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.seo-text h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--orange-light);
}

.seo-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.seo-text li {
    margin-bottom: 0.4rem;
}

/* ===== PAYMENT ROW ===== */
.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.payment-chip {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text-main); }