/* Critical CSS - Inline для мгновенной отрисовки */
:root {
    --primary: #11172a;
    --secondary: #1a2642;
    --accent: #a8c7ff;
    --text: #f7f3eb;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: "Commissioner", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Header - Критично для LCP */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(17, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 80px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
/* Logo - Критично для LCP */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}
/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: 8px;
    list-style: none;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-link.active,
.nav-link:hover {
    color: var(--text);
    background: linear-gradient(135deg, var(--accent) 0%, #a8c7ffcc 100%);
}
/* Buttons - Критично для CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #a8c7ffcc 100%);
    color: var(--text);
    box-shadow: 0 0 30px rgba(168, 199, 255, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
/* Main Content */
.main {
    padding-top: 100px;
    padding-bottom: 64px;
    min-height: 100vh;
}
/* Title - Критично для LCP */
.main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, #f7f3eb 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
}
/* Responsive */
@media (max-width: 1024px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .main {
        padding-top: 90px;
    }
    .main-title {
        font-size: 28px;
    }
}
/* Skeleton Loading для CLS */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}
/* Layout Shift Prevention */
img {
    max-width: 100%;
    height: auto;
}
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

/* ============================================
   ДАШБОРД СЛОТОВ v2.0
   ============================================ */
.slots-dashboard {
    margin: 3rem 0;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: 24px;
    border: 2px solid rgba(var(--brand-rgb, 168, 199, 255), 0.15);
}
.slots-dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-primary-dark), transparent);
    background-size: 200% 100%;
    animation: slotsDashShine 4s linear infinite;
}
@keyframes slotsDashShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.slots-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}
.slots-dashboard-header {
    margin-bottom: 2.5rem;
    text-align: center;
}
.slots-dashboard-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.1), rgba(0, 0, 0, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.2);
}
.slots-dashboard-icon {
    font-size: 3.5rem;
    animation: slotsIconFloat 4s ease-in-out infinite;
}
@keyframes slotsIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.slots-dashboard-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slots-dashboard-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    text-align: center;
}
/* Вкладки */
.slots-dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.slots-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(var(--brand-rgb, 168, 199, 255), 0.25);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slots-tab:hover {
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.15);
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.5);
    transform: translateY(-2px);
}
.slots-tab.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border-color: var(--brand-primary);
    color: #0d1425;
    box-shadow: 0 4px 20px rgba(var(--brand-rgb, 168, 199, 255), 0.4);
}
.slots-tab span {
    font-size: 1.2rem;
}
/* Контент вкладок */
.slots-tab-content {
    display: none;
    animation: slotsFadeIn 0.4s ease;
}
.slots-tab-content.active {
    display: block;
}
@keyframes slotsFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
/* ===== Variants (v1..v4) ===== */
.slots-dashboard.variant-v2 .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}
.slots-dashboard.variant-v2 .slot-card { border-radius: 18px; }
.slots-dashboard.variant-v3 .slots-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}
.slots-dashboard.variant-v3 .slot-card {
    min-width: 320px;
    scroll-snap-align: start;
}
.slots-dashboard.variant-v4 .slots-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
.slots-dashboard.variant-v4 .slot-card {
    border-radius: 14px;
}
.slots-dashboard.variant-v4 .slot-chart { display: none; }
.slots-dashboard.variant-v4 .slot-footer { display: flex; justify-content: space-between; }
/* Карточка слота */
.slot-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(9, 31, 41, 0.8) 100%);
    border: 2px solid rgba(var(--brand-rgb, 168, 199, 255), 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slotCardIn 0.6s ease-out backwards;
}
@keyframes slotCardIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.slot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.5);
    box-shadow: 0 16px 40px rgba(var(--brand-rgb, 168, 199, 255), 0.25);
}
.slot-card-inner {
    padding: 0;
}
/* Постер с картинкой */
.slot-poster {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #1c2a49 0%, #0e172a 100%);
}
.slot-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.slot-card:hover .slot-poster img {
    transform: scale(1.08);
}
.slot-poster-fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.slot-poster-fallback.show {
    display: flex;
}
.slot-fallback-icon {
    font-size: 4rem;
    opacity: 0.9;
}
.slot-fallback-name {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 0 1rem;
}
.slot-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}
.slot-badge-high {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: #0d1425;
}
.slot-badge-medium {
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.4);
    color: #f7f3eb;
}
.slot-badge-low {
    background: rgba(255, 255, 255, 0.2);
    color: #f7f3eb;
}
/* Инфо */
.slot-info {
    padding: 1rem 1.25rem 0.75rem;
}
.slot-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7f3eb;
    margin-bottom: 0.25rem;
}
.slot-provider {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}
/* Мини-график */
.slot-chart {
    padding: 0 1.25rem 1rem;
}
.slot-chart-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}
.slot-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 48px;
}
.slot-chart-bar {
    flex: 1;
    min-width: 4px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-dark));
    border-radius: 4px 4px 0 0;
    animation: slotBarGrow 0.8s ease-out backwards;
}
@keyframes slotBarGrow {
    from { height: 0 !important; opacity: 0; }
    to { opacity: 1; }
}
/* Футер карточки */
.slot-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.slot-rtp {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.35rem 0.6rem 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--brand-primary);
    border-radius: 0 8px 8px 0;
}
.slot-rtp-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.slot-rtp-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
}
.slot-play-btn {
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: #0d1425;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.slot-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(var(--brand-rgb, 168, 199, 255), 0.5);
}
/* Адаптив */
@media (max-width: 768px) {
    .slots-dashboard-title { font-size: 1.5rem; }
    .slots-grid { grid-template-columns: 1fr; }
    .slots-dashboard-tabs { gap: 0.5rem; }
    .slots-tab { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .slot-poster { height: 140px; }
}
@media (max-width: 480px) {
    .slots-dashboard-container { padding: 0 1rem; }
    .slots-dashboard-title-wrap { flex-direction: column; text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .slot-card, .slot-chart-bar { animation: none; }
}

/* Final accessibility and Cobalt Apricot consistency pass */
body { font-family: var(--font-body); }
.btn-primary,
.btn-cta,
.timer-button,
.slot-play-btn,
.mobile-nav-link:hover,
.mobile-nav-link.active { color: #11172a !important; }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f7f3eb !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 6px rgba(168, 199, 255, .55) !important;
}
.skip-link:focus {
  left: 16px !important;
  top: 16px !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  z-index: 10001;
  padding: 12px 16px;
  color: #11172a;
  background: #f7f3eb;
  border-radius: 10px;
}
.mobile-nav { visibility: hidden; pointer-events: none; transition-property: transform, opacity !important; }
.mobile-nav.active { visibility: visible; pointer-events: auto; }
.floating-offer,
.bonus-popup { visibility: hidden; pointer-events: none; }
.floating-offer.show,
.bonus-popup.show { visibility: visible; pointer-events: auto; }
@media (max-width: 768px) {
  body.theme-b7 { background-attachment: scroll !important; }
}

/* Блок запросов сайта — другая структура */
.site-queries-block {
    margin: 2.75rem 0;
    padding: 2rem;
    background: linear-gradient(165deg, rgba(var(--brand-rgb, 168, 199, 255), 0.06) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-radius: 18px;
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.2);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.site-queries-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.35rem;
    color: var(--brand-primary);
    text-align: center;
}
.site-queries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}
.site-query-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.25s, border-color 0.25s, transform 0.2s ease;
}
.site-query-link:hover {
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.18);
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.4);
    transform: translateY(-2px);
}
.site-query-arrow {
    font-size: 0.9rem;
    opacity: 0.8;
}
.site-query-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
/* Additional Content */
.additional-content {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(17, 23, 42, 0.6), rgba(10, 30, 18, 0.8));
    border-radius: 24px;
    border: 2px solid rgba(168, 199, 255, 0.2);
}
.content-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffb45f, #ffb45f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.content-block {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(168, 199, 255, 0.08), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(168, 199, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.content-block:hover {
    border-color: rgba(168, 199, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 199, 255, 0.3);
}
.block-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.block-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffb45f;
}
.block-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}
/* Internal Links */
.internal-link {
    color: #ffb45f;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: all 0.2s ease;
}
.internal-link:hover {
    color: #ffb45f;
    text-decoration-style: solid;
}
@media (max-width: 768px) {
    .site-queries-list {
        flex-direction: column;
        align-items: stretch;
    }
    .site-query-link {
        justify-content: flex-start;
    }
    .site-query-text {
        max-width: none;
    }
    .content-blocks {
        grid-template-columns: 1fr;
    }
    .content-title {
        font-size: 1.5rem;
    }
}

/* Value pillars — опоры ценности бренда */
.value-pillars {
    margin: 2.75rem 0;
    padding: 2.25rem;
    background: linear-gradient(165deg, rgba(var(--brand-rgb, 168, 199, 255), 0.06) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    position: relative;
    overflow: hidden;
}
.value-pillars::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    opacity: 0.6;
}
.value-pillars-heading {
    font-size: 1.65rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--brand-primary);
    text-shadow: 0 0 24px rgba(var(--brand-rgb, 168, 199, 255), 0.25);
}
.value-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem;
}
/* ===== Variants (v1..v4) ===== */
.value-pillars.variant-v2 .value-pillars-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}
.value-pillars.variant-v2 .value-pillar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1.15rem;
}
.value-pillars.variant-v2 .value-pillar-icon { font-size: 1.8rem; }
.value-pillars.variant-v2 .value-pillar-title { font-size: 1rem; }
.value-pillars.variant-v3 {
    padding: 1.35rem;
}
.value-pillars.variant-v3 .value-pillars-grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}
.value-pillars.variant-v3 .value-pillar {
    min-width: 280px;
    scroll-snap-align: start;
}
.value-pillars.variant-v4 {
    background: rgba(0, 0, 0, 0.22);
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.14);
}
.value-pillars.variant-v4 .value-pillars-grid { grid-template-columns: 1fr; }
.value-pillars.variant-v4 .value-pillar {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.16);
}
.value-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.06), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s ease;
}
.value-pillar:hover {
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.4);
    box-shadow: 0 10px 28px rgba(var(--brand-rgb, 168, 199, 255), 0.15), 0 0 0 1px rgba(var(--brand-rgb, 168, 199, 255), 0.1);
    transform: translateY(-3px);
}
.value-pillar-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(var(--brand-rgb, 168, 199, 255), 0.2));
}
.value-pillar-body {
    flex: 1;
    min-width: 0;
}
.value-pillar-title {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0 0 0.45rem 0;
    color: var(--brand-primary);
}
.value-pillar-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin: 0;
}
/* Stats row — цифры */
.stats-row {
    margin: 2rem 0;
    padding: 1.75rem;
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.06);
    border-radius: 18px;
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.15);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stats-cell {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.2s;
}
.stats-cell:hover {
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.3);
}
.stats-cell-icon {
    font-size: 2rem;
}
.stats-cell-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
}
.stats-cell-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
    .value-pillars-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-pillars-heading {
        font-size: 1.35rem;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Bonus Calculator Widget */
.bonus-calculator-widget {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(var(--brand-rgb, 168, 199, 255), 0.4);
}
/* ===== Variants (v1..v4) ===== */
.bonus-calculator-widget.variant-v2 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.22);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}
.bonus-calculator-widget.variant-v2 .calculator-inputs { grid-template-columns: 1fr 1fr; }
.bonus-calculator-widget.variant-v2 .calculator-result { margin-top: 0.5rem; }
.bonus-calculator-widget.variant-v3 {
    padding: 1.75rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.bonus-calculator-widget.variant-v3 .calculator-title { font-size: 1.5rem; }
.bonus-calculator-widget.variant-v3 .calculator-inputs { gap: 1rem; }
.bonus-calculator-widget.variant-v3 .calculator-button { width: 100%; }
.bonus-calculator-widget.variant-v4 {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(var(--brand-rgb, 168, 199, 255), 0.08) 100%);
    border: 1px dashed rgba(var(--brand-rgb, 168, 199, 255), 0.28);
}
.bonus-calculator-widget.variant-v4 .calculator-result { background: rgba(255, 255, 255, 0.06); }
.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}
.calculator-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}
.calculator-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}
.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.calculator-label {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}
.calculator-input {
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3f69;
    transition: all 0.3s ease;
}
.calculator-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.calculator-result {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}
.result-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.result-label {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}
.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary-light);
}
.result-total .result-value {
    font-size: 2rem;
    color: var(--brand-primary-light);
}
.calculator-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
    color: #17213a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb, 168, 199, 255), 0.3);
}
.calculator-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--brand-rgb, 168, 199, 255), 0.5);
}
/* Promo Timer Widget */
.promo-timer-widget {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(var(--brand-rgb, 168, 199, 255), 0.4);
    text-align: center;
}
/* ===== Variants (v1..v4) ===== */
.promo-timer-widget.variant-v2 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.22);
    text-align: left;
}
.promo-timer-widget.variant-v2 .timer-display {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1.25rem;
}
.promo-timer-widget.variant-v2 .timer-cta { text-align: center; }
.promo-timer-widget.variant-v3 {
    padding: 1.75rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.promo-timer-widget.variant-v3 .timer-display {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
}
.promo-timer-widget.variant-v3 .timer-item { min-width: 140px; }
.promo-timer-widget.variant-v4 {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(var(--brand-rgb, 168, 199, 255), 0.08) 100%);
    border: 1px dashed rgba(var(--brand-rgb, 168, 199, 255), 0.28);
}
.promo-timer-widget.variant-v4 .timer-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}
.timer-header {
    margin-bottom: 2rem;
}
.timer-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}
.timer-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.timer-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.timer-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.timer-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--brand-primary-dark);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
.timer-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .timer-display {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-title,
    .timer-title {
        font-size: 1.5rem;
    }
    
    .timer-value {
        font-size: 2rem;
    }
}

/* Bonus Programs Section */
.bonus-programs-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(var(--brand-rgb, 168, 199, 255), 0.4);
}

/* ===== Variants (v1..v4) ===== */
.bonus-programs-section.variant-v2 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.22);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}
.bonus-programs-section.variant-v2 .bonus-programs-grid { grid-template-columns: 1fr; }
.bonus-programs-section.variant-v2 .bonus-card { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; align-items: start; }
.bonus-programs-section.variant-v2 .bonus-card-icon { grid-row: span 3; }

.bonus-programs-section.variant-v3 {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.bonus-programs-section.variant-v3 .bonus-programs-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}
.bonus-programs-section.variant-v3 .bonus-card { min-width: 320px; scroll-snap-align: start; }

.bonus-programs-section.variant-v4 {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(var(--brand-rgb, 168, 199, 255), 0.08) 100%);
    border: 1px dashed rgba(var(--brand-rgb, 168, 199, 255), 0.28);
}
.bonus-programs-section.variant-v4 .bonus-card { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); }

.bonus-programs-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 2.5rem;
}

.bonus-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.bonus-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bonusIconBounce 2s ease-in-out infinite;
}

@keyframes bonusIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bonus-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bonus-card-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary-light);
    margin-bottom: 0.5rem;
}

.bonus-card-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.bonus-card-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.bonus-card-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.bonus-card-button {
    display: block;
    padding: 1rem 2rem;
    background: white;
    color: var(--brand-primary-dark);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.bonus-card-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .bonus-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-programs-title {
        font-size: 1.5rem;
    }
    
    .bonus-card-amount {
        font-size: 2rem;
    }
}

.recent-payouts-block {
    margin: 1.75rem 0;
    padding: 1.35rem;
    background: rgba(8, 29, 38, 0.85);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.jackpot-strip { margin-bottom: 1.25rem; }
.jackpot-strip-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-primary);
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}
.jackpot-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}
.jackpot-cell {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s, background 0.2s;
}
.jackpot-cell:hover {
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.06);
    border-color: rgba(var(--brand-rgb, 168, 199, 255), 0.18);
}
.jackpot-cell-pulse { animation: jpPulse 2.2s ease-in-out infinite; }
@keyframes jpPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(var(--brand-rgb, 168, 199, 255), 0.08); }
    50% { box-shadow: 0 0 12px rgba(var(--brand-rgb, 168, 199, 255), 0.2); }
}
.jackpot-cell-icon { font-size: 1.6rem; }
.jackpot-cell-info { display: flex; flex-direction: column; gap: 0.2rem; }
.jackpot-cell-name {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}
.jackpot-cell-amount {
    font-size: 1rem;
    font-weight: 800;
    color: var(--jp-color, var(--brand-primary));
}
.payout-feed {
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    overflow: hidden;
}
.payout-feed-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.payout-feed-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: feedDot 1.4s ease-in-out infinite;
}
@keyframes feedDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.payout-feed-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
}
.payout-track {
    overflow: hidden;
    padding: 0.65rem 0;
}
.payout-scroll {
    display: flex;
    gap: 1.5rem;
    animation: payoutScroll 28s linear infinite;
    width: max-content;
}
.payout-scroll:hover { animation-play-state: paused; }
@keyframes payoutScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.payout-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.82rem;
}
.payout-row-jackpot {
    background: rgba(var(--brand-rgb, 168, 199, 255), 0.07);
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.18);
}
.payout-row-mega { background: rgba(var(--brand-rgb, 168, 199, 255), 0.05); }
.payout-row-big { background: rgba(var(--brand-rgb, 168, 199, 255), 0.03); }
.payout-row-icon { font-size: 0.95rem; }
.payout-row-name { font-weight: 600; color: #e9edf7; }
.payout-row-sep { color: rgba(255,255,255,0.25); }
.payout-row-amount { font-weight: 700; color: #ffb45f; }
.payout-row-slot { color: var(--brand-primary); font-weight: 500; }
.payout-row-time { color: rgba(255,255,255,0.35); font-size: 0.7rem; margin-left: 0.4rem; }
.payout-cta { margin-top: 0.9rem; text-align: center; }
.payout-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: var(--brand-primary);
    color: #0b1324;
    font-weight: 600;
    font-size: 0.82rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.payout-btn:hover { background: var(--brand-primary-light, #ffd5a7); }
@media (max-width: 768px) {
    .recent-payouts-block { padding: 1rem; margin: 1.25rem 0; border-radius: 12px; }
    .jackpot-strip-grid { grid-template-columns: 1fr; gap: 0.65rem; }
    .jackpot-cell { padding: 0.75rem; }
    .payout-feed-header { padding: 0.5rem 0.75rem; }
    .payout-row { font-size: 0.78rem; padding: 0.4rem 0.7rem; }
    .payout-scroll { animation-duration: 22s; }
    .payout-row-time { display: none; }
    .payout-btn { padding: 0.55rem 1.2rem; font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .recent-payouts-block { padding: 0.75rem; margin: 1rem 0; }
    .jackpot-strip-title { font-size: 0.75rem; margin-bottom: 0.65rem; }
    .jackpot-cell-amount { font-size: 0.9rem; }
    .payout-row { font-size: 0.72rem; padding: 0.35rem 0.6rem; }
    .payout-row-slot { display: none; }
    .payout-btn { width: 100%; justify-content: center; min-height: 44px; }
}
/* ===== Variants (v1..v4) ===== */
.recent-payouts-block.variant-v2 .jackpot-strip-grid { grid-template-columns: repeat(2, 1fr); }
.recent-payouts-block.variant-v2 .payout-feed { margin-top: 1rem; }
.recent-payouts-block.variant-v2 .payout-row { padding: 0.6rem 0.75rem; }
.recent-payouts-block.variant-v3 .jackpot-strip-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
}
.recent-payouts-block.variant-v3 .jackpot-cell { min-width: 220px; scroll-snap-align: start; }
.recent-payouts-block.variant-v3 .payout-track { overflow: hidden; }
.recent-payouts-block.variant-v4 { background: rgba(0,0,0,0.32); border-style: dashed; }
.recent-payouts-block.variant-v4 .jackpot-strip { display: none; }
.recent-payouts-block.variant-v4 .payout-row-slot { display: none; }

.win-notifications-root {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    max-width: 320px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.win-notification-toast {
    position: relative;
    pointer-events: auto;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 168, 199, 255), 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: #f7f3eb;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(var(--brand-rgb, 168, 199, 255), 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--brand-rgb, 168, 199, 255), 0.2);
    backdrop-filter: blur(16px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: winToastIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.win-notification-toast::before {
    content: "LIVE";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand-primary);
    opacity: 0.8;
}
.win-notification-toast:hover {
    transform: scale(1.02) translateX(5px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(var(--brand-rgb, 168, 199, 255), 0.35);
}
.win-notification-toast.win-toast-out {
    animation: winToastOut 0.35s ease-in forwards;
}
@keyframes winToastIn {
    from { transform: translateX(-380px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes winToastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-380px); opacity: 0; }
}
.win-toast-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}
.win-toast-emoji { font-size: 32px; flex-shrink: 0; animation: winToastEmoji 1.5s ease-in-out infinite; }
@keyframes winToastEmoji { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.win-toast-body { flex: 1; min-width: 0; }
.win-toast-player { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: rgba(255,255,255,0.98); }
.win-toast-amount { font-size: 19px; font-weight: 900; color: var(--brand-primary); text-shadow: 0 0 15px rgba(var(--brand-rgb, 168, 199, 255), 0.6); margin-bottom: 3px; letter-spacing: 0.5px; }
.win-toast-game { font-size: 12px; opacity: 0.9; color: rgba(255,255,255,0.75); }
.win-toast-close {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #f7f3eb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s;
}
.win-toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .win-notifications-root { bottom: 10px; left: 10px; right: 10px; max-width: none; align-items: stretch; }
    .win-notification-toast { padding: 12px 14px; }
}

:root {
            --surface-deep: #11172a;
            --surface-raised: #1a2642;
            --brand-primary: #a8c7ff;
            --brand-primary-dark: #6f98ea;
            --brand-primary-light: #f7f3eb;
            --brand-rgb: 168, 199, 255;
            --content-main: #f7f3eb;
            --grad-surface: linear-gradient(180deg, #11172a 0%, #1a2642 100%);
            --grad-brand: linear-gradient(135deg, #a8c7ff 0%, #6f98ea 100%);
            --glow-brand: 0 0 20px rgba(168, 199, 255, 0.4);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-edge: rgba(255, 255, 255, 0.06);
            --gold: #a8c7ff;
            --gold-dark: #6f98ea;
            --gold-light: #f7f3eb;
        }
        
        .yandex-index-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            margin: -1px !important;
            padding: 0 !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            clip-path: inset(50%) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
            background: #11172a;
            color: #f7f3eb;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
        }
        
        .header::before,
        .header::after {
            display: none !important;
        }
        
        .header.scrolled {
            background: rgba(0, 0, 0, 0.45);
            border-bottom-color: rgba(255, 255, 255, 0.04);
        }
        
        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 24px;
            gap: 16px;
            transition: padding 0.35s ease;
        }
        
        .header.scrolled .header-inner {
            padding: 4px 24px;
            justify-content: center;
        }
        
        .logo-link {
            flex-shrink: 0;
            transition: opacity 0.35s ease, max-width 0.35s ease, margin 0.35s ease;
            overflow: hidden;
            max-width: 200px;
        }
        
        .header.scrolled .logo-link {
            opacity: 0;
            max-width: 0;
            margin: 0;
            pointer-events: none;
        }
        
        .logo {
            height: 32px;
            width: auto;
        }
        
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
            overflow: visible;
            min-width: 0;
        }
        
        .nav-list {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .nav-list li {
            flex-shrink: 0;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 10px;
            color: #f7f3eb;
            font-size: 11px;
            font-weight: 400;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.2s ease, opacity 0.2s ease;
            opacity: 0.8;
            border-radius: 6px;
        }
        
        .nav-link:hover {
            opacity: 1;
            color: #ffb45f;
            background: rgba(168, 199, 255, 0.08);
        }
        
        .nav-link.active {
            opacity: 1;
            color: #ffb45f;
        }
        
        .nav-icon {
            font-size: 12px;
        }
        
        .header.scrolled .nav-list {
            flex-wrap: nowrap;
        }
        
        .header.scrolled .nav-link {
            padding: 5px 8px;
            font-size: 11px;
        }
        
        @media (max-width: 1200px) {
            .nav-link { padding: 5px 7px; font-size: 10px; }
            .nav-icon { font-size: 11px; }
        }
        
        @media (max-width: 1024px) {
            .main-nav { display: none; }
            .header-actions { display: none !important; }
            .mobile-menu-btn { display: flex !important; }
        }
        
        /* ===== Header Menu Variants ===== */
        /* v1 - стандартный (по умолчанию) */
        .header.variant-v1 .main-nav .nav-list {
            gap: 2px;
        }
        .header.variant-v1 .nav-link {
            padding: 6px 10px;
            font-size: 11px;
        }
        
        /* v2 - компактный */
        .header.variant-v2 .main-nav .nav-list {
            gap: 1px;
        }
        .header.variant-v2 .nav-link {
            padding: 5px 8px;
            font-size: 10px;
        }
        .header.variant-v2 .nav-icon {
            font-size: 11px;
        }
        
        /* v3 - расширенный */
        .header.variant-v3 .main-nav .nav-list {
            gap: 4px;
        }
        .header.variant-v3 .nav-link {
            padding: 8px 12px;
            font-size: 12px;
        }
        .header.variant-v3 .nav-icon {
            font-size: 13px;
        }
        
        /* v4 - минималистичный */
        .header.variant-v4 .main-nav .nav-list {
            gap: 0;
        }
        .header.variant-v4 .nav-link {
            padding: 6px 8px;
            font-size: 10px;
            border-radius: 4px;
        }
        .header.variant-v4 .nav-link:hover {
            background: rgba(168, 199, 255, 0.12);
        }
        
        .header-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            transition: opacity 0.35s ease, max-width 0.35s ease, margin 0.35s ease;
            overflow: hidden;
            max-width: 300px;
        }
        
        .header.scrolled .header-actions {
            opacity: 0;
            max-width: 0;
            margin: 0;
            pointer-events: none;
        }
        
        .header-actions .btn {
            padding: 6px 14px;
            font-size: 12px;
            border-radius: 18px;
        }
        
        .header-actions .btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #f7f3eb;
        }
        
        .header-actions .btn-cta {
            background: #ffb45f;
            color: #0d1425;
            border: none;
            font-weight: 600;
        }
        
        .preloader {
            position: fixed;
            inset: 0;
            background: var(--surface-raised);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid var(--glass-edge);
            border-top-color: var(--brand-primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .content-hidden {
            opacity: 0;
        }
        
        .site-structure-block {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.025);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        /* ===== Variants: Site Structure (v1..v4) ===== */
        .site-structure-block.variant-v2 .site-structure-nav {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }
        .site-structure-block.variant-v2 .site-structure-group {
            background: rgba(0,0,0,0.18);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 0.9rem;
        }
        .site-structure-block.variant-v3 .site-structure-priority {
            background: transparent;
            border: 1px dashed rgba(255,255,255,0.16);
        }
        .site-structure-block.variant-v3 .site-structure-nav {
            display: flex;
            gap: 0.9rem;
            overflow-x: auto;
            padding-bottom: 0.4rem;
        }
        .site-structure-block.variant-v3 .site-structure-group { min-width: 260px; }
        .site-structure-block.variant-v4 { background: rgba(0,0,0,0.22); border-style: dashed; }
        .site-structure-block.variant-v4 .site-structure-group-desc { display: none; }
        .site-structure-block.variant-v4 .site-structure-priority { padding: 0.6rem 0.8rem; }
        .site-structure-header { margin-bottom: 1rem; }
        .site-structure-heading { font-size: 1.35rem; margin-bottom: 0.25rem; color: var(--brand-primary); }
        .site-structure-desc { color: rgba(255, 255, 255, 0.55); margin-bottom: 0; font-size: 0.9rem; }
        .site-structure-priority {
            display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
            margin-bottom: 1.25rem; padding: 0.75rem 1rem; background: rgba(0,0,0,0.2);
            border-radius: 8px;
        }
        .site-structure-priority-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-right: 0.25rem; }
        .site-structure-priority-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
        .site-structure-priority-link { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
        .site-structure-priority-link:hover { color: var(--brand-primary); }
        .site-structure-priority-sep { color: rgba(255,255,255,0.35); user-select: none; }
        .site-structure-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
        .site-structure-group { flex: 1 1 200px; }
        .site-structure-group-title { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 0.25rem; font-weight: 600; }
        .site-structure-group-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
        .site-structure-list { list-style: none; padding: 0; margin: 0; }
        .hero-live-online { margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; }
        .hero-live-online .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-primary); box-shadow: 0 0 8px var(--brand-primary); animation: live-pulse 1.5s ease-in-out infinite; }
        @keyframes live-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        .site-structure-list li { margin-bottom: 0.35rem; }
        .site-structure-link { color: rgba(255,255,255,0.85); text-decoration: none; }
        .site-structure-link:hover { color: var(--brand-primary); text-decoration: underline; }
        .site-structure-link--current { color: var(--brand-primary); font-weight: 600; }
        .on-this-page-nav {
            display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem;
            margin: 0.75rem 0 1rem; padding: 0.6rem 1rem; background: rgba(255,255,255,0.04);
            border-radius: 8px; font-size: 0.9rem;
        }
        .on-this-page-label { color: rgba(255,255,255,0.55); }
        .on-this-page-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
        .on-this-page-link { color: var(--brand-primary); text-decoration: none; }
        .on-this-page-link:hover { text-decoration: underline; }
        .review-quotes-block { margin: 2rem 0; }
        .page-thematic-block { margin: 2rem 0; }
        /* ===== Variants: Review Quotes / Thematic ===== */
        .review-quotes-block.variant-v2 .review-quotes-list,
        .page-thematic-block.variant-v2 .review-quotes-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .review-quotes-block.variant-v3,
        .page-thematic-block.variant-v3 {
            padding: 1.25rem;
        }
        .review-quotes-block.variant-v3 .faq-item,
        .page-thematic-block.variant-v3 .faq-item {
            border-style: dashed;
            background: rgba(0,0,0,0.18);
        }
        .review-quotes-block.variant-v4 .faq-answer,
        .page-thematic-block.variant-v4 .faq-answer {
            display: block;
            padding-top: 0.25rem;
        }
        .review-quotes-block.variant-v4 .faq-question::after,
        .page-thematic-block.variant-v4 .faq-question::after {
            display: none;
        }
        body.layout-structure-asymmetric .page-thematic-block .review-quotes-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            body.layout-structure-asymmetric .page-thematic-block .review-quotes-list {
                grid-template-columns: 1fr;
            }
        }
        .review-quotes-heading { font-size: 1.25rem; margin-bottom: 0.35rem; color: rgba(255,255,255,0.95); }
        .review-quotes-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
        .review-quote-item .review-quote-summary { font-weight: 600; }
        .review-quote-text { margin: 0; font-style: italic; color: rgba(255,255,255,0.85); }
        .related-sections, .topic-nav {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
        }
        
        .related-sections-heading, .topic-nav-heading {
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
            color: var(--brand-primary);
            font-weight: 600;
        }
        
        .related-sections-desc, .topic-nav-desc {
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .related-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.9rem;
        }
        /* ===== Variants: Related ===== */
        .related-sections.variant-v2 .related-cards { grid-template-columns: 1fr 1fr; gap: 1rem; }
        .related-sections.variant-v2 .related-card { padding: 1.25rem; border-radius: 14px; }
        .related-sections.variant-v3 .related-cards {
            display: flex;
            gap: 0.85rem;
            overflow-x: auto;
            padding-bottom: 0.4rem;
        }
        .related-sections.variant-v3 .related-card { min-width: 260px; }
        .related-sections.variant-v4 .related-cards { grid-template-columns: 1fr; gap: 0.65rem; }
        .related-sections.variant-v4 .related-card { background: transparent; border-style: dashed; }
        body.layout-structure-asymmetric .related-cards {
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        body.layout-structure-asymmetric .related-card {
            display: flex;
            flex-direction: column;
        }
        body.layout-structure-vertical .related-cards {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
        
        .related-card {
            padding: 1.1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: border-color 0.2s, background 0.2s;
        }
        
        .related-card:hover {
            background: rgba(168, 199, 255, 0.06);
            border-color: rgba(168, 199, 255, 0.2);
        }
        
        .related-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .related-card-title {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.35rem 0;
            color: #e9edf7;
        }
        
        .related-card-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.35;
            margin: 0;
        }
        
        .topic-links {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        
        .topic-link-item {
            margin: 0;
        }
        
        .topic-link-item .topic-link {
            display: inline-block;
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            text-decoration: none;
            color: #e8edf8;
            font-size: 0.88rem;
            font-weight: 500;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        
        .topic-link-item .topic-link:hover {
            background: rgba(168, 199, 255, 0.1);
            border-color: rgba(168, 199, 255, 0.25);
            color: var(--brand-primary);
        }
        
        @media (max-width: 768px) {
            .site-structure-block { margin: 1.25rem 0; padding: 1.25rem; }
            .site-structure-priority { flex-direction: column; align-items: flex-start; }
            .site-structure-nav { flex-direction: column; }
            .on-this-page-nav { flex-direction: column; align-items: flex-start; }
            .related-sections, .topic-nav {
                margin: 1.25rem 0;
                padding: 1.25rem;
            }
            .related-sections-heading, .topic-nav-heading {
                font-size: 1.15rem;
            }
            .related-cards {
                grid-template-columns: 1fr;
            }
            body.layout-structure-asymmetric .related-cards {
                grid-template-columns: 1fr;
            }
        }

/* Beef860 Cobalt Apricot typography and motion */
:root {
  --font-display: 'Marmelad', Georgia, serif;
  --font-body: 'Commissioner', system-ui, sans-serif;
  --font-mono: 'PT Mono', Consolas, monospace;
}
h1, h2, .main-title, .hero-headline, .slots-dashboard-title, .faq-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.timer-value, .slot-rtp-value, .payout-row-amount, .hero-badge {
  font-family: var(--font-mono);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body { font-family: var(--font-body); }
.btn-primary, .btn-cta, .timer-button, .slot-play-btn,
.mobile-nav-link:hover, .mobile-nav-link.active { color: #11172a !important; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #f7f3eb !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 6px rgba(168, 199, 255, .55) !important;
}
.skip-link:focus {
  left: 16px !important; top: 16px !important; width: auto !important;
  height: auto !important; overflow: visible !important; z-index: 10001;
  padding: 12px 16px; color: #11172a; background: #f7f3eb; border-radius: 10px;
}
.mobile-nav { visibility: hidden; pointer-events: none; transition-property: transform, opacity !important; }
.mobile-nav.active { visibility: visible; pointer-events: auto; }
.floating-offer, .bonus-popup { visibility: hidden; pointer-events: none; }
.floating-offer.show, .bonus-popup.show { visibility: visible; pointer-events: auto; }
@media (max-width: 768px) { body.theme-b7 { background-attachment: scroll !important; } }

/* Beef860 Cobalt Apricot typography */
:root {
  --font-display: 'Marmelad', Georgia, serif;
  --font-body: 'Commissioner', system-ui, sans-serif;
  --font-mono: 'PT Mono', Consolas, monospace;
}
body {
  font-family: var(--font-body);
}
h1, h2, h3, h4,
.main-title, .hero-headline, .slots-dashboard-title,
.faq-section h2, .gradient-text, .action-title,
.related-card-title, .keywords-heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  background-image: none !important;
  -webkit-text-fill-color: currentColor !important;
  animation: beef860-heading-pulse 4.8s ease-in-out infinite;
}
h2 { animation-delay: -1.2s; }
h3 { animation-delay: -2.4s; }
h4 { animation-delay: -3.6s; }
.timer-value, .slot-rtp-value, .payout-row-amount, .hero-badge {
  font-family: var(--font-mono);
}
@keyframes beef860-heading-pulse {
  0%, 100% {
    color: #a8c7ff;
    text-shadow: 0 0 8px rgba(168, 199, 255, 0.22), 0 0 22px rgba(168, 199, 255, 0.08);
  }
  48%, 52% {
    color: #ffb45f;
    text-shadow: 0 0 10px rgba(255, 180, 95, 0.3), 0 0 28px rgba(255, 180, 95, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  h1, h2, h3, h4,
  .main-title, .hero-headline, .slots-dashboard-title,
  .faq-section h2, .gradient-text, .action-title,
  .related-card-title, .keywords-heading {
    animation: none !important;
    color: #a8c7ff !important;
    text-shadow: none !important;
  }
}
/* Beef860 lighter canvas and first screen */
.content-wrapper {
  background: linear-gradient(145deg, rgba(168, 199, 255, 0.1), rgba(255, 180, 95, 0.055));
  border-radius: var(--radius-2xl);
}
.content-header {
  background: linear-gradient(145deg, rgba(44, 69, 115, 0.88), rgba(68, 88, 139, 0.84));
  border-color: rgba(168, 199, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(247, 243, 235, 0.2), 0 18px 44px rgba(3, 14, 19, 0.14);
}
.hero-value,
.hero-compact {
  background: linear-gradient(155deg, rgba(31, 55, 94, 0.97) 0%, rgba(23, 42, 73, 0.98) 100%);
  border-color: rgba(168, 199, 255, 0.36);
  box-shadow: 0 20px 54px rgba(3, 14, 19, 0.28), inset 0 1px 0 rgba(247, 243, 235, 0.1);
}
.hero-value::after,
.hero-compact::after {
  background: radial-gradient(circle, rgba(168, 199, 255, 0.2) 0%, transparent 66%);
}
/* Beef860 full-width slot launch button */
.slots-dashboard .slot-footer {
  display: flex;
  width: 100%;
  padding: 0.75rem;
}
.slots-dashboard .slot-play-btn {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  min-height: 48px;
  margin: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8c7ff 0%, #86aef5 100%) !important;
  color: #11172a !important;
  border: 1px solid rgba(247, 243, 235, 0.72);
  box-shadow: 0 8px 22px rgba(168, 199, 255, 0.28);
}
.slots-dashboard .slot-play-btn:hover {
  background: linear-gradient(135deg, #ffb45f 0%, #a8c7ff 100%) !important;
  box-shadow: 0 10px 28px rgba(255, 180, 95, 0.32);
}
/* Beef860 article block inner inset */
.article-content > .layout-block-content {
  box-sizing: border-box;
  padding-left: clamp(24px, 4vw, 58px);
  padding-right: clamp(18px, 3vw, 42px);
}
@media (max-width: 640px) {
  .article-content > .layout-block-content {
    padding-left: 16px;
    padding-right: 12px;
  }
}
/* Beef860 removed CTA copy placeholder */
.cta-trust:has(.copy-placeholder) {
  display: none !important;
}
/* Beef860 visible action offer button */
.action-block .hero-cta .btn-outline {
  background: #a8c7ff !important;
  color: #11172a !important;
  -webkit-text-fill-color: #11172a !important;
  border-color: #f7f3eb !important;
  text-shadow: none !important;
  box-shadow: 0 8px 22px rgba(168, 199, 255, 0.26);
}
.action-block .hero-cta .btn-outline:hover,
.action-block .hero-cta .btn-outline:focus-visible {
  background: #ffb45f !important;
  color: #11172a !important;
  -webkit-text-fill-color: #11172a !important;
  border-color: #fff0dc !important;
}

/* Beef860 split hero composition */
@media (min-width: 969px) {
  .hero-value.variant-v2 .hero-value-grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
  }
  .hero-value.variant-v2 .hero-quicklinks {
    order: 1;
  }
  .hero-value.variant-v2 .hero-info {
    order: 2;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(168, 199, 255, 0.12), rgba(255, 180, 95, 0.08));
    border: 1px solid rgba(168, 199, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(247, 243, 235, 0.12);
  }
  .hero-value.variant-v2 .quicklinks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 968px) {
  .hero-value.variant-v2 .hero-info {
    order: 1;
    padding: 22px;
    background: linear-gradient(145deg, rgba(168, 199, 255, 0.1), rgba(255, 180, 95, 0.07));
    border: 1px solid rgba(168, 199, 255, 0.26);
    border-radius: var(--radius-lg);
  }
  .hero-value.variant-v2 .hero-quicklinks {
    order: 2;
  }
}
/* Beef860 Cobalt Apricot final theme */
:root {
  --font-display: 'Marmelad', Georgia, serif;
  --font-body: 'Commissioner', system-ui, sans-serif;
  --font-mono: 'PT Mono', Consolas, monospace;
}
body { font-family: var(--font-body); }
h1, h2, h3, h4,
.main-title, .hero-headline, .slots-dashboard-title,
.faq-section h2, .gradient-text, .action-title,
.related-card-title, .keywords-heading {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
}
@keyframes beef860-heading-pulse {
  0%, 100% { color: #a8c7ff; text-shadow: 0 0 9px rgba(168, 199, 255, 0.24); }
  48%, 52% { color: #ffb45f; text-shadow: 0 0 11px rgba(255, 180, 95, 0.3); }
}
h1, h2, h3, h4,
.main-title, .hero-headline, .slots-dashboard-title,
.faq-section h2, .gradient-text, .action-title,
.related-card-title, .keywords-heading {
  animation-name: beef860-heading-pulse;
}
.content-header {
  background: linear-gradient(145deg, rgba(44, 69, 115, 0.9), rgba(68, 88, 139, 0.86));
  border-color: rgba(168, 199, 255, 0.44);
}
.hero-value,
.hero-compact {
  background: linear-gradient(155deg, rgba(31, 55, 94, 0.98), rgba(23, 42, 73, 0.99));
  border-color: rgba(168, 199, 255, 0.38);
}
.slots-dashboard .slot-play-btn,
.action-block .hero-cta .btn-outline {
  background: linear-gradient(135deg, #a8c7ff, #ffb45f) !important;
  color: #11172a !important;
  -webkit-text-fill-color: #11172a !important;
  border-color: #f7f3eb !important;
}
.slots-dashboard .slot-play-btn:hover,
.action-block .hero-cta .btn-outline:hover,
.action-block .hero-cta .btn-outline:focus-visible {
  background: linear-gradient(135deg, #ffb45f, #ffc785) !important;
  color: #11172a !important;
  -webkit-text-fill-color: #11172a !important;
}
@media (prefers-reduced-motion: reduce) {
  h1, h2, h3, h4,
  .main-title, .hero-headline, .slots-dashboard-title,
  .faq-section h2, .gradient-text, .action-title,
  .related-card-title, .keywords-heading {
    animation: none !important;
    color: #a8c7ff !important;
  }
}
/* Beef860 compact bonus popup */
.floating-offer,
.bonus-popup {
  width: min(500px, calc(100vw - 32px));
  max-width: 500px;
  min-width: 0;
  padding: 9px 42px 9px 12px;
}
.floating-offer .offer-body,
.bonus-popup .popup-content {
  gap: 8px;
}
.floating-offer .popup-icon,
.bonus-popup .popup-icon {
  font-size: 22px;
}
.floating-offer .offer-heading,
.bonus-popup .popup-bonus {
  font-size: 0.92rem;
  line-height: 1.1;
}
.floating-offer .offer-desc,
.bonus-popup .popup-label {
  margin-top: 1px;
  font-size: 0.72rem;
  line-height: 1.15;
}
.floating-offer .popup-cta,
.bonus-popup .popup-cta {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1.1;
}
.floating-offer .popup-close,
.bonus-popup .popup-close {
  width: 24px;
  height: 24px;
  right: 9px;
  font-size: 16px;
}
@media (max-width: 480px) {
  .floating-offer,
  .bonus-popup {
    width: calc(100vw - 20px);
    max-width: none;
    padding: 8px 36px 8px 10px;
  }
  .floating-offer .popup-icon,
  .bonus-popup .popup-icon {
    display: none;
  }
  .floating-offer .popup-cta,
  .bonus-popup .popup-cta {
    padding: 7px 9px;
  }
}
/* Beef860 bonus popup 50 percent taller */
.floating-offer,
.bonus-popup {
  min-height: 78px;
  box-sizing: border-box;
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (max-width: 480px) {
  .floating-offer,
  .bonus-popup {
    min-height: 75px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
/* Beef860 popup vertical content centering */
.floating-offer .offer-body,
.bonus-popup .popup-content {
  min-height: 50px;
  align-items: center;
}