

:root {
    /* Surfaces */
    --surface-primary: #FFFFFF;
    --surface-secondary: #F5F5F7;
    --surface-tertiary: #E8E8ED;
    --surface-deep: #FAFBFC;
    --surface-raised: #FFFFFF;
    --surface-elevated: rgba(255,255,255,0.97);
    --surface-overlay: rgba(255,255,255,0.92);
    --surface-void: #F0F1F5;

    /* Brand */
    --brand-primary: #8e7e29;
    --brand-dark: #63581c;
    --brand-light: #c6b039;
    --brand-bg: rgba(142,126,41, 0.08);
    --brand-bg-hover: rgba(142,126,41, 0.14);
    --brand-rgb: 142,126,41;

    /* Content */
    --content-main: #1D1D1F;
    --content-high: #000000;
    --content-dim: #6E6E73;
    --content-muted: #AEAEB2;
    --content-subtle: #D1D1D6;

    /* Status */
    --success: #34C759;
    --warning: #FF9500;
    --error: #FF3B30;
    --gold: #8e7e29;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #8e7e29 0%, #63581c 100%);
    --grad-cta: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    --grad-gold: linear-gradient(135deg, #8e7e29 0%, #63581c 100%);
    --grad-surface: linear-gradient(180deg, #FFFFFF 0%, #F5F5F7 100%);
    --grad-shine: linear-gradient(135deg, #8e7e29 0%, #c6b039 50%, #8e7e29 100%);

    /* Glass */
    --glass-bg: rgba(255,255,255,0.75);
    --glass-bg-hover: rgba(255,255,255,0.9);
    --glass-bg-active: rgba(142,126,41, 0.06);
    --glass-edge: rgba(0,0,0,0.08);
    --glass-edge-active: rgba(142,126,41, 0.3);
    --glass-blur: 20px;
    --glass-blur-strong: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.8);
    --glow-sm: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
    --glow-md: 0 0 0 4px rgba(var(--brand-rgb), 0.16);
    --glow-lg: 0 0 0 6px rgba(var(--brand-rgb), 0.20);
    --glow-text: none;

    /* Space — compact */
    --space-3xs: 4px;
    --space-2xs: 6px;
    --space-xs: 10px;
    --space-sm: 14px;
    --space-md: 20px;
    --space-lg: 28px;
    --space-xl: 40px;
    --space-2xl: 56px;
    --space-3xl: 72px;
    --space-4xl: 96px;

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Fonts */
    --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', system-ui, sans-serif;
    --font-mono: 'SF Mono', 'JetBrains Mono', monospace;

    /* Transitions */
    --ease-out: 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-toast: 600;
    --z-max: 9999;
}


/* Theme: Neon Glow */
:root {
    --font-display: 'Exo 2', 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', 'Source Sans 3', 'Roboto', sans-serif;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 0 8px rgba(var(--brand-rgb),0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 0 16px rgba(var(--brand-rgb),0.10);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.10), 0 0 32px rgba(var(--brand-rgb),0.12);
    --space-3xs: 4px;
    --space-2xs: 6px;
    --space-xs: 10px;
    --space-sm: 14px;
    --space-md: 20px;
    --space-lg: 28px;
    --space-xl: 40px;
    --space-2xl: 56px;
    --space-3xl: 72px;
    --space-4xl: 96px;
    --content-width: 1100px;
    --glass-blur: 28px;
    --ease-out: 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}
.content-layout { max-width: 1100px; margin: 0 auto; }
.cards-grid { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.cards-grid > * { flex: 1 1 280px; }

/* ==============================================
   RESET & BASE
   ============================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 60px;
}

body {
    font-family: var(--font-body);
    background: var(--surface-secondary);
    color: var(--content-main);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(var(--brand-rgb), 0.2);
    color: var(--content-high);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--surface-secondary); }
::-webkit-scrollbar-thumb {
    background: var(--content-subtle);
    border-radius: var(--radius-full);
    border: 2px solid var(--surface-secondary);
}
::-webkit-scrollbar-thumb:hover { background: var(--content-muted); }

a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: var(--ease-out);
}
a:hover { color: var(--brand-primary); }

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

/* Container */
.g12f-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .g12f-container { padding: 0 var(--space-sm); }
}

/* ==============================================
   BACKGROUND EFFECTS — subtle for light theme
   ============================================== */

.g12f-background-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.g12f-background-effects::before,
.g12f-background-effects::after { display: none; }

.g12f-gradient-orb { display: none; }
.g12f-orb-1, .g12f-orb-2, .g12f-orb-3 { display: none; }
.g12f-grid-overlay { display: none; }

/* ==============================================
   HEADER — Apple-style light frosted glass
   ============================================== */

.g12f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    height: 48px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.g12f-header::before,
.g12f-header::after { display: none !important; }

.g12f-header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.g12f-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.g12f-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.g12f-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    transition: var(--ease-out);
}

.g12f-logo:hover {
    opacity: 0.7;
}

/* Navigation */
.g12f-main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.g12f-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.g12f-nav-list li { flex-shrink: 0; }

.g12f-nav-icon { display: none; }

.g12f-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--content-main);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    opacity: 0.88;
    letter-spacing: -0.01em;
}

.g12f-nav-link:hover {
    opacity: 1;
    color: var(--brand-dark);
}

.g12f-nav-link.active {
    opacity: 1;
    color: var(--content-high);
    font-weight: 600;
}

/* Header CTA */
.g12f-header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.g12f-header-actions .g12f-btn {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.g12f-header-actions .g12f-btn-outline {
    background: transparent;
    border: 1px solid var(--glass-edge);
    color: var(--content-main);
}

.g12f-header-actions .g12f-btn-outline:hover {
    background: var(--surface-secondary);
}

.g12f-header-actions .g12f-btn-primary,
.g12f-header-actions .g12f-btn-cta {
    background: var(--brand-primary);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
}

.g12f-header-actions .g12f-btn-primary:hover,
.g12f-header-actions .g12f-btn-cta:hover {
    background: var(--brand-dark);
}

@media (max-width: 1100px) {
    .g12f-nav-link { padding: 8px 8px; font-size: 11px; }
}

@media (max-width: 900px) {
    .g12f-main-nav { display: none; }
    .g12f-header-actions { display: none; }
    .g12f-mobile-menu-btn { display: flex !important; }
}

/* Mobile Menu Button */
.g12f-mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: var(--ease-out);
}

.g12f-mobile-menu-btn:hover { background: var(--surface-secondary); }

.g12f-hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 2px;
    background: var(--content-main);
    transition: var(--ease-out);
    border-radius: 1px;
}

.g12f-hamburger::before,
.g12f-hamburger::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--content-main);
    transition: var(--ease-out);
    border-radius: 1px;
}
.g12f-hamburger::before { top: -6px; }
.g12f-hamburger::after { bottom: -6px; }

.g12f-mobile-menu-btn.active .g12f-hamburger { background: transparent; }
.g12f-mobile-menu-btn.active .g12f-hamburger::before {
    top: 0; transform: rotate(45deg); background: var(--brand-primary);
}
.g12f-mobile-menu-btn.active .g12f-hamburger::after {
    bottom: 0; transform: rotate(-45deg); background: var(--brand-primary);
}

/* Mobile Navigation */
.g12f-mobile-nav {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(var(--glass-blur-strong));
    -webkit-backdrop-filter: blur(var(--glass-blur-strong));
    z-index: var(--z-fixed);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    transform: translateX(100%);
    opacity: 0;
    transition: var(--ease-out);
    overflow-y: auto;
}

.g12f-mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
}

.g12f-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    color: var(--content-main);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--ease-out);
    text-decoration: none;
}

.g12f-mobile-nav-link:hover,
.g12f-mobile-nav-link.active {
    background: var(--brand-bg);
    color: var(--brand-dark);
}

.g12f-mobile-nav-actions {
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-edge);
}

/* ==============================================
   BUTTONS
   ============================================== */

.g12f-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    text-transform: none;
}

.g12f-btn::before,
.g12f-btn::after { display: none; }

.g12f-btn-primary {
    background: var(--grad-brand);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.g12f-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

.g12f-btn-primary:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

.g12f-btn-outline {
    background: var(--surface-primary);
    color: var(--content-main);
    border: 1px solid var(--glass-edge);
}

.g12f-btn-outline:hover {
    background: var(--surface-secondary);
    border-color: var(--content-subtle);
}

.g12f-btn-cta {
    background: var(--grad-cta);
    color: #FFFFFF;
    font-size: 15px;
    padding: var(--space-sm) var(--space-xl);
    box-shadow: var(--shadow-md);
}

.g12f-btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.g12f-btn-lg {
    padding: var(--space-sm) var(--space-xl);
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.g12f-btn-block { width: 100%; }

.g12f-btn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

/* Apple-style buttons */
.g12f-btn-apple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--ease-out);
    cursor: pointer;
    border: none;
}

.g12f-btn-apple-primary {
    background: var(--brand-primary);
    color: #FFFFFF;
}
.g12f-btn-apple-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.g12f-btn-apple-secondary {
    background: var(--surface-secondary);
    color: var(--content-main);
    border: 1px solid var(--glass-edge);
}
.g12f-btn-apple-secondary:hover {
    background: var(--surface-tertiary);
}

/* ==============================================
   MAIN CONTENT
   ============================================== */

.g12f-main {
    padding-top: 60px;
    padding-bottom: var(--space-2xl);
    min-height: 100vh;
}

.g12f-content-wrapper {
    animation: content-reveal 0.5s ease-out;
}

@keyframes content-reveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.g12f-content-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.g12f-main-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    color: var(--content-high);
}

.g12f-gradient-text {
    background: var(--grad-brand);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================================
   KNOWLEDGE PANEL — Entity Card
   ============================================== */

.g12f-kp-panel {
    margin: var(--space-md) 0;
    padding: var(--space-lg);
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--shadow-md);
}

.g12f-kp-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.g12f-kp-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    flex-shrink: 0;
}

.g12f-kp-identity {
    flex: 1;
    min-width: 0;
}

.g12f-kp-name {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--content-high);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.g12f-kp-type {
    font-size: 13px;
    color: var(--content-dim);
    font-weight: 400;
}

.g12f-kp-verified {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.g12f-kp-desc {
    font-size: 14px;
    color: var(--content-dim);
    line-height: 1.6;
    margin: 0 0 var(--space-md) 0;
}

/* Facts Definition List */
.g12f-kp-facts {
    margin: 0 0 var(--space-md) 0;
    padding: 0;
    border-top: 1px solid var(--glass-edge);
}

.g12f-kp-fact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-edge);
}

.g12f-kp-fact dt {
    font-size: 13px;
    color: var(--content-dim);
    font-weight: 400;
}

.g12f-kp-fact dd {
    font-size: 13px;
    color: var(--content-main);
    font-weight: 600;
    margin: 0;
}

.g12f-kp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--success);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 4px;
}

/* Navigation Chips */
.g12f-kp-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-md);
}

.g12f-kp-chip {
    display: inline-flex;
    padding: 6px 14px;
    background: var(--surface-secondary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--content-main);
    text-decoration: none;
    transition: var(--ease-out);
    border: 1px solid transparent;
}

.g12f-kp-chip:hover {
    background: var(--brand-bg);
    border-color: rgba(var(--brand-rgb), 0.3);
    color: var(--brand-dark);
}

/* Actions */
.g12f-kp-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .g12f-kp-panel { padding: var(--space-md); }
    .g12f-kp-name { font-size: clamp(18px, 5vw, 24px); }
}

@media (max-width: 480px) {
    .g12f-kp-fact { padding: 8px 0; }
    .g12f-kp-chip { padding: 5px 12px; font-size: 12px; }
}

/* Legacy Hero */
.g12f-hero-banner {
    margin-top: var(--space-lg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--shadow-md);
}
.g12f-hero-banner::before, .g12f-hero-banner::after { display: none; }

.g12f-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 768px) {
    .g12f-hero-content { grid-template-columns: 1fr; text-align: center; }
    .g12f-hero-image { order: -1; }
    .g12f-hero-banner { padding: var(--space-lg); }
}

.g12f-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-primary);
    color: #FFFFFF;
    padding: var(--space-2xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.g12f-hero-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--content-high);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.g12f-hero-description {
    font-size: 16px;
    color: var(--content-dim);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.g12f-hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .g12f-hero-stats { justify-content: center; flex-wrap: wrap; }
}

.g12f-stat-item { text-align: center; }
.g12f-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(-1 * var(--space-xl) / 2);
    top: 15%; height: 70%; width: 1px;
    background: var(--glass-edge);
}

.g12f-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
}

.g12f-stat-label {
    font-size: 12px;
    color: var(--content-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.g12f-hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .g12f-hero-cta { justify-content: center; }
}

.g12f-hero-image { position: relative; }
.g12f-hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==============================================
   GLASS CARDS
   ============================================== */

.g12f-glass-card {
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
}

.g12f-glass-card::before { display: none; }

.g12f-glass-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ==============================================
   CTA BLOCKS — Compact
   ============================================== */

.g12f-cta-block {
    text-align: center;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.g12f-cta-block::before, .g12f-cta-block::after { display: none; }

.g12f-cta-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.g12f-cta-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--content-high);
}

.g12f-cta-subtitle {
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.g12f-cta-trust {
    font-size: 0.9rem;
    color: var(--content-dim);
    margin-bottom: var(--space-md);
}

/* ==============================================
   ARTICLE CONTENT
   ============================================== */

.g12f-article-content {
    font-size: 16px;
    line-height: 1.75;
}

.g12f-article-content h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin: var(--space-xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--glass-edge);
    color: var(--content-high);
}

.g12f-article-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: var(--radius-full);
}

.g12f-article-content h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--content-high);
}

.g12f-article-content p {
    margin-bottom: var(--space-md);
    color: var(--content-dim);
}

.g12f-article-content ul, .g12f-article-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.g12f-article-content li {
    margin-bottom: var(--space-xs);
    color: var(--content-dim);
}

.g12f-article-content ul li::marker { color: var(--brand-primary); }

.g12f-article-content a {
    color: var(--brand-dark);
    text-decoration: underline;
    text-decoration-color: rgba(var(--brand-rgb), 0.3);
    text-underline-offset: 3px;
}
.g12f-article-content a:hover { text-decoration-color: var(--brand-primary); }

.g12f-article-content strong, .g12f-article-content b {
    color: var(--content-high);
    font-weight: 600;
}

/* Tables */
.g12f-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background: var(--surface-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-edge);
    font-size: 14px;
}

.g12f-article-content th, .g12f-article-content td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--glass-edge);
}

.g12f-article-content th {
    background: var(--surface-secondary);
    font-weight: 600;
    color: var(--content-main);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.g12f-article-content tr:hover { background: var(--surface-secondary); }

/* Slots page article styles */
.g12f-slots-page .g12f-article-content ul { list-style: none; padding-left: 0; }
.g12f-slots-page .g12f-article-content ul li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}
.g12f-slots-page .g12f-article-content ul li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 0;
}
.g12f-slots-page .g12f-article-content ul li strong {
    color: var(--brand-dark);
    font-weight: 600;
}

/* ==============================================
   SLOT CARDS
   ============================================== */

.g12f-slots-showcase, .g12f-info-block.g12f-gradient-bg {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.g12f-slots-showcase h2, .g12f-info-block.g12f-gradient-bg h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: var(--space-lg);
    border: none;
    padding: 0;
}
.g12f-slots-showcase h2::after, .g12f-info-block.g12f-gradient-bg h2::after { display: none; }

.g12f-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-sm);
}

.g12f-slot-card {
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.g12f-slot-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.g12f-slot-card::before, .g12f-slot-card::after { display: none; }

.g12f-slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--brand-rgb), 0.2);
}

.g12f-slot-card img, .g12f-slot-card .g12f-slot-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.g12f-slot-card h4 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-3xs);
    color: var(--content-high);
}

.g12f-slot-card .g12f-slot-rtp {
    text-align: center;
    color: var(--success);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: var(--space-3xs);
}

.g12f-slot-card .g12f-slot-desc, .g12f-slot-card .g12f-slot-provider {
    text-align: center;
    color: var(--content-dim);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: var(--space-xs);
}

.g12f-slot-tags, .g12f-slot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.g12f-slot-tag, .g12f-slot-features .badge {
    background: var(--surface-secondary);
    color: var(--content-dim);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 500;
    border: 1px solid var(--glass-edge);
}

.g12f-slot-tag:hover, .g12f-slot-features .badge:hover {
    background: var(--brand-bg);
    color: var(--brand-dark);
    border-color: rgba(var(--brand-rgb), 0.2);
}

/* Slots page */
.g12f-slots-page { padding: var(--space-lg) 0; }
.g12f-slots-page-header { text-align: center; margin-bottom: var(--space-xl); }
.g12f-slots-page-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--brand-primary);
    border-radius: var(--radius-full);
}

.g12f-slots-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-sm);
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
}

.g12f-slots-filter-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-full);
    color: var(--content-dim);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ease-out);
}
.g12f-slots-filter-btn::before { display: none; }

.g12f-slots-filter-btn:hover, .g12f-slots-filter-btn.active {
    background: var(--brand-primary);
    color: #FFFFFF;
    border-color: var(--brand-primary);
}

.g12f-slots-page .g12f-slot-card {
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
}

.g12f-slots-page .g12f-slot-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--brand-rgb), 0.3);
}

/* RTP */
.g12f-slot-rtp {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: 3px 10px;
    background: rgba(52, 199, 89, 0.08);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: var(--radius-full);
}
.g12f-slot-rtp::before { content: '💰'; font-size: 12px; }
.g12f-slot-rtp.g12f-high-rtp {
    background: var(--brand-bg);
    border-color: rgba(var(--brand-rgb), 0.2);
    color: var(--brand-dark);
}
.g12f-slot-rtp.g12f-high-rtp::before { content: '⭐'; }

/* Slot badges */
.g12f-slot-badge {
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
    padding: 3px 8px;
    background: var(--brand-primary);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xs);
    z-index: 2;
}
.g12f-slot-badge.new { background: var(--success); }
.g12f-slot-badge.hot { background: var(--error); }
.g12f-slot-badge.jackpot { background: var(--brand-primary); }

/* Slot stats */
.g12f-slot-stats {
    display: flex;
    justify-content: space-around;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
    padding-top: var(--space-xs);
    border-top: 1px solid var(--glass-edge);
}
.g12f-slot-stat { text-align: center; flex: 1; }
.g12f-slot-stat-value { display: block; font-size: 16px; font-weight: 700; color: var(--brand-dark); }
.g12f-slot-stat-label { font-size: 10px; color: var(--content-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Slot play button */
.g12f-slot-play-btn {
    width: 100%;
    margin-top: var(--space-xs);
    padding: 8px var(--space-md);
    background: var(--brand-primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--ease-out);
}
.g12f-slot-play-btn::before { display: none; }
.g12f-slot-play-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* Slot provider */
.g12f-slot-provider {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: 3px 8px;
    background: var(--surface-secondary);
    border-radius: var(--radius-xs);
    font-size: 11px;
    font-weight: 500;
    color: var(--content-dim);
    margin-top: var(--space-2xs);
}
.g12f-slot-provider::before { content: '🎮'; font-size: 12px; }

/* Providers section */
.g12f-slots-providers {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
}
.g12f-slots-providers h3 { text-align: center; font-size: 22px; margin-bottom: var(--space-lg); }

.g12f-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-sm);
}

.g12f-provider-card {
    background: var(--surface-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: var(--ease-out);
}
.g12f-provider-card:hover {
    background: var(--surface-primary);
    border-color: var(--glass-edge);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.g12f-provider-card img { width: 100%; max-width: 80px; margin: 0 auto var(--space-xs); }
.g12f-provider-card h4 { font-size: 14px; font-weight: 600; color: var(--content-main); }

/* ==============================================
   ADVANTAGE CARDS
   ============================================== */

.g12f-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.g12f-advantage-card {
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}
.g12f-advantage-card.animate-in { opacity: 1; transform: translateY(0); }
.g12f-advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--brand-rgb), 0.2);
}

.g12f-advantage-icon { font-size: 40px; margin-bottom: var(--space-xs); display: block; }
.g12f-advantage-card h3 { font-size: 16px; margin-bottom: var(--space-2xs); color: var(--content-high); }
.g12f-advantage-card p { color: var(--content-dim); font-size: 14px; line-height: 1.6; }

/* ==============================================
   INFO BLOCKS
   ============================================== */

.g12f-info-block {
    background: var(--surface-primary);
    border-left: 3px solid var(--brand-primary);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    opacity: 0;
    transform: translateX(-15px);
}
.g12f-info-block.animate-in { opacity: 1; transform: translateX(0); }
.g12f-info-block h3 { color: var(--content-high); margin-bottom: var(--space-2xs); font-size: 16px; }
.g12f-info-block p { color: var(--content-dim); margin: 0; font-size: 14px; }

/* ==============================================
   FAQ SECTION
   ============================================== */

.g12f-faq-section {
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.g12f-faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
    border: none;
    padding: 0;
    font-size: 22px;
    color: var(--content-high);
}
.g12f-faq-section h2::after { display: none; }

.g12f-faq-list, .g12f-faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.g12f-faq-item {
    background: var(--surface-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--ease-out);
}
.g12f-faq-item:hover { border-color: var(--glass-edge); }

.g12f-faq-question {
    padding: var(--space-sm) var(--space-md);
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--content-main);
    cursor: pointer;
    position: relative;
    padding-right: 48px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.g12f-faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--content-muted);
    font-size: 18px;
    font-weight: 300;
    transition: var(--ease-out);
}

.g12f-faq-item.open .g12f-faq-question::after { content: '−'; color: var(--brand-primary); }
.g12f-faq-item:hover .g12f-faq-question { color: var(--brand-dark); }

.g12f-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--space-md);
    color: var(--content-dim);
    line-height: 1.7;
    font-size: 14px;
}

.g12f-faq-item.open .g12f-faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-sm);
}

.g12f-faq-answer a { color: var(--brand-dark); }

/* ==============================================
   BREADCRUMBS
   ============================================== */

.g12f-breadcrumbs { padding: var(--space-sm) 0; margin-bottom: var(--space-sm); }
.g12f-breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    list-style: none;
}
.g12f-breadcrumb-item { display: inline-flex; align-items: center; }
.g12f-breadcrumb-link {
    color: var(--brand-dark);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: var(--radius-xs);
}
.g12f-breadcrumb-link:hover { background: var(--surface-secondary); }
.g12f-breadcrumb-item.active { color: var(--content-muted); font-size: 12px; }
.g12f-breadcrumb-separator { color: var(--content-subtle); font-size: 12px; }

/* ==============================================
   BONUS POPUP — Clean
   ============================================== */

.g12f-bonus-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: auto;
    max-width: 360px;
    min-width: 280px;
    padding: 14px 44px 14px 16px;
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.g12f-bonus-popup.show { transform: translateX(-50%) translateY(0); }

.g12f-popup-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--surface-secondary);
    border: none;
    color: var(--content-dim);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--ease-out);
}
.g12f-popup-close:hover { background: var(--surface-tertiary); }

.g12f-popup-content { display: flex; align-items: center; gap: 12px; }

.g12f-popup-icon { font-size: 28px; flex-shrink: 0; }

.g12f-popup-text { flex: 1; }
.g12f-popup-bonus { display: block; font-size: 20px; font-weight: 700; color: var(--brand-dark); line-height: 1.1; }
.g12f-popup-label { color: var(--content-dim); font-size: 12px; }

.g12f-popup-cta { flex-shrink: 0; }
.g12f-popup-cta .g12f-btn, .g12f-popup-content .g12f-btn {
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
    background: var(--brand-primary);
    color: #FFFFFF;
    border: none;
}

@media (max-width: 480px) {
    .g12f-bonus-popup { min-width: auto; max-width: 92%; left: 4%; right: 4%; transform: translateX(0) translateY(200%); }
    .g12f-bonus-popup.show { transform: translateX(0) translateY(0); }
}

/* ==============================================
   FOOTER
   ============================================== */

.g12f-site-footer {
    background: var(--surface-primary);
    border-top: 1px solid var(--glass-edge);
    padding: var(--space-xl) 0 0;
    margin-top: var(--space-xl);
}
.g12f-site-footer::before { display: none; }

.g12f-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.g12f-footer-content { padding-bottom: var(--space-lg); }

.g12f-footer-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

@media (max-width: 900px) { .g12f-footer-blocks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g12f-footer-blocks { grid-template-columns: 1fr; } }

.g12f-footer-block {
    background: var(--surface-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: var(--ease-out);
}
.g12f-footer-block::before { display: none; }
.g12f-footer-block:hover { background: var(--surface-tertiary); }

.g12f-footer-block h4 { font-size: 15px; font-weight: 600; margin-bottom: var(--space-2xs); color: var(--content-high); }
.g12f-footer-block p { font-size: 13px; line-height: 1.6; color: var(--content-dim); margin: 0; }

.g12f-footer-menu {
    text-align: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--glass-edge);
    border-bottom: 1px solid var(--glass-edge);
}
.g12f-footer-menu h4 { font-size: 15px; font-weight: 600; margin-bottom: var(--space-sm); color: var(--content-main); }

.g12f-footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2xs);
}

.g12f-footer-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--surface-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--content-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--ease-out);
}
.g12f-footer-nav-link:hover, .g12f-footer-nav-link.active {
    background: var(--brand-primary);
    color: #FFFFFF;
}

.g12f-footer-legal {
    background: var(--surface-secondary);
    padding: var(--space-md) 0;
}

.g12f-legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}
@media (max-width: 600px) { .g12f-legal-row { flex-direction: column; text-align: center; } }

.g12f-footer-brand { display: flex; flex-direction: column; gap: 3px; }
.g12f-brand-name { font-size: 20px; font-weight: 700; color: var(--content-high); }
.g12f-brand-tagline { font-size: 11px; color: var(--content-muted); text-transform: uppercase; letter-spacing: 2px; }

.g12f-footer-copy { text-align: center; flex: 1; }
.g12f-footer-copy p { font-size: 12px; color: var(--content-dim); margin: 0 0 3px; }
.g12f-footer-warning { font-size: 11px !important; color: var(--content-muted) !important; }

.g12f-footer-seals { display: flex; gap: 8px; }
.g12f-footer-seal {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xs);
    font-size: 11px;
    color: var(--content-dim);
}

/* ==============================================
   SECTION NAVIGATOR (замена облака тегов)
   ============================================== */

.g12f-section-navigator {
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.g12f-navigator-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--content-high);
    text-align: center;
}

.g12f-navigator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.g12f-navigator-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--content-main);
    text-decoration: none;
    transition: all 0.2s ease;
}
.g12f-navigator-card::before { display: none; }

.g12f-navigator-card:hover {
    background: var(--surface-primary);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.g12f-navigator-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-bg);
    border-radius: var(--radius-md);
}

.g12f-navigator-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.g12f-navigator-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--content-main);
    line-height: 1.3;
}

.g12f-navigator-desc {
    font-size: 12px;
    color: var(--content-dim);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.g12f-navigator-meta {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-primary);
    background: var(--brand-bg);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .g12f-navigator-grid {
        grid-template-columns: 1fr;
    }
    .g12f-navigator-desc {
        -webkit-line-clamp: 1;
    }
}

/* ==============================================
   PRELOADER
   ============================================== */

.g12f-preloader {
    position: fixed;
    inset: 0;
    background: var(--surface-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.g12f-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.g12f-preloader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--surface-tertiary);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.content-hidden { opacity: 0; }

/* ==============================================
   RELATED CONTENT & TOPIC CLUSTERS
   ============================================== */

.related-content, .topic-cluster {
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    background: var(--surface-primary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
}

.related-content h2, .topic-cluster h2 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
    color: var(--content-high);
    font-weight: 600;
}

.related-content-description, .topic-description {
    color: var(--content-dim);
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.related-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xs);
}

.related-item {
    padding: var(--space-sm);
    background: var(--surface-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--ease-out);
}
.related-item:hover { border-color: var(--glass-edge); background: var(--surface-primary); }

.related-link { text-decoration: none; color: inherit; display: block; }
.related-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--content-main); }
.related-description { font-size: 12px; color: var(--content-dim); line-height: 1.4; }

.topic-list {
    list-style: none;
    padding: 0;
    margin: var(--space-sm) 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-2xs);
}

.topic-list li {
    padding: var(--space-xs) var(--space-sm);
    background: var(--surface-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--ease-out);
}
.topic-list li:hover { border-color: var(--glass-edge); }
.topic-list a { text-decoration: none; color: var(--content-main); font-weight: 500; font-size: 13px; }
.topic-list a:hover { color: var(--brand-dark); }

/* ==============================================
   ANIMATIONS — Subtle
   ============================================== */

.g12f-pulse-glow { /* no glow on light theme */ }
.g12f-float-animation { animation: float-anim 6s ease-in-out infinite; }
@keyframes float-anim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.g12f-text-glow-animation { /* disabled */ }
.g12f-hover-lift { transition: var(--ease-out); }
.g12f-hover-lift:hover { transform: translateY(-3px); }

@keyframes shine-slide { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Loading */
.g12f-generation-notice {
    text-align: center;
    padding: var(--space-xl);
    max-width: 480px;
    margin: var(--space-xl) auto;
}
.g12f-notice-icon { font-size: 48px; margin-bottom: var(--space-sm); }
.g12f-generation-notice h2 { margin-bottom: var(--space-xs); border: none; padding: 0; }
.g12f-generation-notice h2::after { display: none; }

.g12f-progress-bar {
    height: 4px;
    background: var(--surface-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: var(--space-sm);
}

.g12f-progress-fill {
    height: 100%;
    width: 40%;
    background: var(--brand-primary);
    border-radius: var(--radius-full);
    animation: progress-move 1.5s ease-in-out infinite;
}

@keyframes progress-move {
    0% { width: 0%; margin-left: 0; }
    50% { width: 50%; }
    100% { width: 0%; margin-left: 100%; }
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 768px) {
    :root {
        --space-xl: 28px;
        --space-2xl: 36px;
        --space-3xl: 48px;
    }

    body { font-size: 15px; }
    .g12f-main { padding-top: 56px; }
    .g12f-header-inner { height: 48px; padding: 0 14px; }
    .g12f-logo { height: 24px; }
    .g12f-mobile-nav { top: 48px; }
    .g12f-main-title { font-size: 24px; }
    .g12f-hero-title { font-size: 22px; }
    .g12f-hero-banner { padding: var(--space-md); }
    .g12f-hero-stats { gap: var(--space-md); }
    .g12f-stat-value { font-size: 28px; }
    .g12f-hero-cta { flex-direction: column; }
    .g12f-hero-cta .g12f-btn { width: 100%; }
    .g12f-slots-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xs); }
    .g12f-slot-card { padding: var(--space-xs); }
    .g12f-slot-card img, .g12f-slot-card .g12f-slot-image { height: 120px; }
    .g12f-slot-card h4 { font-size: 12px; }
    .g12f-cta-block { padding: var(--space-lg); }
    .g12f-cta-title { font-size: 20px; }
    .g12f-cta-subtitle { font-size: 0.95rem; }
    .g12f-navigator-grid { gap: 8px; }
    .g12f-bonus-popup { bottom: var(--space-sm); left: var(--space-sm); right: var(--space-sm); width: auto; transform: translateX(0) translateY(200%); }
    .g12f-bonus-popup.show { transform: translateX(0) translateY(0); }
    .related-content, .topic-cluster { padding: var(--space-sm); }
    .related-content-grid, .topic-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    :root { --space-lg: 18px; --space-xl: 22px; }
    body { font-size: 14px; }
    .g12f-main { padding-top: 52px; }
    .g12f-main-title { font-size: 20px; }
    .g12f-hero-title { font-size: 20px; }
    .g12f-hero-badge { font-size: 10px; }
    .g12f-stat-value { font-size: 24px; }
    .g12f-slots-grid { gap: 6px; }
    .g12f-slot-card img, .g12f-slot-card .g12f-slot-image { height: 90px; }
    .g12f-slot-card h4 { font-size: 11px; }
    .g12f-slot-card .g12f-slot-rtp { font-size: 10px; }
    .tag-item { padding: 5px 10px; font-size: 11px; }
    .g12f-slot-stats { flex-direction: column; gap: var(--space-2xs); }
    .g12f-providers-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xs); }
    .g12f-slot-badge { font-size: 8px; padding: 2px 5px; }
    .g12f-slots-filters { padding: var(--space-xs); gap: 4px; }
    .g12f-slots-filter-btn { font-size: 11px; padding: 4px 10px; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .g12f-btn, .tag-item, .g12f-footer-nav-link, .g12f-nav-link, .g12f-slot-card { min-height: 44px; }
    .g12f-btn:hover, .tag-item:hover, .g12f-footer-nav-link:hover, .g12f-slot-card:hover { transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print */
@media print {
    .g12f-header, .g12f-mobile-nav, .g12f-bonus-popup, .g12f-background-effects, .g12f-site-footer, .g12f-section-navigator, .g12f-cta-block { display: none !important; }
    .g12f-main { padding-top: 0; }
    body { background: white; color: black; }
    a { color: black; text-decoration: underline; }
}

/* ========================================
   BONUS CALCULATOR
   ======================================== */
.bonus-calculator {
    margin: 2rem 0;
}
.calc-container {
    max-width: 100%;
}
.calc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.calc-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0;
}
.calc-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    background: rgba(255, 215, 0, 0.12);
    color: #B8860B;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.calc-card {
    background: #F5F5F7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
}
.calc-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
}
.calc-label {
    font-size: 0.8rem;
    color: #6E6E73;
    display: block;
    margin-bottom: 8px;
}
.calc-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.25rem;
}
.calc-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    border: 2px solid rgba(0,0,0,0.1);
}
.calc-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    border: 2px solid rgba(0,0,0,0.1);
}
.calc-deposit-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1D1D1F;
    min-width: 90px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.calc-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.25rem;
}
.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6E6E73;
    padding: 8px 0;
}
.calc-result-row strong {
    color: #30d158;
    font-size: 1rem;
}
.calc-total-row {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 10px;
}
.calc-total-row strong {
    color: #B8860B;
    font-size: 1.15rem;
}
.calc-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.calc-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .bonus-calculator { margin: 1.25rem 0; }
    .calc-section-title { font-size: 1.1rem; }
    .calc-card { padding: 1rem; border-radius: 14px; }
    .calc-cta-btn { min-height: 48px; display: flex; align-items: center; justify-content: center; }
    .calc-range::-webkit-slider-thumb { width: 28px; height: 28px; }
    .calc-range::-moz-range-thumb { width: 28px; height: 28px; }
}

/* Touch */
@media (hover: none) and (pointer: coarse) {
    .calc-cta-btn:hover { transform: none; box-shadow: none; }
    .calc-card:hover { border-color: rgba(0, 0, 0, 0.08); }
}

/* ========================================
   CASINO FACT CARD
   ======================================== */
.fact-card {
    margin: 2rem 0;
}
.fact-card-inner {
    background: #F5F5F7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
}
.fact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 1.25rem 0;
}
.fact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease;
}
.fact-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
}
.fact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fact-icon svg {
    width: 18px;
    height: 18px;
}
.fact-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.fact-label {
    font-size: 0.7rem;
    color: #AEAEB2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.fact-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1D1D1F;
    line-height: 1.3;
}

/* Tablet */
@media (max-width: 768px) {
    .fact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .fact-card-inner { padding: 1rem; border-radius: 14px; }
    .fact-card-title { font-size: 1.1rem; }
    .fact-grid { grid-template-columns: 1fr; }
    .fact-item { padding: 8px 10px; }
}

/* ========================================
   PROVIDERS CATALOG
   ======================================== */
.providers-catalog {
    margin: 2rem 0;
}
.providers-inner {
    max-width: 100%;
}
.providers-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 0.5rem 0;
}
.providers-subtitle {
    font-size: 0.85rem;
    color: #6E6E73;
    margin: 0 0 1.5rem 0;
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.provider-card {
    background: #F5F5F7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.15s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.provider-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.provider-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1D1D1F;
    line-height: 1.2;
}
.provider-details {
    display: flex;
    gap: 12px;
}
.provider-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.provider-stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1D1D1F;
    font-variant-numeric: tabular-nums;
}
.provider-stat-label {
    font-size: 0.6rem;
    color: #AEAEB2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.provider-type {
    font-size: 0.7rem;
    color: #6E6E73;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    align-self: flex-start;
}

/* Tablet */
@media (max-width: 900px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .providers-title { font-size: 1.1rem; }
    .providers-grid { grid-template-columns: 1fr; }
    .provider-card { padding: 1rem; border-radius: 12px; }
}

/* Touch */
@media (hover: none) and (pointer: coarse) {
    .provider-card:hover { transform: none; }
}

/* ========================================
   EXPRESS GUIDE — Apple Keynote Aesthetic
   ======================================== */
.express-guide {
    margin: 2.5rem 0;
    contain: layout style;
}
.eg-container {
    max-width: 100%;
}

/* Header */
.eg-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.eg-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-primary, #FFD700);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}
.eg-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--content-main, #1D1D1F);
    line-height: 1.3;
    margin: 0;
}
.eg-title strong {
    font-weight: 700;
    background: var(--grad-brand, linear-gradient(135deg, #FFD700, #FFA500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Steps Grid */
.eg-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    margin-bottom: 2rem;
}

/* Progress Line */
.eg-progress-line {
    position: absolute;
    top: 44px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: rgba(0,0,0,0.05);
    z-index: 0;
    display: block;
}
.eg-line-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--brand-primary, #FFD700), var(--brand-vivid, #FFA500));
    border-radius: 1px;
}
.eg-line-fill.eg-active {
    animation: egLine 2s ease-out forwards;
}
@keyframes egLine { to { width: 100%; } }

/* Step Card */
.eg-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--glass-bg, #FFFFFF);
    border: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
    border-radius: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: border-color 0.3s, transform 0.3s;
}
.eg-step.eg-visible {
    animation: egReveal 0.6s ease-out forwards;
}
.eg-step[data-step="1"].eg-visible { animation-delay: 0.1s; }
.eg-step[data-step="2"].eg-visible { animation-delay: 0.35s; }
.eg-step[data-step="3"].eg-visible { animation-delay: 0.6s; }

@keyframes egReveal {
    to { opacity: 1; transform: translateY(0); }
}

.eg-step:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Step Icon */
.eg-step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 16px;
    color: var(--brand-primary, #FFD700);
}
.eg-svg {
    width: 28px;
    height: 28px;
}

/* SVG Draw Animation */
.eg-draw {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
}
.eg-visible .eg-draw {
    animation: egDraw 1.2s ease-out 0.4s forwards;
}
@keyframes egDraw { to { stroke-dashoffset: 0; } }

.eg-fade { opacity: 0; }
.eg-visible .eg-fade {
    animation: egFadeIn 0.5s ease-out 0.8s forwards;
}
@keyframes egFadeIn { to { opacity: 1; } }

/* Step Number */
.eg-step-num {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(0,0,0,0.15);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

/* Step Title */
.eg-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--content-main, #1D1D1F);
    margin: 0 0 0.6rem;
}

/* Hero Metric */
.eg-step-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0.6rem;
}
.eg-metric-val {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--content-main, #1D1D1F);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.eg-accent {
    background: var(--grad-brand, linear-gradient(135deg, #FFD700, #FFA500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.eg-metric-unit {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--content-muted, #6E6E73);
}

/* Step Description */
.eg-step-desc {
    font-size: 0.78rem;
    color: var(--content-dim, #6E6E73);
    line-height: 1.5;
    margin: 0;
}

/* CTA */
.eg-cta {
    text-align: center;
}
.eg-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    background: var(--grad-brand, linear-gradient(135deg, #FFD700, #FFA500));
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-height: 48px;
}
.eg-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .eg-title { font-size: 1.4rem; }
    .eg-metric-val { font-size: 2rem; }
    .eg-progress-line { display: none; }
}

@media (max-width: 600px) {
    .express-guide { margin: 1.5rem 0; }
    .eg-header { margin-bottom: 1.5rem; }
    .eg-title { font-size: 1.25rem; }
    .eg-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .eg-step {
        padding: 1.25rem;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto auto;
        gap: 0 1rem;
        text-align: left;
    }
    .eg-step-icon {
        grid-row: 1 / 4;
        margin: 0;
        align-self: center;
    }
    .eg-step-num { display: none; }
    .eg-step-title { margin-bottom: 0.2rem; }
    .eg-step-metric { justify-content: flex-start; margin-bottom: 0.3rem; }
    .eg-metric-val { font-size: 1.8rem; }
    .eg-step-desc { grid-column: 1 / -1; margin-top: 0.5rem; text-align: left; }
    .eg-cta-btn { width: 100%; }
}

@media (max-width: 380px) {
    .eg-title { font-size: 1.1rem; }
    .eg-metric-val { font-size: 1.6rem; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .eg-step:hover { transform: none; border-color: var(--glass-edge, rgba(0,0,0,0.08)); }
    .eg-cta-btn:hover { transform: none; box-shadow: none; }
}

/* ===== Thematic Blocks — Base ===== */
.thematic-block { margin: var(--space-lg) 0; }
.tb-inner {
    background: var(--surface-secondary);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}
.tb-header { display: flex; align-items: center; gap: var(--space-xs); margin-bottom: var(--space-lg); flex-wrap: wrap; }
.tb-header svg { color: var(--brand-primary); flex-shrink: 0; }
.tb-header h2 { font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px); font-weight: 700; color: var(--content-high); margin: 0; }
.tb-header p.tb-subtitle { width: 100%; margin: var(--space-2xs) 0 0; color: var(--content-dim); font-size: 0.9rem; }
.tb-badge { background: var(--brand-bg); color: var(--brand-primary); padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.tb-mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.tb-chip { display: inline-block; background: var(--surface-tertiary); color: var(--content-main); padding: 4px 10px; border-radius: var(--radius-full); font-size: 0.78rem; }
.tb-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tb-rec-badge { position: absolute; top: -8px; right: 12px; background: var(--brand-primary); color: #fff; padding: 2px 10px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 600; }

/* ===== Tables (shared) ===== */
.tb-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: var(--space-md); }
.tb-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.tb-table th { text-align: left; padding: 10px 12px; background: var(--surface-tertiary); font-weight: 600; color: var(--content-main); white-space: nowrap; border-bottom: 2px solid var(--glass-edge); }
.tb-table td { padding: 10px 12px; border-bottom: 1px solid var(--glass-edge); color: var(--content-main); }
.tb-table tbody tr:hover { background: rgba(0,0,0,0.02); }
.tb-total-row td { background: var(--brand-bg); font-weight: 600; }
.tb-sortable th { cursor: pointer; user-select: none; }
.tb-sortable th:hover { background: var(--surface-primary); }

/* ===== 1. BONUS ===== */
.tb-bonus .tb-conditions { margin-top: var(--space-md); }
.tb-bonus .tb-conditions h3 { font-size: 0.95rem; font-weight: 600; margin: 0 0 var(--space-xs); }
.tb-bonus .tb-conditions ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tb-bonus .tb-conditions li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--content-main); }

/* ===== 2. REGISTRATION ===== */
.tb-roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); position: relative; }
.tb-roadmap-line { position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; background: var(--glass-edge); z-index: 0; }
.tb-stage { text-align: center; position: relative; z-index: 1; }
.tb-stage-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--surface-primary); border: 2px solid var(--brand-primary); color: var(--brand-primary); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: var(--space-xs); }
.tb-stage h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 4px; }
.tb-stage p { font-size: 0.82rem; color: var(--content-dim); margin: 0 0 6px; }
.tb-stage-time { display: block; font-size: 0.78rem; color: var(--content-dim); margin-bottom: 4px; }
.tb-stage-badge { display: inline-block; padding: 2px 8px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 600; }
.tb-status-required { background: rgba(52,199,89,0.12); color: #34C759; }
.tb-status-withdrawal { background: rgba(0,122,255,0.12); color: #007AFF; }
.tb-status-auto { background: var(--surface-tertiary); color: var(--content-dim); }
.tb-documents { margin-top: var(--space-lg); }
.tb-documents h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 var(--space-xs); }

/* ===== 3. APP ===== */
.tb-platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-lg); }
.tb-platform-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-lg); padding: var(--space-md); position: relative; overflow: hidden; }
.tb-platform-accent { height: 3px; background: var(--platform-accent); position: absolute; top: 0; left: 0; right: 0; }
.tb-platform-card h3 { font-size: 1rem; font-weight: 700; margin: var(--space-xs) 0 var(--space-sm); }
.tb-spec-list { margin-bottom: var(--space-sm); }
.tb-spec-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--glass-edge); font-size: 0.85rem; }
.tb-spec-row span { color: var(--content-dim); }
.tb-spec-row strong { color: var(--content-main); }
.tb-feature-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--space-sm); }
.tb-download-method { font-size: 0.82rem; color: var(--content-dim); text-align: center; padding-top: var(--space-xs); border-top: 1px solid var(--glass-edge); }
.tb-advantages-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.tb-adv-card { text-align: center; padding: var(--space-md); background: var(--surface-primary); border-radius: var(--radius-md); border: 1px solid var(--glass-edge); }
.tb-adv-val { display: block; font-size: 1.1rem; font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tb-adv-title { display: block; font-size: 0.85rem; font-weight: 600; margin-top: 4px; }
.tb-adv-desc { display: block; font-size: 0.78rem; color: var(--content-dim); }

/* ===== 4. MIRROR ===== */
.tb-methods-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.tb-method-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-lg); padding: var(--space-md); position: relative; }
.tb-method-card.tb-recommended { border-color: var(--brand-primary); }
.tb-method-card h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 var(--space-sm); }
.tb-rating-bars { margin-bottom: var(--space-sm); }
.tb-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 0.82rem; }
.tb-bar-row > span { width: 90px; flex-shrink: 0; color: var(--content-dim); }
.tb-bar { flex: 1; height: 6px; background: var(--surface-tertiary); border-radius: 3px; overflow: hidden; }
.tb-bar-fill { height: 100%; background: var(--grad-brand); border-radius: 3px; }
.tb-pro, .tb-con { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; margin-bottom: 4px; }

/* ===== 5. LOGIN ===== */
.tb-security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-lg); }
.tb-sec-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-md); padding: var(--space-sm); }
.tb-sec-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.tb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tb-dot-active { background: #34C759; }
.tb-dot-available { background: #FF9500; }
.tb-sec-card h3 { font-size: 0.88rem; font-weight: 600; margin: 0; }
.tb-protocol { display: inline-block; background: var(--surface-secondary); padding: 2px 8px; border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.75rem; color: var(--content-dim); margin-bottom: 4px; }
.tb-sec-card p { font-size: 0.82rem; color: var(--content-dim); margin: 0; }
.tb-login-methods { margin-top: var(--space-md); }
.tb-login-methods h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 var(--space-xs); }

/* ===== 6. SLOTS ===== */
.tb-rtp-high { color: #34C759; font-weight: 700; }
.tb-rtp-mid { color: #FF9500; font-weight: 600; }
.tb-rtp-low { color: var(--content-main); }
.tb-vol-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; vertical-align: middle; margin-right: 4px; }
.tb-legend { margin-top: var(--space-md); }
.tb-legend h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 var(--space-xs); }
.tb-legend-row { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.tb-legend-item { font-size: 0.82rem; color: var(--content-dim); }
.tb-legend-item strong { color: var(--content-main); }

/* ===== 7. ONLINE ===== */
.tb-livegames-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.tb-game-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-lg); padding: var(--space-md); }
.tb-game-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 var(--space-xs); }
.tb-game-variants { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--space-sm); }
.tb-game-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: var(--space-sm); }
.tb-game-stats > div { font-size: 0.82rem; }
.tb-game-stats span { display: block; color: var(--content-dim); font-size: 0.75rem; }
.tb-game-stats strong { color: var(--content-main); }
.tb-edge-low { color: #34C759; }
.tb-edge-mid { color: #FF9500; }
.tb-edge-high { color: #FF3B30; }
.tb-game-providers { font-size: 0.78rem; color: var(--content-dim); padding-top: var(--space-xs); border-top: 1px solid var(--glass-edge); }

/* ===== 8. IGRAT ===== */
.tb-comparison { border: 1px solid var(--glass-edge); border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-md); }
.tb-comp-header, .tb-comp-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.tb-comp-header { background: var(--surface-tertiary); font-weight: 600; font-size: 0.85rem; }
.tb-comp-header > span, .tb-comp-row > span { padding: 10px 12px; }
.tb-comp-label { text-align: center; }
.tb-comp-row { border-bottom: 1px solid var(--glass-edge); font-size: 0.85rem; }
.tb-comp-row:last-child { border-bottom: none; }
.tb-comp-feature { font-weight: 500; }
.tb-comp-cell { display: flex; align-items: center; gap: 6px; justify-content: center; }
.tb-demo-col { background: rgba(0,122,255,0.04); }
.tb-real-col { background: var(--brand-bg); }
.tb-recommendation { display: flex; align-items: flex-start; gap: var(--space-xs); padding: var(--space-md); background: var(--surface-primary); border-left: 3px solid var(--brand-primary); border-radius: var(--radius-md); }
.tb-recommendation p { margin: 0; font-size: 0.88rem; color: var(--content-main); }
.tb-recommendation svg { flex-shrink: 0; margin-top: 2px; }

/* ===== 9. OBZOR ===== */
.tb-rating-overview { display: grid; grid-template-columns: auto 1fr; gap: var(--space-xl); align-items: start; margin-bottom: var(--space-lg); }
.tb-rating-big { text-align: center; padding: var(--space-md); }
.tb-rating-number { display: block; font-size: 3rem; font-weight: 800; font-family: var(--font-display); background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.tb-rating-stars { display: flex; justify-content: center; gap: 2px; margin: var(--space-xs) 0; }
.tb-rating-count { font-size: 0.82rem; color: var(--content-dim); }
.tb-criteria-list { display: flex; flex-direction: column; gap: 8px; }
.tb-criterion { display: grid; grid-template-columns: 140px 1fr 40px; align-items: center; gap: 10px; }
.tb-crit-name { font-size: 0.85rem; color: var(--content-main); }
.tb-crit-bar { height: 8px; background: var(--surface-tertiary); border-radius: 4px; overflow: hidden; }
.tb-crit-fill { height: 100%; background: var(--grad-brand); border-radius: 4px; }
.tb-crit-val { font-size: 0.85rem; font-weight: 600; text-align: right; }
.tb-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.tb-pros-list h3, .tb-cons-list h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 var(--space-xs); }
.tb-pros-list ul, .tb-cons-list ul { list-style: none; padding: 0; margin: 0; }
.tb-pros-list li, .tb-cons-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; padding: 6px 0; }

/* ===== 10. PROMO ===== */
.tb-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--space-xs); margin-bottom: var(--space-lg); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tb-day-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-md); padding: var(--space-sm); text-align: center; min-width: 120px; }
.tb-day-name { display: block; font-size: 0.82rem; font-weight: 700; color: var(--content-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--space-xs); }
.tb-day-card h3 { font-size: 0.85rem; font-weight: 600; margin: 0 0 4px; line-height: 1.3; }
.tb-day-card p { font-size: 0.75rem; color: var(--content-dim); margin: 0 0 var(--space-xs); }
.tb-type-badge { display: inline-block; padding: 2px 8px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 600; }
.tb-type-cashback { background: rgba(52,199,89,0.12); color: #34C759; }
.tb-type-deposit { background: rgba(0,122,255,0.12); color: #007AFF; }
.tb-type-freespins { background: rgba(175,82,222,0.12); color: #AF52DE; }
.tb-type-tournament { background: rgba(255,215,0,0.15); color: #B8860B; }
.tb-special-promos { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.tb-special-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-md); padding: var(--space-md); }
.tb-special-card h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 4px; }
.tb-special-card p { font-size: 0.82rem; color: var(--content-dim); margin: 0; }

/* ===== 11. PARTNERY ===== */
.tb-partner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-lg); }
.tb-pstat { text-align: center; padding: var(--space-md); background: var(--surface-primary); border-radius: var(--radius-md); border: 1px solid var(--glass-edge); }
.tb-pstat-val { display: block; font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.tb-pstat-label { font-size: 0.82rem; color: var(--content-dim); }
.tb-commission-models { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-lg); }
.tb-model-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-lg); padding: var(--space-md); position: relative; }
.tb-model-card.tb-model-highlighted { border-color: var(--brand-primary); box-shadow: var(--glow-sm); }
.tb-model-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 4px; }
.tb-model-card > p { font-size: 0.82rem; color: var(--content-dim); margin: 0 0 var(--space-sm); }
.tb-tiers-mini { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.tb-tiers-mini td { padding: 6px 8px; border-bottom: 1px solid var(--glass-edge); }
.tb-tiers-mini tr:last-child td { border-bottom: none; }
.tb-partner-tools { margin-bottom: var(--space-md); }
.tb-partner-tools h3 { font-size: 0.92rem; font-weight: 600; margin: 0 0 var(--space-xs); }
.tb-payment-info { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm); padding: var(--space-md); background: var(--surface-primary); border-radius: var(--radius-md); border: 1px solid var(--glass-edge); font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .tb-inner { padding: var(--space-md); }
    .tb-roadmap { grid-template-columns: repeat(2, 1fr); }
    .tb-roadmap-line { display: none; }
    .tb-platforms-grid { grid-template-columns: 1fr; }
    .tb-advantages-row { grid-template-columns: 1fr; }
    .tb-methods-grid { grid-template-columns: 1fr; }
    .tb-security-grid { grid-template-columns: repeat(2, 1fr); }
    .tb-livegames-grid { grid-template-columns: 1fr; }
    .tb-rating-overview { grid-template-columns: 1fr; }
    .tb-rating-big { display: flex; align-items: center; gap: var(--space-md); }
    .tb-criterion { grid-template-columns: 120px 1fr 36px; }
    .tb-pros-cons { grid-template-columns: 1fr; }
    .tb-calendar-grid { grid-template-columns: repeat(7, minmax(110px, 1fr)); scroll-snap-type: x mandatory; }
    .tb-day-card { scroll-snap-align: start; }
    .tb-commission-models { grid-template-columns: 1fr; }
    .tb-special-promos { grid-template-columns: 1fr; }
    .tb-partner-stats { grid-template-columns: repeat(3, 1fr); }
    .tb-bonus .tb-conditions ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .tb-roadmap { grid-template-columns: 1fr; }
    .tb-security-grid { grid-template-columns: 1fr; }
    .tb-partner-stats { grid-template-columns: 1fr; }
    .tb-comp-header, .tb-comp-row { grid-template-columns: 1fr 1fr 1fr; font-size: 0.78rem; }
    .tb-comp-header > span, .tb-comp-row > span { padding: 8px 6px; }
    .tb-bar-row > span { width: 70px; }
}

/* ===== Casino Intelligence Hub ===== */
.cih-hub { margin: var(--space-lg) 0; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.cih-hub.cih-visible { opacity: 1; transform: translateY(0); }
.cih-inner { background: var(--surface-secondary); border: 1px solid var(--glass-edge); border-radius: var(--radius-xl); padding: var(--space-xl); }
.cih-title { font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px); font-weight: 700; color: var(--content-high); margin: 0 0 var(--space-lg); text-align: center; }

/* A) Metrics */
.cih-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); margin-bottom: var(--space-xl); }
.cih-metric-card { background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-lg); padding: var(--space-md); text-align: center; min-height: 100px; }
.cih-metric-value { display: block; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; font-family: var(--font-display); background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.cih-metric-label { display: block; font-size: 0.82rem; color: var(--content-dim); margin-top: 4px; }
.cih-metric-trend { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: var(--radius-full); margin-top: 6px; }
.cih-trend-up { background: rgba(52,199,89,0.12); color: #34C759; }
.cih-trend-down { background: rgba(255,59,48,0.12); color: #FF3B30; }

/* B) Table */
.cih-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: var(--space-xl); border-radius: var(--radius-lg); border: 1px solid var(--glass-edge); }
.cih-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cih-table caption { padding: var(--space-sm) var(--space-md); font-size: 0.92rem; font-weight: 600; color: var(--content-main); text-align: left; caption-side: top; }
.cih-table thead th { text-align: left; padding: 12px 14px; background: var(--surface-tertiary); font-weight: 600; color: var(--content-main); white-space: nowrap; border-bottom: 2px solid var(--glass-edge); }
.cih-table td { padding: 10px 14px; border-bottom: 1px solid var(--glass-edge); color: var(--content-main); }
.cih-table tbody tr:hover { background: rgba(0,0,0,0.02); }
.cih-table tbody th { text-align: left; padding: 10px 14px; background: transparent; border-bottom: 1px solid var(--glass-edge); font-weight: 600; }
.cih-sortable thead th { cursor: pointer; user-select: none; position: relative; padding-right: 22px; }
.cih-sortable thead th::after { content: "\21C5"; position: absolute; right: 6px; opacity: 0.3; font-size: 0.75rem; }
.cih-sortable thead th:hover { background: var(--surface-primary); }
.cih-cell-good { color: #34C759; font-weight: 600; }
.cih-cell-warn { color: #FF9500; font-weight: 600; }
.cih-cell-accent { color: var(--brand-primary); font-weight: 700; }
.cih-cell-mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* C) Trust Panel */
.cih-trust-panel { display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-xl); align-items: start; padding: var(--space-lg); background: var(--surface-primary); border: 1px solid var(--glass-edge); border-radius: var(--radius-xl); }
.cih-gauge-wrap { text-align: center; }
.cih-gauge { width: 140px; height: 140px; border-radius: 50%; background: conic-gradient(var(--brand-primary) calc(var(--cih-score) * 3.6deg), var(--surface-tertiary) 0deg); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.cih-gauge-inner { width: 108px; height: 108px; border-radius: 50%; background: var(--surface-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cih-gauge-value { font-size: 1.8rem; font-weight: 800; font-family: var(--font-display); background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.cih-gauge-label { font-size: 0.75rem; color: var(--content-dim); }
.cih-gauge-title { display: block; margin-top: var(--space-xs); font-size: 0.85rem; font-weight: 600; color: var(--content-main); }
.cih-criteria { display: flex; flex-direction: column; gap: 10px; }
.cih-crit-row { display: grid; grid-template-columns: 120px 1fr 40px; align-items: center; gap: 10px; }
.cih-crit-name { font-size: 0.85rem; color: var(--content-main); }
.cih-crit-bar { height: 8px; background: var(--surface-tertiary); border-radius: 4px; overflow: hidden; }
.cih-crit-fill { height: 100%; background: var(--grad-brand); border-radius: 4px; transition: width 1s ease; }
.cih-crit-val { font-size: 0.85rem; font-weight: 600; font-family: var(--font-mono); text-align: right; }
.cih-verdict { padding: var(--space-md); background: var(--surface-secondary); border-radius: var(--radius-lg); border-left: 3px solid var(--brand-primary); }
.cih-verdict h4 { font-size: 0.92rem; font-weight: 700; margin: 0 0 6px; color: var(--content-high); }
.cih-verdict p { font-size: 0.85rem; color: var(--content-main); margin: 0; line-height: 1.5; }

/* Mobile: sticky first column */
@media (max-width: 768px) {
    .cih-inner { padding: var(--space-md); }
    .cih-metrics { grid-template-columns: repeat(2, 1fr); }
    .cih-trust-panel { grid-template-columns: 1fr; text-align: center; }
    .cih-crit-row { grid-template-columns: 100px 1fr 36px; }
    .cih-verdict { text-align: left; }
    .cih-table th:first-child, .cih-table td:first-child { position: sticky; left: 0; background: var(--surface-primary); z-index: 1; }
    .cih-table thead th:first-child { background: var(--surface-tertiary); z-index: 2; }
}
@media (max-width: 480px) {
    .cih-metrics { gap: var(--space-sm); }
    .cih-metric-card { padding: var(--space-sm); min-height: 80px; }
    .cih-gauge { width: 120px; height: 120px; }
    .cih-gauge-inner { width: 92px; height: 92px; }
    .cih-gauge-value { font-size: 1.5rem; }
    .cih-crit-row { grid-template-columns: 90px 1fr 32px; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
    .cih-hub { opacity: 1; transform: none; transition: none; }
    .cih-crit-fill { transition: none; }
}
.live-wins-container {
    position: fixed;
    bottom: var(--space-md, 20px);
    left: var(--space-md, 20px);
    z-index: var(--z-toast, 600);
    max-width: 320px;
    pointer-events: none;
}
.live-wins-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
    color: var(--content-dim, #6E6E73);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.live-wins-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34C759;
    animation: lw-pulse 2s ease-in-out infinite;
}
@keyframes lw-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.live-wins-ticker {
    position: relative;
    height: 56px;
    overflow: hidden;
}
.live-win-item {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg, rgba(255,255,255,0.75));
    backdrop-filter: blur(var(--glass-blur, 20px));
    -webkit-backdrop-filter: blur(var(--glass-blur, 20px));
    border: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
    border-radius: var(--radius-sm, 8px);
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--content-main, #1D1D1F);
    opacity: 0;
    transform: translateY(20px);
    animation: lw-show 4s ease-in-out infinite;
}
.lw-amount {
    font-weight: 700;
    color: #34C759;
}
.lw-time {
    display: block;
    font-size: 11px;
    color: var(--content-muted, #AEAEB2);
    margin-top: 2px;
}
@keyframes lw-show {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
@media (max-width: 768px) {
    .live-wins-container { max-width: 260px; bottom: 12px; left: 12px; }
    .live-win-item { font-size: 12px; padding: 8px 10px; }
}
/* SEO Enhancer: Популярные запросы */
.seo-queries-block {
    margin: var(--space-lg, 28px) 0;
    padding: var(--space-md, 20px);
    background: var(--surface-deep, #FAFBFC);
    border-radius: var(--radius-md, 12px);
    border: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
}
.seo-queries-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--content-dim, #6E6E73);
    margin-bottom: var(--space-sm, 14px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.seo-queries-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs, 10px);
}
.seo-query-link {
    display: inline-block;
    padding: 6px 14px;
    background: var(--surface-raised, #FFFFFF);
    border: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
    border-radius: var(--radius-full, 9999px);
    font-size: 13px;
    color: var(--content-main, #1D1D1F);
    text-decoration: none;
    transition: var(--ease-out, 0.2s);
}
.seo-query-link:hover {
    background: var(--brand-bg, rgba(200,150,62,0.08));
    border-color: var(--brand-primary, #C8963E);
    color: var(--brand-primary, #C8963E);
}

/* Table of Contents */
.toc-block {
    margin: var(--space-md, 20px) 0;
    padding: var(--space-sm, 14px) var(--space-md, 20px);
    background: var(--surface-deep, #FAFBFC);
    border-radius: var(--radius-md, 12px);
    border: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
}
.toc-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--content-main, #1D1D1F);
    cursor: pointer;
    padding: 4px 0;
    list-style: none;
}
.toc-title::-webkit-details-marker { display: none; }
.toc-title::before { content: '📋 '; }
.toc-list {
    margin-top: var(--space-xs, 10px);
    padding-left: 20px;
    list-style-type: decimal;
}
.toc-list li {
    margin-bottom: 6px;
}
.toc-list a {
    font-size: 14px;
    color: var(--brand-primary, #C8963E);
    text-decoration: none;
    transition: var(--ease-out, 0.2s);
}
.toc-list a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

/* Trust Blocks */
.trust-section {
    padding: var(--space-xl, 40px) var(--space-md, 20px);
    background: var(--surface-secondary, #F5F5F7);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg, 28px);
    max-width: 1100px;
    margin: 0 auto;
}
.trust-card {
    background: var(--surface-raised, #FFFFFF);
    border-radius: var(--radius-lg, 16px);
    padding: var(--space-lg, 28px);
    border: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
}
.trust-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--content-main, #1D1D1F);
    margin-bottom: var(--space-sm, 14px);
}
.trust-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--content-dim, #6E6E73);
    margin-bottom: var(--space-md, 20px);
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs, 10px);
}
.trust-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--brand-bg, rgba(200,150,62,0.08));
    color: var(--brand-primary, #C8963E);
    border-radius: var(--radius-full, 9999px);
    font-size: 12px;
    font-weight: 600;
}
.trust-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm, 14px);
}
.trust-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs, 10px);
}
.trust-contact-icon { font-size: 20px; }
.trust-contact-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--content-main, #1D1D1F);
}
.trust-contact-detail {
    font-size: 13px;
    color: var(--content-dim, #6E6E73);
}
.trust-legal {
    max-width: 1100px;
    margin: var(--space-lg, 28px) auto 0;
    padding-top: var(--space-md, 20px);
    border-top: 1px solid var(--glass-edge, rgba(0,0,0,0.08));
}
.trust-legal p {
    font-size: 11px;
    color: var(--content-muted, #AEAEB2);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr; }
}

