@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

:root {
    --nav-bg: #3a3e51;
    --nav-bg2: #31354a;
    --btn-gold: #af8c2f;
    --btn-gold-h: #c9a23a;
    --btn-green: #3d8f58;
    --btn-green-h: #46a666;
    --site-bg: #3e4464;
    --site-bg2: #363b5e;
    --card-bg: #2e3252;
    --card-bg2: #262a47;
    --text-light: #f0f0f5;
    --text-dim: #b8bcd4;
    --text-muted: #8890b0;
    --accent: #af8c2f;
    --green: #3d8f58;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
    --transition: 0.22s ease;
}

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

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

body {
    font-family: 'Rubik', sans-serif;
    background: var(--site-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.box {
    border-radius: var(--radius);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Rubik', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn--green {
    background: var(--btn-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(61, 143, 88, 0.4);
}

.btn--green:hover {
    background: var(--btn-green-h);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61, 143, 88, 0.5);
}

.btn--gold {
    background: var(--btn-gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(175, 140, 47, 0.4);
}

.btn--gold:hover {
    background: var(--btn-gold-h);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(175, 140, 47, 0.5);
}

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

.btn--outline:hover {
    background: var(--btn-gold);
    color: #fff;
    transform: translateY(-1px);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

.logo-text span {
    color: var(--btn-gold);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex-wrap: wrap;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

.header-winner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(175, 140, 47, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-winner-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.header-winner-text {
    color: var(--text-dim);
}

.header-winner-text strong {
    color: var(--btn-gold);
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 9px;
}

.burger-btn span {
    display: block;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--nav-bg2);
    border-top: 1px solid var(--border);
    padding: 12px 0;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dim);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all var(--transition);
}

.mobile-menu ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu ul li a svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-ctas {
    display: flex;
    gap: 10px;
    padding: 12px 20px;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1c2e;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/chicken-hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(62, 68, 100, 0.92) 0%, rgba(62, 68, 100, 0.7) 50%, rgba(62, 68, 100, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(175, 140, 47, 0.2);
    border: 1px solid rgba(175, 140, 47, 0.5);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--btn-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
}

.hero-title em {
    font-style: normal;
    color: var(--btn-gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star-icon {
    color: var(--btn-gold);
    font-size: 1.2rem;
}

.star-icon.half {
    position: relative;
    color: var(--text-muted);
}

.star-icon.half::before {
    content: '★';
    position: absolute;
    color: var(--btn-gold);
    overflow: hidden;
    width: 50%;
}

.rating-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrap {
    background: var(--card-bg2);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.breadcrumbs-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumbs span {
    color: var(--text-dim);
}

/* ===== SECTIONS ===== */
.section-wrap {
    padding: 52px 0;
}

.section-wrap--alt {
    background: var(--site-bg2);
}

.section-wrap--dark {
    background: var(--card-bg2);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-title em {
    font-style: normal;
    color: var(--btn-gold);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 36px;
}

/* ===== DEMO + DETAILS ===== */
.game-overview-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    align-items: start;
}

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

.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #111320;
}

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

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

.demo-footer-info {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.demo-footer-info strong {
    color: #fff;
}

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

.details-block-title {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--card-bg2);
    border-bottom: 1px solid var(--border);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table tr {
    border-bottom: 1px solid var(--border);
}

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

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

.details-table td {
    padding: 10px 16px;
    font-size: 0.87rem;
    line-height: 1.4;
    vertical-align: middle;
}

.details-table td:first-child {
    color: var(--text-muted);
    width: 46%;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.details-table td:first-child svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.details-table td:last-child {
    color: var(--text-light);
    font-weight: 500;
}

.badge-rtp {
    display: inline-block;
    background: rgba(61, 143, 88, 0.2);
    color: #4ade80;
    border: 1px solid rgba(61, 143, 88, 0.4);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.82rem;
    font-weight: 700;
}

.badge-vol {
    display: inline-block;
    background: rgba(175, 140, 47, 0.2);
    color: var(--btn-gold);
    border: 1px solid rgba(175, 140, 47, 0.4);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--btn-gold), var(--btn-green));
    opacity: 0;
    transition: opacity var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(175, 140, 47, 0.3);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 52px;
    height: 52px;
    background: rgba(175, 140, 47, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all var(--transition);
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
    color: var(--btn-gold);
}

.advantage-card:hover .advantage-icon {
    background: rgba(175, 140, 47, 0.25);
}

.advantage-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.advantage-text {
    font-size: 0.87rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== MOBILE BLOCK ===== */
.mobile-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 220px;
    margin: 0 auto;
    flex-shrink: 0;
}

.phone-frame-outer {
    background: linear-gradient(135deg, #2a2e42, #3a3e57);
    border-radius: 36px;
    padding: 14px 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.phone-frame-screen {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

.phone-frame-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-frame-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    z-index: 2;
}

.phone-info .section-title {
    font-size: 1.4rem;
}

.phone-info .section-subtitle {
    margin-bottom: 20px;
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.mobile-table th {
    background: var(--card-bg2);
    padding: 10px 16px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mobile-table td {
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.mobile-table td:first-child {
    font-weight: 600;
    color: var(--text-light);
}

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

.mobile-table {
    border: 1px solid var(--border);
}

.store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
}

.store-btn:hover {
    border-color: rgba(175, 140, 47, 0.5);
    background: var(--card-bg2);
    color: var(--text-light);
    transform: translateY(-1px);
}

.store-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.store-btn-texts {
    line-height: 1.2;
}

.store-btn-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: block;
}

.store-btn-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    display: block;
}

/* ===== WINNERS ===== */
.winners-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.winners-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--card-bg2);
    border-bottom: 1px solid var(--border);
}

.winners-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #4ade80;
    text-transform: uppercase;
}

.live-badge span {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
}

.winners-table thead tr {
    background: rgba(255, 255, 255, 0.03);
}

.winners-table th {
    padding: 9px 16px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--border);
}

.winners-table td {
    padding: 10px 16px;
    font-size: 0.87rem;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

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

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

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

.rank-1 {
    color: #ffd700;
}

.rank-2 {
    color: #c0c0c0;
}

.rank-3 {
    color: #cd7f32;
}

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

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

.winner-amount {
    color: #4ade80;
    font-weight: 700;
}

/* ===== BONUSES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(175, 140, 47, 0.3);
}

.bonus-card-top {
    background: linear-gradient(135deg, var(--nav-bg2), var(--card-bg2));
    padding: 24px 22px 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.bonus-card-top::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(175, 140, 47, 0.1);
    border-radius: 50%;
}

.casino-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--btn-gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.bonus-desc {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.bonus-card-body {
    padding: 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bonus-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.bonus-features li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: rgba(61, 143, 88, 0.2);
    border: 1px solid rgba(61, 143, 88, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%233d8f58'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

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

.bonus-terms {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.4;
}

/* Bonuses slider mobile */
.bonuses-slider-wrap {
    overflow: hidden;
}

.bonuses-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.bonuses-slider .bonus-card {
    min-width: calc(100% - 0px);
    flex-shrink: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--btn-gold);
    width: 22px;
    border-radius: 4px;
}

/* ===== STRATEGIES ===== */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(61, 143, 88, 0.35);
}

.strategy-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card-bg2), var(--nav-bg2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.strategy-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.strategy-num {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(175, 140, 47, 0.9);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 3px 9px;
    border-radius: 10px;
}

.strategy-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.strategy-level {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 9px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(61, 143, 88, 0.15);
    color: #4ade80;
    border: 1px solid rgba(61, 143, 88, 0.3);
}

.strategy-level--med {
    background: rgba(175, 140, 47, 0.15);
    color: var(--btn-gold);
    border-color: rgba(175, 140, 47, 0.3);
}

.strategy-level--adv {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.strategy-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.strategy-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

/* ===== REVIEW BLOCK ===== */
.review-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

.review-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

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

.author-info-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.author-info-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.author-info-bio {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-top: 4px;
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-content h1 {
    font-size: 1.6rem;
    margin-top: 0;
}

.review-content h2 {
    font-size: 1.35rem;
}

.review-content h3 {
    font-size: 1.15rem;
}

.review-content h4 {
    font-size: 1rem;
    color: var(--btn-gold);
}

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

.review-content ul, .review-content ol {
    color: var(--text-dim);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 16px;
    padding-left: 22px;
}

.review-content ul li, .review-content ol li {
    margin-bottom: 8px;
}

.review-content ul li::marker {
    color: var(--btn-gold);
}

.review-content ol li::marker {
    color: var(--btn-gold);
    font-weight: 700;
}

.review-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.review-content em {
    color: var(--btn-gold);
    font-style: normal;
}

.review-content a {
    color: var(--btn-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-content a:hover {
    color: var(--btn-gold-h);
}

.review-content blockquote {
    border-left: 3px solid var(--btn-gold);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(175, 140, 47, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-dim);
    font-style: italic;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-content table th {
    background: var(--card-bg2);
    padding: 10px 14px;
    text-align: left;
    color: var(--text-dim);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

.review-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
}

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

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

/* ===== WIDGET (sticky) ===== */
.sticky-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 220px;
    background: var(--nav-bg);
    border: 1px solid rgba(175, 140, 47, 0.4);
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all var(--transition);
    transform: translateY(0);
}

.sticky-widget.hidden {
    transform: translateY(calc(100% + 30px));
}

.widget-header {
    background: var(--btn-green);
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
    line-height: 1;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

.widget-body {
    padding: 14px;
    text-align: center;
}

.widget-logo {
    height: 38px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.widget-bonus {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--btn-gold);
    margin-bottom: 4px;
}

.widget-sub {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    line-height: 1.4;
}

.widget-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px;
    font-size: 0.88rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--nav-bg);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .site-logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-email {
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-email svg {
    width: 14px;
    height: 14px;
    color: var(--btn-gold);
    flex-shrink: 0;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.87rem;
    color: var(--text-muted);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--btn-gold);
}

.footer-links a svg {
    width: 13px;
    height: 13px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.04);
}

.social-link:hover {
    border-color: var(--btn-gold);
    color: var(--btn-gold);
    background: rgba(175, 140, 47, 0.1);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-mid {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    opacity: 0.6;
    transition: opacity var(--transition);
    filter: grayscale(1) brightness(1.5);
}

.footer-logo-item:hover {
    opacity: 1;
    filter: none;
}

.footer-logo-item img {
    height: 28px;
    max-width: 80px;
    object-fit: contain;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all var(--transition);
}

.trust-badge:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-dim);
}

.trust-badge--age {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
    font-size: 0.8rem;
}

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

.footer-legal {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
}

.footer-legal strong {
    color: var(--text-dim);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.payment-item {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition);
}

.payment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
}

/* ===== INFO PAGE ===== */
.info-content-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 52px 0;
}

.info-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.info-page-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.info-text {
    color: var(--text-dim);
}

.info-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.info-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 22px 0 10px;
}

.info-text p {
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.info-text ul, .info-text ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.info-text li {
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-text a {
    color: var(--btn-gold);
}

.info-text strong {
    color: var(--text-light);
}

/* ===== HIDDEN WP ELEMENTS ===== */
.wp-block-group {
    display: block;
}

.wp-block-spacer {
    display: block;
}

.elementor-hidden {
    display: none !important;
}

.wp-caption-text {
    display: none;
}

.screen-reader-text-wp {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
}

/* ===== UNUSED UNIQUE CLASSES ===== */
.xk4r7-wrap {
    display: contents;
}

.m8v2q-el {
    visibility: inherit;
}

.p3n9j-row {
    flex-direction: inherit;
}

.tz6w1-unit {
    line-height: inherit;
}

.bx5f4-mod {
    opacity: inherit;
}

.qd7e2-node {
    font-size: inherit;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .game-overview-grid {
        grid-template-columns: 1fr;
    }

    .details-block {
        max-width: 100%;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .mobile-grid {
        grid-template-columns: 180px 1fr;
        gap: 24px;
    }

    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses-grid .bonus-card:last-child {
        grid-column: 1 / -1;
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .header-nav {
        display: none;
    }

    .header-winner {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-ctas {
        gap: 6px;
    }

    .header-ctas .btn--outline {
        display: none;
    }

    .hero-content {
        padding: 40px 0;
    }

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

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        display: none;
    }

    .bonuses-slider-wrap {
        display: block;
    }

    .mobile-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-mid {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-widget {
        width: 180px;
        right: 12px;
        bottom: 12px;
    }

    .review-block {
        padding: 24px 20px;
    }

    .winners-table {
        font-size: 0.82rem;
    }

    .winners-table th, .winners-table td {
        padding: 8px 10px;
    }

    .details-table {
        overflow-x: auto;
        display: block;
    }

    .details-table tr {
        display: flex;
    }

    .details-table td:first-child {
        min-width: 46%;
    }

    .section-wrap {
        padding: 36px 0;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

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

    .mobile-menu-ctas {
        flex-direction: column;
    }

    .store-btns {
        flex-direction: column;
    }

    .header-ctas .btn--sm {
        padding: 6px 12px;
        font-size: 0.78rem;
    }
}

@media (min-width: 769px) {
    .bonuses-slider-wrap {
        display: none;
    }

    .bonuses-grid {
        display: grid;
    }
}

html,
body {
    background: #3e4464 !important;
    margin: 0;
    overflow-x: hidden;
}

.wrapper,
main,
.site-main,
.content,
.page,
.container,
.site-content {
    background: transparent !important;
}

section,
article {
    background: transparent;
}