/* Generated from main.css imports. Run tools/build-css-bundle.ps1 after editing component CSS. */

/* --- variables.css --- */

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    
    /* Fonts */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Mobile Safe Areas */
    --sat: env(safe-area-inset-top, 0px);
    --sab: env(safe-area-inset-bottom, 0px);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1600px) {
    :root {
        --container-width: 1400px;
    }
}

/* --- reset.css --- */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Global Buttons System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55);
    color: #ffffff !important;
}

.btn-primary i {
    font-size: 0.85em;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: scale(1.15);
}

/* Mobile Touch Feedback & Highlights */
html, body {
    overflow-x: hidden;
    width: 100%;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.15);
}

.btn-primary:active,
.btn-secondary:active,
.btn-review:active,
.btn-floating-cta:active,
.toc-link:active,
.related-link-card:active,
.home-cat-card:active,
.advantage-card:active,
.hbf-main-cta:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
}

/* Safari iOS GPU Acceleration for Glass Cards */
.glass-card,
.floating-cta-bar,
.site-header,
.search-results-dropdown {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Accessible keyboard focus for every interactive control. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--primary) !important;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Avoid sticky movement effects on touch-first devices. */
@media (hover: none) {
    .btn-primary:hover,
    .hbf-main-cta:hover,
    .toc-link:hover,
    .related-link-card:hover,
    .metric-card:hover,
    .app-badge-item:hover,
    .faq-item:hover,
    .home-cat-card:hover,
    .advantage-card:hover,
    .social-icon:hover,
    .btn-copy:hover,
    .btn-floating-cta:hover,
    .e-tag:hover {
        transform: none !important;
    }
}

/* Respect the operating-system motion preference. */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Clean, readable print output. */
@media print {
    body {
        background: #fff !important;
        color: #000 !important;
        overflow: visible;
    }

    .site-header,
    .site-footer,
    .floating-cta-bar,
    .popup-cta-card,
    .hero-bg-text,
    .glow-bg,
    .hbf-main-cta,
    .btn-primary,
    .btn-review,
    .comments-area {
        display: none !important;
    }

    .container,
    .review-content-full {
        max-width: none !important;
        width: 100% !important;
    }

    .glass-card {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #bbb !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .glass-card * {
        color: #000 !important;
        text-shadow: none !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }
}

/* --- components/header.css --- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    border-bottom: 1px solid transparent;
    will-change: transform, background-color;
    transform: translateZ(0);
}

.site-header.is-scrolled {
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Header Search Bar */
.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 260px;
    width: 100%;
}

.header-search-icon {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    pointer-events: none;
}

.header-search-input {
    width: 100%;
    padding: 9px 14px 9px 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.header-search-input:focus {
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

/* Logo & Branding */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo-icon {
    height: 45px;
    width: auto;
    border-radius: 10px;
    transition: var(--transition);
}

.site-header.is-scrolled .site-logo-icon {
    height: 35px;
}

.site-title-text {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.site-title-text span {
    color: var(--primary);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Burger Button */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

/* Mobile States */
@media (max-width: 992px) {
    .burger-menu {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: -webkit-fill-available;
        height: 100dvh;
        background: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    .main-navigation.is-active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-menu a {
        font-size: 2rem;
    }

    .burger-menu.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger-menu.is-active span:nth-child(2) { opacity: 0; }
    .burger-menu.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .site-header {
        padding: calc(12px + var(--sat, 0px)) 0 12px 0;
    }
}

@media (max-width: 480px) {
    .site-title-text {
        display: none;
    }
    .header-search-wrap {
        max-width: 180px;
    }
}

/* --- components/hero.css --- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15), transparent),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.1), transparent);
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    border-left: 1px solid var(--glass-border);
    padding-left: 20px;
}

/* Visual Part - Integration */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 650px;
    height: auto;
    z-index: 2;
    mix-blend-mode: lighten;
    /* Expanded mask to show more of the image */
    mask-image: radial-gradient(circle, black 60%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 95%);
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.2));
}

.home-banner-card {
    display: block;
}

.home-banner-content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
    gap: 32px;
    align-items: center;
}

.home-banner-text p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.home-banner-visual img {
    width: 100%;
    max-width: 320px;
    display: block;
    margin-left: auto;
    border-radius: 24px;
}

.home-banner-code {
    margin-top: 24px;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.glow-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(80px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.2; transform: scale(1); }
    to { opacity: 0.4; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 40px;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-info {
        border-left: 0;
        padding-left: 0;
    }
    
    .hero-visual {
        margin-top: 50px;
    }

    .home-banner-content {
        grid-template-columns: 1fr;
    }

    .home-banner-visual img {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* --- components/cards.css --- */

.glass-card {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stars {
    color: transparent;
    background: linear-gradient(90deg, #ffd700 var(--rating, 100%), rgba(255, 255, 255, 0.2) var(--rating, 100%));
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.top-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.top-list-logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 14px;
    margin: 0 auto 20px;
    padding: 8px;
}

.top-list-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-link {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================
   TABLE STYLES FOR CONTENT & SEO BLOCKS
   ========================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    -webkit-overflow-scrolling: touch;
}

.table-styled {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

.table-styled th,
.table-styled td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.table-styled th {
    background: rgba(99, 102, 241, 0.15);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.table-styled tr:last-child td {
    border-bottom: none;
}

.table-styled tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* ==========================================
   LINK STYLING FOR ARTICLES & CONTENT
   ========================================== */
.entry-content a,
.archive-description a,
.category-seo-text a,
.home-seo-extra-content a {
    color: #818cf8;
    text-decoration: none;
    border-bottom: 2px dashed rgba(129, 140, 248, 0.6);
    padding-bottom: 2px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.entry-content a:hover,
.archive-description a:hover,
.category-seo-text a:hover,
.home-seo-extra-content a:hover {
    color: #38bdf8;
    border-bottom-color: #38bdf8;
    border-bottom-style: solid;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

/* ==========================================
   STATIC PAGES & ABOUT US STYLES
   ========================================== */
.page-template-wrapper {
    padding-bottom: 60px;
}

.page-hero-header {
    padding: 130px 0 40px;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
    text-align: center;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-page-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro-lead p.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.about-section-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-subtitle i {
    color: var(--primary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.principle-card {
    padding: 30px;
    text-align: center;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.principle-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

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

.weight-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-weight: 800;
    border-radius: 8px;
    font-size: 0.85rem;
}

.about-nav-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-hero-header {
        padding: 100px 0 30px;
    }
    .page-title {
        font-size: 1.7rem;
    }
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

/* --- components/single-review.css --- */

/* 
 * Single Review Styles - Professional & High-End Refactor
 * Structure: 
 * 1. Global & Layout
 * 2. Hero Section
 * 3. Navigation & TOC
 * 4. Metrics & Components (Global Cards, Grids)
 * 5. Section Specifics (Bonuses, Line, Payments, App, Pros/Cons, Rating)
 * 6. Expert Content (Verdict, Author Box)
 * 7. FAQ Section
 * 8. SEO & Legal Content
 * 9. Consolidated Media Queries
 */

/* ==========================================
   1. GLOBAL & LAYOUT
   ========================================== */
.review-page {
    padding-bottom: 80px;
    overflow-x: hidden;
}

.rbk-breadcrumbs {
    padding: 20px 0;
    margin-top: 100px; /* Offset for fixed header */
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.current a {
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.breadcrumb-item.current {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.review-hero-modern {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15), transparent);
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
}

.hero-glass-panel {
    display: block; 
    padding: clamp(20px, 5vw, 60px);
    border-radius: clamp(24px, 4vw, 40px);
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
}

.hero-top-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.hero-logo-side {
    display: flex;
    justify-content: center;
}

.brand-logo-glow {
    width: 220px;
    height: 220px;
    background: var(--white);
    border-radius: 40px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    position: relative;
}

.brand-logo-glow::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
}

.brand-logo-glow img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -1px;
}

.hero-top-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legal-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.license-number {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-family: 'JetBrains Mono', monospace;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-title .dim {
    opacity: 0.6;
    font-weight: 300;
}

.hero-lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.h-stat {
    display: flex;
    flex-direction: column;
}

.h-stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.h-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    margin: 0 -60px 40px;
}

.hero-stats-row-simple {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.h-stat-simple {
    display: flex;
    flex-direction: column;
}

.h-stat-simple .h-stat-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.h-stat-simple .h-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
}

.hero-bottom-row {
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    padding: 30px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.05);
}

.hero-bonus-full-width {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hbf-promo-field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hbf-promo-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
}

.hbf-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
    border-radius: 15px;
    padding: 6px;
    transition: all 0.3s ease;
}

.hbf-input-wrap:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.hbf-input-wrap input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    width: 100%;
    padding: 0 15px;
    outline: none;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    letter-spacing: 2px;
}

.hbf-btn-copy {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.hbf-main-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 22px 30px;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.hbf-main-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
    color: var(--white);
}

.hbf-main-cta svg {
    transition: transform 0.3s ease;
}

.hbf-main-cta:hover svg {
    transform: translateX(5px);
}

.hbf-main-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.hbf-main-cta:hover::after {
    left: 150%;
    transition: 0.8s ease-in-out;
}

.hbf-details-area {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hbf-mini-spec span {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.hbf-mini-spec strong {
    color: #10b981;
}

.hbf-no-promo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.hero-rkn-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-rkn-disclaimer svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ==========================================
   3. NAVIGATION & TOC
   ========================================== */
.table-of-contents {
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.toc-label {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
}

.toc-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.toc-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================
   4. METRICS & COMPONENTS
   ========================================== */
.review-page .glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.section-title-simple {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.related-links-wrap {
    padding: 40px;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.related-link-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 150px;
    padding: 24px 26px;
    border-radius: 22px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}

.related-link-card::after {
    content: '→';
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.28);
    transition: transform 0.28s ease, color 0.28s ease;
}

.related-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.45);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.related-link-card:hover::after {
    color: var(--primary);
    transform: translateX(4px);
}

.related-link-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.related-link-text {
    max-width: 320px;
    padding-right: 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.bk-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.m-icon {
    font-size: 1.8rem;
    background: rgba(99, 102, 241, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
}

.m-info {
    display: flex;
    flex-direction: column;
}

.m-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.m-value {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 700;
}

.updated-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* Tooltip Styles */
.m-help-trigger {
    cursor: help;
    color: var(--primary);
    display: inline-flex;
    position: relative;
}

.m-help-trigger::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1e293b;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.4;
    width: 220px;
    text-transform: none;
    letter-spacing: normal;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.m-help-trigger:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.m-help-trigger::after {
    content: "";
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.m-help-trigger:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   5. SECTION SPECIFICS
   ========================================== */

/* Bonuses & Loyalty */
.bonuses-loyalty-wrap {
    padding: 40px;
    margin-bottom: 40px;
}

.bonuses-loyalty-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.bk-metrics-grid.bonus-metrics-mod {
    margin-bottom: 30px;
}

.metric-card.b-card-gold:hover {
    border-color: #facc15;
    background: rgba(250, 204, 21, 0.05);
}

.metric-card.b-card-gold .m-icon {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
}

.bonus-disclaimer-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-radius: 12px;
    border-left: 3px solid #facc15;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.bonus-disclaimer-mini svg {
    color: #facc15;
    flex-shrink: 0;
}

/* Payments Section */
.payments-deposit-wrap {
    padding: 40px;
    margin-bottom: 40px;
}

.payment-methods-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.p-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.p-badge svg {
    color: var(--primary);
}

.payment-disclaimer-box {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.p-disc-icon {
    font-size: 1.2rem;
}

.p-disc-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile App Section */
.mobile-app-wrap {
    padding: 40px;
    margin-bottom: 40px;
}

.app-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.app-badge-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.app-badge-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.ab-icon {
    font-size: 1.5rem;
}

.ab-info {
    display: flex;
    flex-direction: column;
}

.ab-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
}

.ab-val {
    font-size: 0.95rem;
    color: #fff;
}

.app-disclaimer-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
}

.app-disc-icon {
    font-size: 1.2rem;
}

.app-disc-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

/* Pros & Cons Section */
.bk-pros-cons-section {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
}

.section-title-accent {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--white);
    text-align: center;
}

.pros-cons-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pros-cons-separate-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.pc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-col h3, .cons-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.pc-list-seo {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-list-seo li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.pc-list-seo li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
}

.pros-list li::before { color: #10b981; }
.cons-list li::before { color: #ef4444; }

.verdict-seo-box {
    background: rgba(99, 102, 241, 0.08);
    border-radius: 20px;
    padding: 25px;
    border-left: 4px solid var(--primary);
    margin-bottom: 25px;
}

.ev-badge {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.verdict-seo-box p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
}

/* Rating Breakdown */
.rating-breakdown-wrap {
    padding: 40px;
    margin-bottom: 40px;
}

.rb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rb-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rb-title-wrap h3 {
    margin: 0;
    font-size: 1.4rem;
}

.rb-total-val {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-left: 10px;
}

.rb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rb-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.rb-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    border-radius: 4px;
}

/* ==========================================
   6. EXPERT CONTENT
   ========================================== */
.expert-verdict-wrap {
    display: flex;
    gap: 25px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.ev-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-content strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ev-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

.review-author-box {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-box-avatar { flex-shrink: 0; }
.author-box-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.author-box-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    margin-bottom: 5px;
}

.author-box-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.author-box-name a {
    color: var(--white);
    text-decoration: none;
}

.author-box-name a:hover { color: var(--primary); }

.author-box-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ==========================================
   7. FAQ SECTION
   ========================================== */
.faq-section-wrap {
    padding: 60px 40px;
    margin-bottom: 40px;
}

.faq-header-polish {
    margin-bottom: 40px;
    text-align: left;
}

.faq-pretitle {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.faq-question-row {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    border-left: 4px solid transparent;
}

.faq-question-row:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
}

.faq-item:hover .faq-question-row {
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--primary);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    line-height: 1.3;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-toggle-icon {
    background: var(--primary);
    color: #000;
    transform: rotate(180deg);
}

.faq-answer-wrap {
    padding: 0 30px 30px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    padding-top: 25px;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
}

/* ==========================================
   8. SEO & LEGAL CONTENT
   ========================================== */
.bottom-seo-wrap {
    margin-top: 60px;
    padding: 50px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.bottom-seo-h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-weight: 900;
    border-bottom: 1px solid var(--glass-border);
    letter-spacing: -0.5px;
}

.main-seo-h1-wrap { margin-bottom: 40px; }

.main-seo-h1-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary);
    border-radius: 20px 40px 40px 20px;
}

.h1-header-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.h1-icon-accent {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.15);
}

.main-seo-h1 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.h1-intro-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    padding-left: 85px;
}

.h1-intro-text a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
}

.h1-intro-text a:hover {
    color: var(--white);
    border-bottom-color: var(--primary);
}

.bottom-seo-wrap h2, .bottom-seo-wrap h3 {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.seo-author-mod { margin-bottom: 40px; }

.seo-content-inner {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.content-wrap, .specs-wrap {
    padding: 50px;
    border-radius: 30px;
}

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

.spec-item {
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.spec-item span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.spec-item strong {
    font-size: 1.2rem;
    color: var(--white);
}

.disclaimer-small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.4;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-compliance-wrap {
    padding: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.legal-text-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed rgba(99, 102, 241, 0.4);
}

.legal-benefits-list {
    list-style: none;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid #10b981;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
}

.legal-benefits-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding-left: 25px;
}

.legal-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
}

.verification-box-modern {
    background: rgba(99, 102, 241, 0.05);
    padding: 25px;
    border-radius: 20px;
    margin: 35px 0;
}

.verification-box-modern h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.verification-box-modern ol {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.legal-warning-box {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #f59e0b;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}

.line-odds-live-wrap {
    padding: 40px;
    margin-bottom: 40px;
}

.line-odds-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.expert-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.e-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.e-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* ==========================================
   9. CONSOLIDATED MEDIA QUERIES
   ========================================== */

/* Tablet & Large Mobile */
@media (max-width: 1200px) {
    .hero-top-row { grid-template-columns: 1fr; text-align: center; }
    .hero-top-meta, .hero-stats-row-simple { justify-content: center; }
    .hero-logo-side { margin: 0 auto 30px; }
    .hero-bonus-full-width { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-divider-line { margin: 0 0 40px; }
}

@media (max-width: 992px) {
    .pros-cons-separate-wrap { flex-direction: column; }
}

/* Standard Mobile (768px) */
@media (max-width: 768px) {
    .hero-glass-panel { padding: 30px 20px; border-radius: 30px; overflow: hidden; }
    .hero-title { font-size: 2.2rem; text-align: center; }
    .hero-lead-text { font-size: 0.95rem; text-align: center; margin: 0 auto 30px; }
    .brand-logo-glow { width: 140px; height: 140px; border-radius: 24px; }
    
    .hero-stats-row-simple { gap: 20px; justify-content: center; }
    .h-stat-simple .h-stat-val { font-size: 1.2rem; }
    
    .hbf-input-wrap { flex-direction: column; gap: 10px; padding: 10px; border-radius: 20px; }
    .hbf-input-wrap input { text-align: center; font-size: 1.3rem; padding: 10px 0; }
    .hbf-btn-copy { width: 100%; padding: 15px; }
    .hbf-main-cta { width: 100%; padding: 16px 20px; font-size: 1rem; white-space: nowrap; flex-wrap: nowrap; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    
    .hbf-details-area { flex-direction: column; gap: 15px; }
    .hbf-mini-spec { background: rgba(255,255,255,0.03); padding: 10px; border-radius: 10px; width: 100%; }

    .table-of-contents { flex-direction: column; align-items: stretch; padding: 20px; gap: 12px; }
    .toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .toc-link { text-align: center; padding: 12px 8px; font-size: 0.85rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; }

    .bk-metrics-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .rb-grid { grid-template-columns: 1fr; gap: 15px; }
    .related-links-grid { grid-template-columns: 1fr; }
    .related-links-wrap { padding: 30px 20px; }
    .related-link-card { min-height: auto; padding: 22px; }
    .related-link-text { max-width: none; padding-right: 22px; }

    .review-author-box { flex-direction: column; text-align: center; gap: 20px; }
    .author-box-avatar img { margin: 0 auto; }
    
    .faq-section-wrap { padding: 40px 20px; }
    .faq-question-row { padding: 25px; }
    .faq-question { font-size: 1.1rem; }
    .faq-answer-wrap { padding: 0 20px 25px 24px; }

    .pros-cons-grid-modern { grid-template-columns: 1fr; gap: 40px; }
    .bk-pros-cons-section { padding: 30px 20px; }
    
    .expert-verdict-wrap { flex-direction: column; gap: 15px; padding: 25px; }
    
    .p-badge { width: 100%; justify-content: center; }
    .h1-header-row { flex-direction: column; text-align: center; gap: 15px; }
    .main-seo-h1 { font-size: 1.4rem; }
    .h1-intro-text { padding-left: 0; text-align: center; font-size: 1rem; }
    .main-seo-h1-element { padding: 30px 20px; }
    .bottom-seo-wrap { padding: 30px 20px; }
    .hero-bg-text { font-size: 15vw; top: 10%; }
}

/* Small Mobile (480px) & Anti-Cabbage Hotfixes */
@media (max-width: 480px) {
    /* Hero Bonus Console Fix (Nesting) */
    .hero-bottom-row { padding: 20px 15px; }
    .hbf-details-area { display: contents; }
    .hbf-mini-spec {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        padding: 12px 15px;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    .hbf-updated {
        width: 100%;
        text-align: center;
        font-size: 0.75rem;
        opacity: 0.5;
        margin-top: 5px;
    }

    /* Main Bonus Section Fix (Nesting & Width) */
    .bonuses-loyalty-wrap {
        padding: 25px 0;
        background: transparent;
        border: none;
    }
    .bonuses-loyalty-content { padding: 0 15px; }
    .bk-metrics-grid.bonus-metrics-mod { display: contents; }
    .metric-card.b-card-gold {
        margin-bottom: 12px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px 20px;
        width: 100%;
    }
}

/* --- components/rating-table.css --- */

.rating-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
}

.rating-table-header {
    display: grid;
    grid-template-columns: 60px 1.5fr 1fr 1fr 1.2fr;
    padding: 15px 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 15px;
}

.rating-row {
    display: grid;
    grid-template-columns: 60px 1.5fr 1fr 1fr 1.2fr;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 12px;
    border-radius: 20px;
}

.col-rank {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.col-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.table-logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.table-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    text-align: center;
}

.bk-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.bonus-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.bonus-val {
    font-weight: 800;
    font-size: 1.2rem;
}

.stars-wrap {
    display: flex;
    flex-direction: column;
}

.stars {
    color: transparent;
    background: linear-gradient(90deg, #ffd700 var(--rating, 100%), rgba(255, 255, 255, 0.2) var(--rating, 100%));
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    letter-spacing: 2px;
}

.rating-num {
    font-weight: 800;
    font-size: 1.1rem;
}

.col-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-actions .btn-play,
.col-actions .btn-review {
    flex: 1 1 0;
    min-width: 0;
}

.btn-sm {
    padding: 11px 22px;
    font-size: 0.9rem;
    border-radius: 12px;
}

.btn-play {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .rating-table-header {
        display: none;
    }
    
    .rating-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px 16px;
        text-align: left;
    }
    
    .col-rank {
        grid-column: span 2;
    }
    
    .col-actions {
        grid-column: span 2;
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }

    .col-actions .btn-play,
    .col-actions .btn-review {
        flex: 1;
        min-height: 44px;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .table-logo {
        width: 48px;
        height: 48px;
    }
}

/* --- components/footer.css --- */

.site-footer {
    background: linear-gradient(to top, #000, var(--dark-lighter));
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: block;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-about p {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* --- components/archive-bk.css --- */

.archive-header {
    padding: 140px 0 60px;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.archive-filters {
    margin-top: -30px;
    z-index: 10;
    position: relative;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-radius: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-chips-bar {
    padding: 15px 30px;
    border-radius: 20px;
}

.category-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
}

.filter-btn {
    padding: 8px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.filter-search input {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 12px;
    color: var(--white);
    width: 250px;
    outline: none;
    transition: var(--transition);
}

.filter-search input:focus {
    border-color: var(--primary);
    background: rgba(0,0,0,0.4);
}

.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bk-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    height: 100%;
    position: relative;
}

/* Badges */
.bk-badge-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bk-badge-tag.top { background: #fbbf24; color: #000; }
.bk-badge-tag.new { background: #10b981; color: #fff; }
.bk-badge-tag.promo { background: #ec4899; color: #fff; }
.bk-badge-tag.fast { background: #6366f1; color: #fff; }

.bk-card-logo {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bk-card-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.bk-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bk-card-info {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bk-info-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
}

.bk-info-item strong {
    font-size: 1rem;
    color: var(--white);
}

.bk-card-actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
    width: 100%;
}

.bk-card-actions .btn-primary,
.bk-card-actions .btn-secondary {
    flex: 1;
    width: 50%;
    text-align: center;
    justify-content: center;
    min-height: 46px;
}

@media (max-width: 992px) {
    .filter-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .filter-search input {
        width: 100%;
    }
}

/* Live Search Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 100;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    max-height: 350px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-item-logo {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.search-item-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-item-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.search-item-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* Category Bottom SEO Text Block */
.category-seo-text {
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.category-seo-text h2, 
.category-seo-text h3 {
    color: var(--white);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.category-seo-text p {
    margin-bottom: 1.2em;
}

.category-seo-text ul, 
.category-seo-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2em;
}

.category-seo-text li {
    margin-bottom: 0.5em;
}

/* --- components/author.css --- */

.author-header {
    padding: 160px 0 60px;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent);
}

.author-card {
    display: flex;
    gap: 50px;
    padding: 60px;
    border-radius: 40px;
    align-items: center;
}

.author-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.author-photo {
    width: 250px;
    height: 250px;
    border-radius: 30px;
    object-fit: cover; /* Maintain aspect ratio */
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

.expert-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.author-info h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.author-role {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 700px;
}

.author-stats {
    display: flex;
    gap: 40px;
}

.a-stat {
    display: flex;
    flex-direction: column;
}

.a-stat strong {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
}

.a-stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    font-weight: 700;
}

.author-posts {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

@media (max-width: 992px) {
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .author-info h1 { font-size: 2.5rem; }
    .author-stats { justify-content: center; }
}

/* --- components/compliance.css --- */

/* Reset Logo Side to vertical stack */
.hero-logo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.brand-logo-glow {
    width: 220px;
    height: 220px;
    background: var(--white);
    border-radius: 40px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    position: relative;
    margin: 0;
}

/* License Badge under Logo */
.hero-license-badge {
    text-align: center;
    background: rgba(255,255,255,0.03);
    padding: 15px 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    width: 220px;
    backdrop-filter: blur(10px);
}

.lic-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.lic-val {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsible Tags in Header */
.age-limit-tag {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
}

.responsible-tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    font-weight: 700;
}

/* Responsible Gaming Block (Bottom) */
.responsible-gaming-block {
    margin-top: 40px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    border-left: 4px solid #ef4444;
}

.rg-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ef4444;
}

.rg-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.rg-content strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .responsible-gaming-block {
        flex-direction: column;
        text-align: center;
    }
}

/* --- components/advantages.css --- */

.pros-cons-separate-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pc-card {
    padding: 35px;
}

.pc-pros {
    border-top: 3px solid #10b981;
}

.pc-cons {
    border-top: 3px solid #ef4444;
}

.pc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pc-header h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.pc-pros .pc-header h3 { color: #10b981; }
.pc-cons .pc-header h3 { color: #ef4444; }

.pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.pc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pc-pros li::before { background: #10b981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
.pc-cons li::before { background: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }

@media (max-width: 992px) {
    .pros-cons-separate-wrap {
        grid-template-columns: 1fr;
    }
}

/* Homepage Advantages Block */
.advantages-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 35px 30px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.15);
}

.adv-icon-wrap {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.advantage-card:hover .adv-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.adv-icon-shield {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(79, 70, 229, 0.1));
    color: #818cf8;
    border-color: rgba(99, 102, 241, 0.3);
}

.adv-icon-gift {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(219, 39, 119, 0.1));
    color: #f472b6;
    border-color: rgba(236, 72, 153, 0.3);
}

.adv-icon-bolt {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.1));
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.adv-icon-chart {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.1));
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

.adv-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--white);
}

.adv-card-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

    .advantage-card {
        padding: 25px 20px;
        gap: 18px;
    }

    .adv-icon-wrap {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }
}

/* --- components/home-categories.css --- */

/* Popular Bookmaker Categories Block */
.home-categories-hub {
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--glass-border);
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.home-categories-hub .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-categories-hub .section-header p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 10px auto 0;
}

.home-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.home-cat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    padding: 25px 24px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-cat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.15);
}

.home-cat-icon-wrap {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-cat-card:hover .home-cat-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.cat-icon-gift {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(219, 39, 119, 0.1));
    color: #f472b6;
    border-color: rgba(236, 72, 153, 0.3);
}

.cat-icon-bolt {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.1));
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.cat-icon-shield {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(79, 70, 229, 0.1));
    color: #818cf8;
    border-color: rgba(99, 102, 241, 0.3);
}

.cat-icon-chart {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.1));
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

.cat-icon-cyber {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(2, 132, 199, 0.1));
    color: #38bdf8;
    border-color: rgba(14, 165, 233, 0.3);
}

.cat-icon-app {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(147, 51, 234, 0.1));
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.3);
}

.home-cat-info h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.home-cat-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .home-cats-grid {
        grid-template-columns: 1fr;
    }

    .home-cat-card {
        padding: 20px;
        gap: 16px;
    }

    .home-cat-icon-wrap {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.35rem;
        border-radius: 14px;
    }
}

/* --- components/floating-cta.css --- */

/* Floating CTA Bar Style with Close Button */
.floating-cta-bar {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 900px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta-bar.visible {
    bottom: 20px;
}

.floating-cta-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(239, 68, 68, 0.3);
    transition: 0.3s;
    z-index: 10;
}

.floating-cta-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #dc2626;
}

.f-cta-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-cta-logo {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.f-cta-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.f-cta-text-wrap {
    display: flex;
    flex-direction: column;
}

.f-cta-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.f-cta-bonus {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.btn-floating-cta {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    transition: 0.3s;
}

.btn-floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

@media (max-width: 768px) {
    .floating-cta-bar { 
        padding: 10px 14px; 
        width: 94%; 
        bottom: -150px;
        border-radius: 16px;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }
    .floating-cta-bar.visible { bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
    
    .f-cta-info { gap: 10px; flex: 1; min-width: 0; align-items: center; }
    
    .f-cta-logo { 
        display: flex;
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
    }
    
    .f-cta-text-wrap { 
        display: flex; 
        min-width: 0;
    }
    
    .f-cta-title { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .f-cta-bonus { font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #10b981; }
    
    .btn-floating-cta { 
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 22px; 
        font-size: 0.9rem; 
        min-height: 44px;
        white-space: nowrap;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
    
    .floating-cta-close { 
        top: -10px; 
        right: -10px; 
        width: 32px; 
        height: 32px;
        position: absolute;
    }

    .floating-cta-close::before {
        content: '';
        position: absolute;
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }
}

/* --- components/bonus-offer.css --- */

.bonus-offer-card {
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(99, 102, 241, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.bo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.bo-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bo-title {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
    font-weight: 900;
}

.bo-updated {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 100px;
}

.bo-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

/* Promo Box */
.promo-code-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.promo-input-group {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.promo-input-group input {
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1.25rem;
    width: 100%;
    padding: 0 15px;
    outline: none;
}

.btn-copy {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Specs */
.bo-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.bo-spec-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.bos-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.bos-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 5px;
}

.bo-cta {
    padding: 20px;
    font-size: 1.1rem;
}

.bo-disclaimer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 992px) {
    .bo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bo-header {
        flex-direction: column;
        gap: 20px;
    }
    .promo-input-group {
        flex-direction: column;
    }
    .bo-specs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- components/faq.css --- */

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0 !important;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:focus-visible,
.faq-question-row:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 30px 30px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Active State */
.faq-item.is-active .faq-answer {
    max-height: 500px;
}

.faq-item.is-active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-item.is-active .faq-question {
    background: rgba(255, 255, 255, 0.03);
}

/* --- main.css extra rules --- */

/* Performance & Offscreen Content Optimization */
.home-categories-hub,
.advantages-section,
.home-blog-section,
.home-seo-section,
.compliance-section,
.site-footer,
.table-of-contents,
.related-links-wrap,
.bk-single-faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}
