@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Didact+Gothic&family=DM+Mono:wght@500&display=swap');
/* Critical CSS - Inline для мгновенной отрисовки */
:root {
    --primary: #5e4f2d;
    --secondary: #564829;
    --accent: #b7943d;
    --text: #eedfe3;
}
*, *::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: Spectral, -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(93,35,47,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(238,223,227,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(238,223,227,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%, #b7943dcc 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%, #b7943dcc 100%);
    color: var(--text);
    box-shadow: 0 0 30px rgba(218,104,131,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%, #eedfe3 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(238,223,227,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(238,223,227,0.03);
    border: 1px solid rgba(238,223,227,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(238,223,227,0.03) 25%, rgba(238,223,227,0.08) 50%, rgba(238,223,227,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, 231, 184, 75), 0.08) 0%, rgba(38,32,57,0.5) 100%);
    border-radius: 24px;
    border: 2px solid rgba(var(--brand-rgb, 231, 184, 75), 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, 231, 184, 75), 0.1), rgba(38,32,57,0.4));
    border-radius: 20px;
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 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(238,223,227,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(238,223,227,0.05);
    border: 2px solid rgba(var(--brand-rgb, 231, 184, 75), 0.25);
    border-radius: 16px;
    color: rgba(238,223,227,0.9);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slots-tab:hover {
    background: rgba(var(--brand-rgb, 231, 184, 75), 0.15);
    border-color: rgba(var(--brand-rgb, 231, 184, 75), 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: #4f4426;
    box-shadow: 0 4px 20px rgba(var(--brand-rgb, 231, 184, 75), 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(38,32,57,0.5) 0%, rgba(92,34,49,0.8) 100%);
    border: 2px solid rgba(var(--brand-rgb, 231, 184, 75), 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, 231, 184, 75), 0.5);
    box-shadow: 0 16px 40px rgba(var(--brand-rgb, 231, 184, 75), 0.25);
}
.slot-card-inner {
    padding: 0;
}
/* Постер с картинкой */
.slot-poster {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #755f28 0%, #564829 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, 231, 184, 75), 0.15) 0%, rgba(38,32,57,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(238,223,227,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: #4f4426;
}
.slot-badge-medium {
    background: rgba(var(--brand-rgb, 231, 184, 75), 0.4);
    color: #eedfe3;
}
.slot-badge-low {
    background: rgba(238,223,227,0.2);
    color: #eedfe3;
}
/* Инфо */
.slot-info {
    padding: 1rem 1.25rem 0.75rem;
}
.slot-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #eedfe3;
    margin-bottom: 0.25rem;
}
.slot-provider {
    font-size: 0.8rem;
    color: rgba(238,223,227,0.65);
}
/* Мини-график */
.slot-chart {
    padding: 0 1.25rem 1rem;
}
.slot-chart-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(238,223,227,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(38,32,57,0.3);
    border-top: 1px solid rgba(238,223,227,0.06);
}
.slot-rtp {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.35rem 0.6rem 0.35rem 0.75rem;
    background: rgba(238,223,227,0.04);
    border-left: 3px solid var(--brand-primary);
    border-radius: 0 8px 8px 0;
}
.slot-rtp-label {
    font-size: 0.6rem;
    color: rgba(238,223,227,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: #4f4426;
    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, 231, 184, 75), 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; }
}

/* Блок запросов сайта — другая структура */
.site-queries-block {
    margin: 2.75rem 0;
    padding: 2rem;
    background: linear-gradient(165deg, rgba(var(--brand-rgb, 231, 184, 75), 0.06) 0%, rgba(38,32,57,0.25) 100%);
    border-radius: 18px;
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 0.2);
    box-shadow: 0 8px 28px rgba(38,32,57,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(38,32,57,0.35);
    border: 1px solid rgba(238,223,227,0.12);
    border-radius: 999px;
    text-decoration: none;
    color: rgba(238,223,227,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, 231, 184, 75), 0.18);
    border-color: rgba(var(--brand-rgb, 231, 184, 75), 0.4);
    transform: translateY(-2px);
}
.site-query-arrow {
    font-size: 0.9rem;
    opacity: 0.8;
}
.site-query-text {
    #f3e9d5-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(93,35,47,0.6), rgba(84,31,43,0.8));
    border-radius: 24px;
    border: 2px solid rgba(222,202,137,0.2);
}
.content-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #b4be6a, #b4be6a);
    -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(222,202,137,0.08), rgba(38,32,57,0.4));
    border: 1px solid rgba(222,202,137,0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.content-block:hover {
    border-color: rgba(222,202,137,0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(222,202,137,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: #b4be6a;
}
.block-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(238,223,227,0.85);
}
/* Internal Links */
.internal-link {
    color: #b4be6a;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: all 0.2s ease;
}
.internal-link:hover {
    color: #b4be6a;
    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, 231, 184, 75), 0.06) 0%, rgba(38,32,57,0.3) 100%);
    border-radius: 20px;
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 0.22);
    box-shadow: 0 12px 40px rgba(38,32,57,0.25), 0 0 0 1px rgba(238,223,227,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, 231, 184, 75), 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(38,32,57,0.22);
    border-color: rgba(var(--brand-rgb, 231, 184, 75), 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(238,223,227,0.16);
}
.value-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 231, 184, 75), 0.06), rgba(38,32,57,0.4));
    border: 1px solid rgba(238,223,227,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, 231, 184, 75), 0.4);
    box-shadow: 0 10px 28px rgba(var(--brand-rgb, 231, 184, 75), 0.15), 0 0 0 1px rgba(var(--brand-rgb, 231, 184, 75), 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, 231, 184, 75), 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(238,223,227,0.82);
    line-height: 1.5;
    margin: 0;
}
/* Stats row — цифры */
.stats-row {
    margin: 2rem 0;
    padding: 1.75rem;
    background: rgba(var(--brand-rgb, 231, 184, 75), 0.06);
    border-radius: 18px;
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 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(38,32,57,0.2);
    border-radius: 12px;
    border: 1px solid rgba(238,223,227,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.2s;
}
.stats-cell:hover {
    border-color: rgba(var(--brand-rgb, 231, 184, 75), 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(238,223,227,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, 231, 184, 75), 0.4);
}
/* ===== Variants (v1..v4) ===== */
.bonus-calculator-widget.variant-v2 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 231, 184, 75), 0.12) 0%, rgba(38,32,57,0.55) 100%);
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 0.22);
    box-shadow: 0 18px 55px rgba(38,32,57,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(38,32,57,0.35);
    border: 1px solid rgba(238,223,227,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(38,32,57,0.55) 0%, rgba(var(--brand-rgb, 231, 184, 75), 0.08) 100%);
    border: 1px dashed rgba(var(--brand-rgb, 231, 184, 75), 0.28);
}
.bonus-calculator-widget.variant-v4 .calculator-result { background: rgba(238,223,227,0.06); }
.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}
.calculator-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f6d8dd;
    margin-bottom: 0.5rem;
}
.calculator-subtitle {
    font-size: 1rem;
    color: rgba(238,223,227,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: #f6d8dd;
    font-size: 0.95rem;
}
.calculator-input {
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(238,223,227,0.95);
    color: #363b63;
    transition: all 0.3s ease;
}
.calculator-input:focus {
    outline: none;
    background: #f6d8dd;
    box-shadow: 0 0 0 3px rgba(238,223,227,0.3);
}
.calculator-result {
    background: rgba(238,223,227,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(238,223,227,0.2);
}
.result-label {
    font-weight: 600;
    color: #f6d8dd;
    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: #5e4f2d;
    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, 231, 184, 75), 0.3);
}
.calculator-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--brand-rgb, 231, 184, 75), 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, 231, 184, 75), 0.4);
    text-align: center;
}
/* ===== Variants (v1..v4) ===== */
.promo-timer-widget.variant-v2 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 231, 184, 75), 0.12) 0%, rgba(38,32,57,0.55) 100%);
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 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(38,32,57,0.35);
    border: 1px solid rgba(238,223,227,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(38,32,57,0.55) 0%, rgba(var(--brand-rgb, 231, 184, 75), 0.08) 100%);
    border: 1px dashed rgba(var(--brand-rgb, 231, 184, 75), 0.28);
}
.promo-timer-widget.variant-v4 .timer-item {
    background: rgba(238,223,227,0.08);
    border-color: rgba(238,223,227,0.18);
}
.timer-header {
    margin-bottom: 2rem;
}
.timer-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f6d8dd;
}
.timer-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.timer-item {
    background: rgba(238,223,227,0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(238,223,227,0.3);
}
.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: #f6d8dd;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.timer-label {
    font-size: 0.9rem;
    color: rgba(238,223,227,0.9);
    font-weight: 600;
}
.timer-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #f6d8dd;
    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(238,223,227,0.3);
}
.timer-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(238,223,227,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, 231, 184, 75), 0.4);
}

/* ===== Variants (v1..v4) ===== */
.bonus-programs-section.variant-v2 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb, 231, 184, 75), 0.12) 0%, rgba(38,32,57,0.55) 100%);
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 0.22);
    box-shadow: 0 18px 55px rgba(38,32,57,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(38,32,57,0.35);
    border: 1px solid rgba(238,223,227,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(38,32,57,0.55) 0%, rgba(var(--brand-rgb, 231, 184, 75), 0.08) 100%);
    border: 1px dashed rgba(var(--brand-rgb, 231, 184, 75), 0.28);
}
.bonus-programs-section.variant-v4 .bonus-card { background: rgba(238,223,227,0.10); border-color: rgba(238,223,227,0.20); }

.bonus-programs-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #f6d8dd;
    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(238,223,227,0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(238,223,227,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(238,223,227,0.4);
    box-shadow: 0 12px 35px rgba(38,32,57,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: #f6d8dd;
    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(238,223,227,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(238,223,227,0.9);
    font-size: 0.95rem;
}

.bonus-card-button {
    display: block;
    padding: 1rem 2rem;
    background: #f6d8dd;
    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(238,223,227,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(91,34,48,0.85);
    border-radius: 14px;
    border: 1px solid rgba(238,223,227,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(238,223,227,0.04);
    border-radius: 10px;
    border: 1px solid rgba(238,223,227,0.06);
    transition: border-color 0.2s, background 0.2s;
}
.jackpot-cell:hover {
    background: rgba(var(--brand-rgb, 231, 184, 75), 0.06);
    border-color: rgba(var(--brand-rgb, 231, 184, 75), 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, 231, 184, 75), 0.08); }
    50% { box-shadow: 0 0 12px rgba(var(--brand-rgb, 231, 184, 75), 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(238,223,227,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(38,32,57,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, 231, 184, 75), 0.06);
    border-bottom: 1px solid rgba(238,223,227,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(238,223,227,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(238,223,227,0.03);
    border-radius: 6px;
    #f3e9d5-space: nowrap;
    font-size: 0.82rem;
}
.payout-row-jackpot {
    background: rgba(var(--brand-rgb, 231, 184, 75), 0.07);
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 0.18);
}
.payout-row-mega { background: rgba(var(--brand-rgb, 231, 184, 75), 0.05); }
.payout-row-big { background: rgba(var(--brand-rgb, 231, 184, 75), 0.03); }
.payout-row-icon { font-size: 0.95rem; }
.payout-row-name { font-weight: 600; color: #eedfe3; }
.payout-row-sep { color: rgba(238,223,227,0.25); }
.payout-row-amount { font-weight: 700; color: #bbc67c; }
.payout-row-slot { color: var(--brand-primary); font-weight: 500; }
.payout-row-time { color: rgba(238,223,227,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: #252747;
    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, #b8c375); }
@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(38,32,57,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, 231, 184, 75), 0.2) 0%, rgba(38,32,57,0.9) 100%);
    color: #eedfe3;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(var(--brand-rgb, 231, 184, 75), 0.25);
    box-shadow: 0 10px 40px rgba(38,32,57,0.5), 0 0 20px rgba(var(--brand-rgb, 231, 184, 75), 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(38,32,57,0.55), 0 0 25px rgba(var(--brand-rgb, 231, 184, 75), 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(238,223,227,0.98); }
.win-toast-amount { font-size: 19px; font-weight: 900; color: var(--brand-primary); text-shadow: 0 0 15px rgba(var(--brand-rgb, 231, 184, 75), 0.6); margin-bottom: 3px; letter-spacing: 0.5px; }
.win-toast-game { font-size: 12px; opacity: 0.9; color: rgba(238,223,227,0.75); }
.win-toast-close {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: none;
    background: rgba(238,223,227,0.15);
    color: #eedfe3;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s;
}
.win-toast-close:hover {
    background: rgba(238,223,227,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: #5e4f2d;
            --surface-raised: #564829;
            --brand-primary: #b7943d;
            --brand-primary-dark: #c09d45;
            --brand-primary-light: #ced59e;
            --brand-rgb: 221,128,231;
            --content-main: #eedfe3;
            --grad-surface: linear-gradient(180deg, #5e4f2d 0%, #564829 100%);
            --grad-brand: linear-gradient(135deg, #b7943d 0%, #c09d45 100%);
            --glow-brand: 0 0 20px rgba(222,202,137,0.4);
            --glass-bg: rgba(238,223,227,0.03);
            --glass-edge: rgba(238,223,227,0.06);
            --gold: #b7943d;
            --gold-dark: #c09d45;
            --gold-light: #ced59e;
        }
        
        .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;
            #f3e9d5-space: nowrap !important;
            border: 0 !important;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, Tektur, "Segoe UI", Roboto, sans-serif;
            background: #5e4f2d;
            color: #f0eedd;
            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(38,32,57,0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(238,223,227,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(38,32,57,0.45);
            border-bottom-color: rgba(238,223,227,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: #f0eedd;
            font-size: 11px;
            font-weight: 400;
            text-decoration: none;
            #f3e9d5-space: nowrap;
            transition: color 0.2s ease, opacity 0.2s ease;
            opacity: 0.8;
            border-radius: 6px;
        }
        
        .nav-link:hover {
            opacity: 1;
            color: #b4be6a;
            background: rgba(222,202,137,0.08);
        }
        
        .nav-link.active {
            opacity: 1;
            color: #b4be6a;
        }
        
        .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(222,202,137,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(238,223,227,0.3);
            color: #f0eedd;
        }
        
        .header-actions .btn-cta {
            background: #b4be6a;
            color: #4f4426;
            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(238,223,227,0.025);
            border-radius: 12px;
            border: 1px solid rgba(238,223,227,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(38,32,57,0.18);
            border: 1px solid rgba(238,223,227,0.06);
            border-radius: 12px;
            padding: 0.9rem;
        }
        .site-structure-block.variant-v3 .site-structure-priority {
            background: transparent;
            border: 1px dashed rgba(238,223,227,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(38,32,57,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(238,223,227,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(38,32,57,0.2);
            border-radius: 8px;
        }
        .site-structure-priority-label { font-size: 0.85rem; color: rgba(238,223,227,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(238,223,227,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(238,223,227,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(238,223,227,0.8); margin-bottom: 0.25rem; font-weight: 600; }
        .site-structure-group-desc { font-size: 0.8rem; color: rgba(238,223,227,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(238,223,227,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(238,223,227,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(238,223,227,0.04);
            border-radius: 8px; font-size: 0.9rem;
        }
        .on-this-page-label { color: rgba(238,223,227,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(38,32,57,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(238,223,227,0.95); }
        .review-quotes-desc { font-size: 0.9rem; color: rgba(238,223,227,0.6); margin-bottom: 1rem; }
        .review-quote-item .review-quote-summary { font-weight: 600; }
        .review-quote-text { margin: 0; font-style: italic; color: rgba(238,223,227,0.85); }
        .related-sections, .topic-nav {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(238,223,227,0.025);
            border: 1px solid rgba(238,223,227,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(238,223,227,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(38,32,57,0.2);
            border-radius: 10px;
            border: 1px solid rgba(238,223,227,0.06);
            transition: border-color 0.2s, background 0.2s;
        }
        
        .related-card:hover {
            background: rgba(222,202,137,0.06);
            border-color: rgba(222,202,137,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: #eedfe3;
        }
        
        .related-card-desc {
            font-size: 0.85rem;
            color: rgba(238,223,227,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(238,223,227,0.04);
            border-radius: 8px;
            border: 1px solid rgba(238,223,227,0.08);
            text-decoration: none;
            color: #ecd9dd;
            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(222,202,137,0.1);
            border-color: rgba(222,202,137,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;
            }
        }

/* 7K_HERO_RECOMPOSE */
.hero-value-grid{grid-template-columns:1fr;gap:28px}
.hero-info{display:grid;grid-template-columns:1fr;grid-template-areas:"badge" "title" "tagline" "stats" "actions";row-gap:10px;align-items:start;text-align:center}
.hero-badge{grid-area:badge;justify-self:center}
.hero-headline{grid-area:title;justify-self:center}
.hero-tagline{grid-area:tagline;max-width:850px;justify-self:center}
.hero-features{grid-area:stats;grid-template-columns:repeat(4,minmax(0,1fr));width:min(900px,100%);margin:12px auto 0;justify-self:center;align-self:stretch;text-align:left}
.hero-actions{grid-area:actions;justify-content:center}
.hero-quicklinks{padding-top:26px;border-top:1px solid var(--content-subtle)}
.quicklinks-title{text-align:center;margin:0 0 16px}
.quicklinks-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.quicklink-item{min-height:118px;align-content:start;cursor:default}
.action-block.variant-v3 .hero-cta .btn-cta{background:linear-gradient(135deg,#f0eedd 0%,#efebdd 100%);color:#8f7530;border:2px solid #eedfe3;box-shadow:0 12px 30px rgba(238,223,227,.2),0 0 0 4px rgba(238,223,227,.08);animation:none}
.action-block.variant-v3 .hero-cta .btn-cta:hover{background:#eedfe3;color:#735f27;transform:translateY(-3px);box-shadow:0 16px 34px rgba(238,223,227,.28),0 0 0 4px rgba(245,211,222,.18)}
.action-block.variant-v3 .hero-cta .btn-cta:focus-visible{outline:3px solid #eedfe3;outline-offset:4px}
.mirror-route.variant-v1{width:min(1120px,calc(100% - 24px));margin:30px auto;padding:32px 36px;background:linear-gradient(145deg,rgba(138,34,63,.78),rgba(84,29,42,.94));border:1px solid rgba(228,144,164,.32);border-radius:18px;box-shadow:0 12px 30px rgba(91,21,41,.22)}
.mirror-route.variant-v1 h2{margin:0 0 14px;font-size:clamp(25px,3vw,35px);line-height:1.16}
.mirror-route.variant-v1 p{max-width:none;margin:8px 0;font-size:17px;line-height:1.52}
.mirror-route.variant-v1 nav{margin-top:18px}
.mirror-route.variant-v1 ul{display:flex;flex-wrap:wrap;gap:9px;list-style:none;margin:0;padding:0}
.mirror-route.variant-v1 li{margin:0;padding:0}
.mirror-route.variant-v1 a{display:block;padding:7px 11px;border:1px solid rgba(245,211,222,.22);border-radius:999px;background:rgba(238,223,227,.07);font-size:14px;line-height:1.2;text-decoration:none}
@media(max-width:900px){.hero-features{grid-template-columns:repeat(2,minmax(0,1fr));margin-top:10px}.quicklinks-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.hero-features,.quicklinks-grid{grid-template-columns:1fr}.quicklink-item{min-height:0}.mirror-route.variant-v1{width:100%;padding:21px 19px;margin:21px auto}.mirror-route.variant-v1 p{font-size:15px}.mirror-route.variant-v1 a{font-size:12px;padding:6px 9px}}
/* END_7K_HERO_RECOMPOSE */







/* 7K783_PORCELAIN_BERRY_THEME */
:root{--k8699-bg:#3a1b2b;--k8699-panel:#3e1f30;--k8699-ink:#dcf0e6;--k8699-muted:#dabdcd;--k8699-line:#794462;--k8699-berry:#9be859;--k8699-cobalt:#ec779a;--k8699-apricot:#5de99d;--surface-void:#3a1b2b;--surface-deep:#472135;--surface-raised:#3e1f30;--surface-elevated:rgba(62,31,48,.96);--surface-overlay:rgba(71,33,53,.94);--brand-primary:#9be859;--brand-primary-dark:#80c83a;--brand-primary-light:#c9f3a4;--brand-muted:#98c36e;--brand-vivid:#ec779a;--brand-glow:#b3ed7e;--brand-secondary:#5de99d;--content-main:#dcf0e6;--content-high:rgba(220,240,230,.94);--content-dim:rgba(220,240,230,.78);--content-muted:rgba(218,189,205,.82);--content-subtle:rgba(218,189,205,.42);--brand-rgb:255,66,127;--surface-rgb:32,44,61;--glass-bg:rgba(62,31,48,.84);--glass-bg-hover:rgba(77,40,61,.96);--glass-bg-active:rgba(71,33,53,.96);--glass-edge:rgba(236,119,154,.34);--glass-edge-active:rgba(155,232,89,.7);--grad-surface:linear-gradient(155deg,#3a1b2b 0%,#472135 48%,#3e1f30 100%);--grad-brand:linear-gradient(135deg,#9be859,#ec779a);--grad-cta:linear-gradient(120deg,#9be859,#ec779a);--grad-gold:linear-gradient(135deg,#5de99d,#9be859);--font-display:'Tektur',sans-serif;--font-body:'Spectral',sans-serif;--font-mono:'Lunasima',monospace}
body{font-family:var(--font-body)!important;background:radial-gradient(circle at 10% 8%,rgba(93,233,157,.13),transparent 28%),radial-gradient(circle at 88% 14%,rgba(236,119,154,.18),transparent 30%),linear-gradient(150deg,#3a1b2b,#442033 55%,#351928)!important;color:#dcf0e6!important}
h1,h2,h3,h4,.main-title,.hero-headline,.gradient-text{font-family:var(--font-display)!important;letter-spacing:.006em}.metric-value,.timer-value,.slot-rtp,.slot-maxwin,.jackpot-cell-amount{font-family:var(--font-mono)!important}
.background-effects{opacity:.3!important}.header{background:rgba(58,27,43,.96)!important;border-bottom:1px solid rgba(236,119,154,.34)!important;box-shadow:0 8px 28px rgba(37,10,24,.34)!important}.header a,.header button{color:#dcf0e6!important}.mobile-menu-btn{background:#3e1f30!important;border-color:#794462!important}.mobile-menu-btn .hamburger,.mobile-menu-btn .hamburger::before,.mobile-menu-btn .hamburger::after{background:#5de99d!important}.mobile-menu-btn.active .hamburger{background:transparent!important}
.main,.content-wrapper{background:transparent!important}.content-header{background:rgba(62,31,48,.42)!important;border-color:rgba(236,119,154,.24)!important}.glass-card,.value-pillar,.slot-card-inner,.page-thematic-block,.action-block,.related-sections,.mirror-route,.faq-section{background:rgba(62,31,48,.94)!important;border-color:rgba(236,119,154,.34)!important;box-shadow:0 16px 38px rgba(37,10,24,.3)!important}
.hero-value{background:linear-gradient(135deg,#3e1f30 0%,#4d283d 52%,#3e3825 100%)!important;border:1px solid #794462!important;box-shadow:0 24px 55px rgba(37,10,24,.38)!important}.hero-headline{color:#dcf0e6!important;text-shadow:none!important}.hero-tagline{color:#dabdcd!important}
.hero-quicklinks{background:rgba(58,27,43,.78)!important;border:1px solid rgba(155,232,89,.42)!important}.quicklinks-title,.ql-text{color:#dcf0e6!important}.ql-meta{color:#c9f3a4!important}.quicklink-item{border-left:4px solid #9be859!important;background:linear-gradient(130deg,rgba(155,232,89,.13),rgba(236,119,154,.1))!important}.quicklink-item:nth-child(even){border-left-color:#ec779a!important}.hero-badge,.hero-features li{color:#dcf0e6!important}
.btn-cta,.btn-primary,.slot-play-btn,.timer-button,.btn-apple-primary{background:linear-gradient(120deg,#9be859,#ec779a)!important;color:#361928!important;border-color:transparent!important;box-shadow:0 10px 24px rgba(37,10,24,.32)!important}.btn-outline,.btn-apple-secondary{background:#472135!important;border:1px solid #ec779a!important;color:#dcf0e6!important}.gradient-text{background:linear-gradient(100deg,#dcf0e6 8%,#c9f3a4 50%,#f19cb5 92%);-webkit-background-clip:text;background-clip:text;color:transparent}.slot-poster img{filter:hue-rotate(245deg) saturate(.88) brightness(.82) contrast(1.08)}
.value-pillars.variant-v4 .value-pillars-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:1.1rem}.value-pillars.variant-v4 .value-pillar{grid-column:auto!important;min-height:190px;background:linear-gradient(145deg,#3e1f30,#4a2639)!important;border:1px solid #794462!important}.value-pillars.variant-v4 .value-pillar:nth-child(2),.value-pillars.variant-v4 .value-pillar:nth-child(3){transform:translateY(16px)}
.related-sections.variant-v4{padding:clamp(1.35rem,2.5vw,2.1rem);background:linear-gradient(145deg,#482337,#472336)!important}.related-sections.variant-v4 .related-cards{display:flex!important;flex-wrap:wrap;gap:1rem}.related-sections.variant-v4 .related-card{flex:1 1 calc(50% - .5rem);min-width:250px;min-height:128px;padding:1.35rem;border:1px solid rgba(236,119,154,.38)!important;background:#3e1f30!important;display:flex;align-items:center}.related-sections.variant-v4 .related-card:nth-child(2),.related-sections.variant-v4 .related-card:nth-child(3){background:linear-gradient(135deg,#3e1f30,#3b3123)!important}.related-sections.variant-v4 .related-card-link{width:100%}
.mirror-route.variant-v1{width:100%;max-width:none;box-sizing:border-box;margin-bottom:12px;background:linear-gradient(140deg,#462336,#4c273c)!important;border-color:#794462!important}.mirror-route.variant-v1 a,.mirror-route.variant-v1 a:visited{color:#f3a8be!important}.content-wrapper{padding-bottom:0}.main{padding-bottom:0}.faq-section.variant-v2{margin-top:14px}
.recent-payouts-block{background:linear-gradient(135deg,#3e1f30,#3b3023)!important;border-color:rgba(155,232,89,.44)!important}.page-thematic-block,.action-block{border-color:rgba(236,119,154,.42)!important}.faq-section.variant-v2{border-color:rgba(155,232,89,.38)!important}.hero-tagline,.value-pillar-desc,.slots-dashboard-subtitle,.review-quotes-desc,.review-quote-text,.related-card-desc,.mirror-route.variant-v1 p,.faq-answer p{color:#dabdcd!important}.value-pillar-title,.related-card-title,.review-quotes-heading,.action-title,.faq-section h2,.slot-name{color:#dcf0e6!important}
.site-footer{background:#2e1421!important;color:#dcf0e6!important}.site-footer .footer-blocks{grid-template-columns:minmax(0,1fr);width:100%}.site-footer .footer-block{width:100%;box-sizing:border-box}.site-footer .footer-block,.site-footer .footer-menu{background:rgba(62,31,48,.7)!important;border-color:rgba(121,68,98,.7)!important}.site-footer p,.site-footer h3,.site-footer h4,.site-footer a{color:#dcf0e6!important}
.floating-offer,.bonus-popup{width:min(540px,calc(100vw - 32px))!important;max-width:540px!important;box-sizing:border-box;background:#3e1f30!important;border-color:#794462!important;color:#dcf0e6!important}.floating-offer .offer-body,.bonus-popup .popup-content{display:grid!important;grid-template-columns:34px minmax(0,1fr) max-content;align-items:center;column-gap:12px!important}.floating-offer .offer-text,.bonus-popup .popup-text{min-width:0;overflow-wrap:anywhere}.floating-offer .offer-heading,.floating-offer .offer-desc{color:#dcf0e6!important}.floating-offer .popup-cta,.bonus-popup .popup-cta{position:static!important;flex:none!important;#f3e9d5-space:nowrap!important;margin:0!important;box-sizing:border-box}
.k8699-auth-lane{display:grid!important;grid-template-columns:minmax(250px,.8fr) minmax(420px,1.35fr);grid-template-areas:"title steps" "lead steps" "actions steps";gap:18px clamp(24px,4vw,58px);align-items:start;margin:clamp(28px,5vw,64px) 0!important;padding:clamp(24px,4vw,52px)!important;background:linear-gradient(135deg,#472135 0%,#3e1f30 54%,#473428 100%)!important;border:1px solid rgba(155,232,89,.48)!important;border-radius:30px!important;box-shadow:0 28px 66px rgba(37,10,24,.42)!important;overflow:hidden;position:relative}.k8699-auth-lane::after{content:"03";position:absolute;left:-18px;bottom:-64px;font-family:var(--font-display);font-size:clamp(8rem,15vw,15rem);line-height:1;color:rgba(236,119,154,.07);pointer-events:none}.k8699-auth-lane>.value-pillars-heading{grid-area:title;margin:0!important;color:#dcf0e6!important;font-size:clamp(1.65rem,2.7vw,2.75rem)!important;line-height:1.08}.k8699-auth-lane>.review-quotes-desc{grid-area:lead;margin:0!important;color:#dabdcd!important;font-size:1.05rem;line-height:1.65}.k8699-auth-lane>.value-pillars-grid{grid-area:steps;display:flex!important;flex-direction:column;gap:14px!important;position:relative;margin:0!important}.k8699-auth-lane>.value-pillars-grid::before{content:"";position:absolute;left:32px;top:34px;bottom:34px;width:2px;background:linear-gradient(#9be859,#ec779a,#5de99d);opacity:.72}.k8699-auth-lane .value-pillar{display:grid!important;grid-template-columns:66px minmax(0,1fr);gap:18px;align-items:center;min-height:0!important;padding:18px 20px 18px 0!important;background:rgba(58,27,43,.82)!important;border:1px solid #794462!important;border-radius:18px!important;transform:none!important;box-shadow:none!important;position:relative;z-index:1}.k8699-auth-lane .value-pillar:nth-child(2){margin-left:clamp(12px,3vw,38px)}.k8699-auth-lane .value-pillar:nth-child(3){margin-left:clamp(24px,6vw,76px)}.k8699-auth-lane .value-pillar-icon{display:grid!important;place-items:center;width:44px!important;height:44px!important;margin:0 auto!important;border-radius:13px;background:#3e1f30!important;border:2px solid #9be859!important;color:#dcf0e6!important;font-family:var(--font-mono)!important;font-size:.9rem!important;box-shadow:0 0 0 7px #3a1b2b}.k8699-auth-lane .value-pillar:nth-child(2) .value-pillar-icon{border-color:#ec779a!important}.k8699-auth-lane .value-pillar:nth-child(3) .value-pillar-icon{border-color:#5de99d!important}.k8699-auth-lane .value-pillar-title{margin:0 0 5px!important;color:#dcf0e6!important;font-size:1.08rem!important}.k8699-auth-lane .value-pillar-desc{margin:0!important;color:#dabdcd!important;line-height:1.52}.k8699-auth-lane>.hero-actions{grid-area:actions;display:flex!important;flex-direction:column;align-items:stretch!important;gap:10px!important;margin:8px 0 0!important}.k8699-auth-lane>.hero-actions a{width:100%;justify-content:center;box-sizing:border-box}
@media(max-width:560px){.floating-offer,.bonus-popup{min-width:0!important;width:calc(100vw - 24px)!important;padding:12px 42px 12px 12px!important}.floating-offer .offer-body,.bonus-popup .popup-content{grid-template-columns:30px minmax(0,1fr);row-gap:8px!important}.floating-offer .popup-icon,.bonus-popup .popup-icon{grid-row:1 / span 2}.floating-offer .popup-cta,.bonus-popup .popup-cta{grid-column:2;width:max-content;max-width:100%;padding:8px 14px!important;#f3e9d5-space:normal!important;line-height:1.2!important}}
@media(max-width:900px){.k8699-auth-lane{grid-template-columns:1fr;grid-template-areas:"title" "lead" "steps" "actions";padding:26px 18px!important}.k8699-auth-lane .value-pillar:nth-child(2),.k8699-auth-lane .value-pillar:nth-child(3){margin-left:0}.k8699-auth-lane>.hero-actions{flex-direction:row}}
@media(max-width:700px){.value-pillars.variant-v4 .value-pillars-grid{grid-template-columns:1fr}.value-pillars.variant-v4 .value-pillar{transform:none!important}.related-sections.variant-v4 .related-card{flex-basis:100%;min-width:0}.k8699-auth-lane{border-radius:22px!important}.k8699-auth-lane>.hero-actions{flex-direction:column}.k8699-auth-lane .value-pillar{grid-template-columns:56px minmax(0,1fr);gap:12px;padding:16px 14px 16px 0!important}.k8699-auth-lane>.value-pillars-grid::before{left:27px}.k8699-auth-lane .value-pillar-icon{width:38px!important;height:38px!important;box-shadow:0 0 0 5px #3a1b2b}html,body,.main,.container,.content-wrapper,.content-header,.hero-value,.hero-value-grid,.hero-info,.hero-quicklinks{width:100%;max-width:100%;min-width:0}.container{padding-left:12px!important;padding-right:12px!important}.main-title,.hero-headline{overflow-wrap:anywhere}.hero-value-grid{padding:20px 12px!important}.quicklinks-grid,.hero-features{width:100%;min-width:0}}
@media(max-width:700px){
 html,body{width:100%!important;max-width:100%!important;overflow-x:hidden!important}
 .main,.main>.container,.content-wrapper,.content-header{width:100%!important;max-width:100%!important;min-width:0!important;margin-left:0!important;margin-right:0!important;box-sizing:border-box!important}
 .main>.container{padding-left:8px!important;padding-right:8px!important}
 .content-wrapper{padding:16px 0!important;overflow:hidden!important}
 .content-header{width:calc(100vw - 16px)!important;padding:14px 6px!important;margin-left:auto!important;margin-right:auto!important;max-width:calc(100vw - 16px)!important;overflow:hidden!important}
 .main-title{display:block!important;width:calc(100% - 24px)!important;max-width:calc(100% - 24px)!important;box-sizing:border-box!important;margin:0 auto 18px!important;padding:0 2px!important;font-size:18px!important;line-height:1.26!important;text-align:center!important;#f3e9d5-space:normal!important;word-break:break-word!important;overflow-wrap:anywhere!important}
 .hero-value,.hero-value.variant-v2{width:calc(100vw - 28px)!important;max-width:calc(100vw - 28px)!important;min-width:0!important;margin:14px auto!important;box-sizing:border-box!important;overflow:hidden!important}
 .hero-value-grid{display:grid!important;grid-template-columns:minmax(0,1fr)!important;width:100%!important;max-width:100%!important;min-width:0!important;padding:10px!important;gap:12px!important;box-sizing:border-box!important}
 .hero-info,.hero-quicklinks{width:100%!important;max-width:100%!important;min-width:0!important;padding:14px 8px!important;box-sizing:border-box!important;overflow:hidden!important}
 .quicklinks-grid,.hero-features{display:grid!important;grid-template-columns:minmax(0,1fr)!important;width:100%!important;max-width:100%!important;min-width:0!important}
 .quicklinks-title{width:calc(100% - 20px)!important;max-width:calc(100% - 20px)!important;margin-left:auto!important;margin-right:auto!important;font-size:16px!important;line-height:1.28!important;#f3e9d5-space:normal!important;overflow-wrap:anywhere!important}
 .quicklink-item,.hero-features li{width:100%!important;max-width:calc(100vw - 70px)!important;min-width:0!important;box-sizing:border-box!important}
 .hero-headline{font-size:clamp(28px,8vw,36px)!important;line-height:1.08!important;overflow-wrap:anywhere!important}
}
/* END_7K783_PORCELAIN_BERRY_THEME */


/* K8699_TICKET_SIGNAL_THEME */
:root{--k8699-bg:#191512;--k8699-panel:#2a211b;--k8699-ink:#f3e9d5;--k8699-muted:#c8bba5;--k8699-line:#5b493b;--k8699-lime:#8ee05a;--k8699-teal:#24c6b7;--k8699-coral:#ff6b4a;--surface-void:#191512;--surface-deep:#211b17;--surface-raised:#2a211b;--surface-elevated:rgba(42,33,27,.96);--brand-primary:#8ee05a;--brand-primary-dark:#64b23d;--brand-primary-light:#c7f0aa;--brand-vivid:#24c6b7;--brand-secondary:#ff6b4a;--content-main:#f3e9d5;--content-high:rgba(243,233,213,.95);--content-dim:rgba(243,233,213,.78);--content-muted:rgba(200,187,165,.78);--brand-rgb:142,224,90;--font-display:'Tektur',sans-serif;--font-body:'Spectral',serif;--font-mono:'Lunasima',sans-serif;--grad-brand:linear-gradient(125deg,#8ee05a,#24c6b7);--grad-cta:linear-gradient(125deg,#8ee05a,#24c6b7)}
body{font-family:var(--font-body)!important;background:radial-gradient(circle at 13% 8%,rgba(255,107,74,.14),transparent 28%),radial-gradient(circle at 86% 18%,rgba(36,198,183,.13),transparent 31%),repeating-linear-gradient(90deg,rgba(142,224,90,.025) 0 1px,transparent 1px 84px),#191512!important;color:#f3e9d5!important}
h1,h2,h3,h4,.main-title,.hero-headline,.gradient-text{font-family:var(--font-display)!important;letter-spacing:.012em}.metric-value,.timer-value,.slot-rtp,.slot-maxwin,.jackpot-cell-amount{font-family:var(--font-mono)!important}
.header{background:rgba(25,21,18,.96)!important;border-bottom:2px solid #5b493b!important;box-shadow:0 10px 30px rgba(7,5,4,.36)!important}.header a,.header button{color:#f3e9d5!important}.mobile-menu-btn{background:#2a211b!important;border-color:#5b493b!important}.mobile-menu-btn .hamburger,.mobile-menu-btn .hamburger::before,.mobile-menu-btn .hamburger::after{background:#8ee05a!important}.mobile-menu-btn.active .hamburger{background:transparent!important}
.main,.content-wrapper{background:transparent!important}.content-header{background:rgba(42,33,27,.34)!important;border:1px solid rgba(142,224,90,.2)!important;border-radius:12px!important}.glass-card,.value-pillar,.slot-card-inner,.page-thematic-block,.action-block,.related-sections,.mirror-route,.faq-section{background:rgba(42,33,27,.94)!important;border-color:#5b493b!important;box-shadow:10px 12px 0 rgba(7,5,4,.24)!important;border-radius:10px!important}
.hero-value{background:linear-gradient(118deg,#2a211b 0%,#34291f 56%,#20312c 100%)!important;border:1px solid #5b493b!important;border-left:7px solid #8ee05a!important;border-radius:14px!important;box-shadow:14px 16px 0 rgba(7,5,4,.26)!important}.hero-headline{color:#f3e9d5!important;text-shadow:none!important}.hero-tagline{color:#c8bba5!important}.hero-badge{background:#ff6b4a!important;color:#191512!important;border-radius:3px!important}.hero-features li{background:#211b17!important;border:1px solid #5b493b!important;color:#f3e9d5!important;border-radius:4px!important}
.hero-quicklinks{background:#211b17!important;border:1px solid rgba(36,198,183,.56)!important;border-radius:6px!important}.quicklinks-title,.ql-text{color:#f3e9d5!important}.ql-meta{color:#8ee05a!important}.quicklinks-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:8px!important}.quicklink-item{border:0!important;border-top:4px solid #8ee05a!important;background:#2a211b!important;border-radius:2px!important}.quicklink-item:nth-child(2n){border-top-color:#24c6b7!important}.quicklink-item:nth-child(3n){border-top-color:#ff6b4a!important}
.btn-cta,.btn-primary,.slot-play-btn,.timer-button,.btn-apple-primary{background:linear-gradient(125deg,#8ee05a,#24c6b7)!important;color:#191512!important;border:0!important;border-radius:4px!important;box-shadow:5px 6px 0 rgba(7,5,4,.42)!important}.btn-outline,.btn-apple-secondary{background:#211b17!important;border:1px solid #ff6b4a!important;color:#f3e9d5!important;border-radius:4px!important}.gradient-text{background:linear-gradient(100deg,#f3e9d5 4%,#8ee05a 48%,#24c6b7 82%,#ff6b4a);-webkit-background-clip:text;background-clip:text;color:transparent}.slot-poster img{filter:hue-rotate(102deg) saturate(.86) brightness(.76) contrast(1.15)}
.value-pillars.variant-v4 .value-pillars-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important}.value-pillars.variant-v4 .value-pillar{grid-column:auto!important;min-height:220px!important;padding:24px 18px!important;background:linear-gradient(165deg,#2a211b,#211b17)!important;border:1px solid #5b493b!important;border-top:5px solid #8ee05a!important;transform:none!important}.value-pillars.variant-v4 .value-pillar:nth-child(2){border-top-color:#24c6b7!important}.value-pillars.variant-v4 .value-pillar:nth-child(3){border-top-color:#ff6b4a!important}.value-pillars.variant-v4 .value-pillar:nth-child(4){border-top-color:#c7f0aa!important}
.promo-timer-widget{background:linear-gradient(105deg,#244837,#1f5751 54%,#6a3327)!important;border:1px solid #8ee05a!important;border-radius:8px!important}.timer-item{background:rgba(25,21,18,.62)!important;border-color:rgba(243,233,213,.24)!important}.timer-value,.timer-label,.timer-title{color:#f3e9d5!important}
.slots-dashboard{background:linear-gradient(145deg,#211b17,#28201a)!important;border-color:#5b493b!important;border-radius:12px!important}.slots-tab.active{background:#8ee05a!important;color:#191512!important}.slots-tab{border-color:#5b493b!important;color:#f3e9d5!important}.slot-card-inner{border-top:4px solid #24c6b7!important}.slot-card:nth-child(3n) .slot-card-inner{border-top-color:#ff6b4a!important}.slot-name,.value-pillar-title,.related-card-title,.review-quotes-heading,.action-title,.faq-section h2{color:#f3e9d5!important}.hero-tagline,.value-pillar-desc,.slots-dashboard-subtitle,.review-quotes-desc,.review-quote-text,.related-card-desc,.mirror-route p,.faq-answer p{color:#c8bba5!important}
.recent-payouts-block{background:#211b17!important;border:1px solid #ff6b4a!important;border-radius:8px!important}.page-thematic-block,.action-block{border-color:#5b493b!important}.related-sections.variant-v4{background:#211b17!important}.related-sections.variant-v4 .related-card{background:#2a211b!important;border:1px solid #5b493b!important;border-left:5px solid #24c6b7!important;border-radius:5px!important}.mirror-route.variant-v1{background:linear-gradient(105deg,#2a211b,#20312c)!important;border:1px solid #8ee05a!important}.mirror-route a{color:#8ee05a!important}
.k8699-auth-lane{background:linear-gradient(135deg,#211b17,#2a211b 56%,#20312c)!important;border-color:#8ee05a!important;border-radius:10px!important}.k8699-auth-lane .value-pillar{background:#191512!important;border-color:#5b493b!important}.k8699-auth-lane .value-pillar-icon{background:#2a211b!important;box-shadow:0 0 0 7px #191512!important}.k8699-auth-lane>.value-pillars-grid::before{background:linear-gradient(#8ee05a,#24c6b7,#ff6b4a)!important}.k8699-auth-lane::after{color:rgba(142,224,90,.08)!important}
.faq-item{border-bottom:1px solid rgba(91,73,59,.72)!important}.site-footer{background:#100d0b!important;color:#f3e9d5!important}.site-footer .footer-block,.site-footer .footer-menu{background:#211b17!important;border-color:#5b493b!important}.site-footer p,.site-footer h3,.site-footer h4,.site-footer a{color:#f3e9d5!important}.floating-offer,.bonus-popup{background:#2a211b!important;border:1px solid #8ee05a!important;color:#f3e9d5!important}.floating-offer .offer-heading,.floating-offer .offer-desc{color:#f3e9d5!important}
@keyframes k8699-soft-pulse{0%,100%{filter:brightness(1);transform:translateY(0)}50%{filter:brightness(1.08);transform:translateY(-2px)}}
.quicklinks-grid .quicklink-item:nth-child(2),.quicklinks-grid .quicklink-item:nth-child(5){border-color:#24c6b7!important;box-shadow:0 0 0 1px rgba(36,198,183,.5),0 0 24px rgba(36,198,183,.2)!important;animation:k8699-soft-pulse 5.8s ease-in-out infinite}
.value-pillars.variant-v4 .value-pillar:nth-child(1){box-shadow:0 0 0 1px rgba(142,224,90,.42),0 0 28px rgba(142,224,90,.18)!important}.value-pillars.variant-v4 .value-pillar:nth-child(3){box-shadow:0 0 0 1px rgba(255,107,74,.48),0 0 28px rgba(255,107,74,.18)!important;animation:k8699-soft-pulse 6.7s ease-in-out 1.1s infinite}
.slots-grid .slot-card:nth-child(2) .slot-card-inner,.slots-grid .slot-card:nth-child(4) .slot-card-inner{border-color:#24c6b7!important;box-shadow:0 0 0 1px rgba(36,198,183,.42),0 0 30px rgba(36,198,183,.2)!important;animation:k8699-soft-pulse 6.4s ease-in-out .7s infinite}.slots-tab-content:nth-of-type(3) .slot-card:nth-child(1) .slot-card-inner{border-color:#ff6b4a!important;box-shadow:0 0 0 1px rgba(255,107,74,.42),0 0 30px rgba(255,107,74,.18)!important;animation:k8699-soft-pulse 7.1s ease-in-out 1.6s infinite}
.related-cards .related-card:nth-child(2),.related-cards .related-card:nth-child(5){border-color:#8ee05a!important;box-shadow:0 0 0 1px rgba(142,224,90,.4),0 0 26px rgba(142,224,90,.17)!important}.related-cards .related-card:nth-child(5){animation:k8699-soft-pulse 7.2s ease-in-out 2s infinite}
.faq-section .faq-item:nth-child(2),.faq-section .faq-item:nth-child(5),.faq-section .faq-item:nth-child(8){margin:8px 0;padding:4px 12px;background:linear-gradient(90deg,rgba(36,198,183,.1),transparent 68%)!important;border-left:3px solid #24c6b7!important;border-radius:4px;animation:k8699-soft-pulse 7.5s ease-in-out infinite}.faq-section .faq-item:nth-child(5){background:linear-gradient(90deg,rgba(255,107,74,.11),transparent 68%)!important;border-left-color:#ff6b4a!important;animation-delay:1.4s}.faq-section .faq-item:nth-child(8){background:linear-gradient(90deg,rgba(142,224,90,.1),transparent 68%)!important;border-left-color:#8ee05a!important;animation-delay:2.8s}
@media(prefers-reduced-motion:reduce){.quicklinks-grid .quicklink-item,.value-pillars.variant-v4 .value-pillar,.slots-grid .slot-card-inner,.related-cards .related-card,.faq-section .faq-item{animation:none!important;transform:none!important}}
@media(max-width:1024px){.value-pillars.variant-v4 .value-pillars-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.quicklinks-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:700px){.value-pillars.variant-v4 .value-pillars-grid,.quicklinks-grid{grid-template-columns:1fr!important}.value-pillars.variant-v4 .value-pillar{min-height:0!important}.hero-value{border-left-width:4px!important;box-shadow:7px 8px 0 rgba(7,5,4,.26)!important}}
/* END_K8699_TICKET_SIGNAL_THEME */
