@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
    --color-bg: #0e1230;
    --color-nav: #1a1f3c;
    --color-nav-darker: #141828;
    --color-gold: #fbc02d;
    --color-gold-hover: #f9a825;
    --color-purple: #8e24aa;
    --color-purple-hover: #7b1fa2;
    --color-text: #e8eaf6;
    --color-text-muted: #9fa8da;
    --color-text-dark: #c5cae9;
    --color-border: rgba(159,168,218,0.18);
    --color-card: rgba(26,31,60,0.85);
    --color-card-hover: rgba(30,36,72,0.95);
    --color-accent: #fbc02d;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.25s ease;
    --shadow-card: 0 4px 32px rgba(0,0,0,0.38);
    --shadow-btn: 0 2px 12px rgba(251,192,45,0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

.xq7k2-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xq7k2-flex {
    display: flex;
    align-items: center;
}

.xq7k2-gap { gap: 12px; }
.xq7k2-gap-lg { gap: 24px; }

.xq7k2-hidden { display: none; }
.xq7k2-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--color-gold);
    color: #0e1230;
    box-shadow: var(--shadow-btn);
}

.btn--gold:hover {
    background: var(--color-gold-hover);
    color: #0e1230;
}

.btn--purple {
    background: var(--color-purple);
    color: #fff;
    box-shadow: 0 2px 12px rgba(142,36,170,0.35);
}

.btn--purple:hover {
    background: var(--color-purple-hover);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn--outline:hover {
    background: var(--color-gold);
    color: #0e1230;
}

.btn--lg {
    padding: 14px 34px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 7px 14px;
    font-size: 0.82rem;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 6px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

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

.site-header {
    background: var(--color-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0,0,0,0.45);
    border-bottom: 1px solid rgba(251,192,45,0.13);
}

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

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-text-dark);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
}

.header-nav a:hover {
    color: var(--color-gold);
    background: rgba(251,192,45,0.08);
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse-green 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    cursor: pointer;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.13);
}

.lang-btn svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}

.lang-btn.open svg { transform: rotate(180deg); }

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-nav);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    min-width: 130px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 100;
}

.lang-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--color-text-dark);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background-color var(--transition);
}

.lang-menu a:hover {
    background: rgba(251,192,45,0.1);
    color: var(--color-gold);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition);
}

.burger-btn:hover { background: rgba(255,255,255,0.08); }

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;

    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}


.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-nav);
    z-index: 999;
    border-bottom: 2px solid var(--color-border);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-inner a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color var(--transition), color var(--transition);
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-inner a:last-child { border-bottom: none; }

.mobile-menu-inner a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-menu-inner a:hover {
    background: rgba(251,192,45,0.09);
    color: var(--color-gold);
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0d22 0%, #1a1040 60%, #0e1230 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/gates-of-olympus-hero-img.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.45;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14,18,48,0.92) 0%, rgba(14,18,48,0.5) 60%, rgba(14,18,48,0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251,192,45,0.15);
    border: 1px solid rgba(251,192,45,0.4);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInDown 0.6s ease both;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    animation: fadeInDown 0.7s ease 0.1s both;
    text-wrap: balance;
    max-width: 680px;
}

.hero-title span {
    color: var(--color-gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(232,234,246,0.9);
    max-width: 520px;
    line-height: 1.65;
    animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInDown 0.7s ease 0.3s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.77rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInDown 0.7s ease 0.4s both;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.breadcrumbs-section {
    background: var(--color-nav-darker);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs a {
    color: var(--color-text-muted);
    font-size: 0.83rem;
    font-weight: 500;
}

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

.breadcrumbs-sep {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumbs-current {
    color: var(--color-gold);
    font-size: 0.83rem;
    font-weight: 600;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    padding: 48px 0;
}

.toc-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    margin-bottom: 32px;
    border-left: 4px solid var(--color-gold);
    box-shadow: var(--shadow-card);
    animation: fadeInUp 0.5s ease both;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    color: var(--color-text-dark);
    font-size: 0.92rem;
    font-weight: 500;
    transition: background-color var(--transition), color var(--transition), padding-left var(--transition);
}

.toc-list li a:hover {
    background: rgba(251,192,45,0.1);
    color: var(--color-gold);
    padding-left: 16px;
}

.toc-list li a svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.advantage-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    flex: 1 1 260px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    animation: fadeInUp 0.5s ease both;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(251,192,45,0.35);
}

.adv-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(251,192,45,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}



.adv-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.adv-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.winners-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    background: var(--color-card);
}

.winners-table thead tr {
    background: var(--color-nav);
    border-bottom: 2px solid rgba(251,192,45,0.3);
}

.winners-table th {
    padding: 13px 18px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.winners-table td {
    padding: 11px 18px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border);
}

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

.winners-table tbody tr {
    transition: background-color var(--transition);
}

.winners-table tbody tr:hover {
    background: rgba(251,192,45,0.06);
}

.winner-rank {
    font-weight: 800;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.winner-rank.top1 { color: #ffd700; }
.winner-rank.top2 { color: #c0c0c0; }
.winner-rank.top3 { color: #cd7f32; }

.winner-nick {
    font-weight: 600;
    color: var(--color-text);
}

.winner-amount {
    font-weight: 800;
    color: #69f0ae;
}

.winner-mult {
    color: var(--color-gold);
    font-weight: 700;
}

.winner-time {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    animation: fadeInUp 0.5s ease both;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    border-color: rgba(142,36,170,0.45);
}

.bonus-header {
    background: linear-gradient(135deg, var(--color-purple) 0%, #5e1a7d 100%);
    padding: 20px 22px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-casino-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.bonus-casino-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.bonus-casino-tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.bonus-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.bonus-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.bonus-feature svg {
    width: 14px;
    height: 14px;
    color: #69f0ae;
    flex-shrink: 0;
}

.bonus-footer {
    padding: 0 22px 20px;
}

.bonus-footer .btn {
    width: 100%;
}

.bonus-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--color-gold);
    font-weight: 700;
}

.bonus-slider-wrap {
    position: relative;
    overflow: hidden;
}

.demo-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.demo-header {
    background: var(--color-nav);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 12px;
}

.demo-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.35);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #69f0ae;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--color-border);
    background: var(--color-nav-darker);
}

.demo-info {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.review-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 36px;
    box-shadow: var(--shadow-card);
}

.author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(251,192,45,0.06);
    border: 1px solid rgba(251,192,45,0.18);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}


.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.author-title {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-top: 2px;
}

.author-link {
    margin-top: 4px;
}

.author-link a {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
}


.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
    color: var(--color-gold);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    margin-top: 28px;
    text-wrap: balance;
}

.review-content h1 { font-size: 1.7rem; }
.review-content h2 { font-size: 1.4rem; }
.review-content h3 { font-size: 1.15rem; }
.review-content h4 { font-size: 1rem; }

.review-content p {
    color: var(--color-text-dark);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.review-content a {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: underline;
}

.review-content ul,
.review-content ol {
    margin: 12px 0 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-content ul {
    list-style: disc;
}

.review-content ol {
    list-style: decimal;
}

.review-content ul li,
.review-content ol li {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 4px;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    overflow-x: auto;
    display: block;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.review-content table th {
    background: var(--color-nav);
    color: var(--color-gold);
    padding: 11px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(251,192,45,0.25);
}

.review-content table td {
    padding: 10px 16px;
    color: var(--color-text-dark);
    font-size: 0.88rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

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

.review-content table tr:hover td {
    background: rgba(251,192,45,0.04);
}

.review-content blockquote {
    border-left: 4px solid var(--color-gold);
    margin: 18px 0;
    padding: 14px 20px;
    background: rgba(251,192,45,0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 16px auto;
}

.review-content strong, .review-content b {
    color: var(--color-text);
    font-weight: 700;
}

.review-content em, .review-content i {
    color: var(--color-text-muted);
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

.review-content pre {
    background: var(--color-nav);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    font-size: 0.88rem;
    margin: 14px 0;
}

.review-content code {
    background: rgba(255,255,255,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(251,192,45,0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: background-color var(--transition);
}

.faq-question:hover {
    background: rgba(251,192,45,0.06);
}

.faq-q-text {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.site-footer {
    background: var(--color-nav);
    border-top: 1px solid var(--color-border);
    margin-top: 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 20px 28px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-nav-list a {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-nav-list a:hover { color: var(--color-gold); }

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-logo-chip {
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logos-row svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 18px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 680px;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.footer-provider-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-provider-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 20px;
    background: linear-gradient(90deg, #1a1040 0%, #1a1f3c 100%);
    border-top: 2px solid rgba(251,192,45,0.3);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    animation: slideUpWidget 0.5s ease 1s both;
}

@keyframes slideUpWidget {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.widget-text {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.4;
}

.widget-text span {
    color: var(--color-gold);
    font-weight: 800;
}

.widget-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    margin-left: 4px;
    flex-shrink: 0;
    border-radius: 4px;
    transition: color var(--transition), background-color var(--transition);
}

.widget-close:hover {
    color: var(--color-text);
    background: rgba(255,255,255,0.08);
}

.widget-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.game-info-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-card);
}

.game-info-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.03);
}

.game-info-table td {
    padding: 11px 18px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

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

.game-info-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 600;
    width: 40%;
}

.game-info-table td:last-child {
    color: var(--color-text);
    font-weight: 700;
}

.block-gap {
    margin-bottom: 40px;
}

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

.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }

.wp-block-image, .wp-caption, .wp-block-quote { display: none; }
.elementor-invisible { visibility: hidden; position: absolute; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.entry-meta, .entry-footer, .post-navigation { display: none; }
.widget_recent_entries, .widget_categories { display: none; }
.page-template-default .site-main .post { display: none; }

@media (max-width: 1200px) {
    .online-badge {
        display: none;
    }
    }

@media (max-width: 960px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }    
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .bonuses-grid {
        flex-direction: column;
    }

    .bonus-card {
        flex: 1 1 100%;
    }

    .review-block {
        padding: 22px 18px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px;
    }

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

    .sticky-widget {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .widget-text {
        text-align: center;
        font-size: 0.82rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .toc-block {
        padding: 20px 18px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

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

    .btn--lg {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
    }

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