

:root {
    --bg: #1a100a;
    --bg-card: rgba(38,24,17,.40);
    --bg-surface: #2a1a11;
    --bg-topbar: #150c07;
    --accent: #e0a73c;
    --accent-hover: #c8902f;
    --accent-2: #f2cf6b;
    --accent-2-hover: #e0b94f;
    --green: #5e9b34;
    --green-dark: #487625;
    --red: #a8322a;
    --red-dark: #7f231c;
    --text-white: #fbf4e8;
    --text-light: #e4d4bd;
    --text-muted: #b39c7e;
    --edge: rgba(224,167,60,.26);
    --font: 'Lora', Georgia, 'Times New Roman', serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --topbar-h: 64px;
    --rds: 12px;
    --rds-s: 8px;
    --speed: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: linear-gradient(to bottom, #120a06 0, #120a06 560px, var(--bg) 920px) var(--bg);
    color: var(--text-light);
    line-height: 1.6; font-size: 15px; font-weight: 500; overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
p, li, dd, dt, span, a { font-weight: inherit; }
strong, b { font-weight: 800; }
main {
    position: relative;
}

main::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('../img/wr-body-bg.webp') center center / cover no-repeat;
    opacity: .75;
    pointer-events: none;
    z-index: -1;
}
main > * {
    position: relative;
    z-index: 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wcf-layout { display: block; }
.wcf-sidebar { display: none; }

.wcf-sidebar {
    background: var(--bg-topbar);
    border-right: 1px solid var(--edge);
    position: sticky;
    top: var(--topbar-h);
    height: calc(100vh - var(--topbar-h));
    overflow-y: auto;
    padding: 0;
    z-index: 10;
}
.wcf-sidebar::-webkit-scrollbar { width: 4px; }
.wcf-sidebar::-webkit-scrollbar-track { background: transparent; }
.wcf-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.wcf-sidebar__promo {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 12px; text-decoration: none;
    background: linear-gradient(135deg, rgba(224,167,60,.15), rgba(224,167,60,.05));
    border-bottom: 1px solid var(--edge);
    transition: background var(--speed);
}
.wcf-sidebar__promo:hover { background: linear-gradient(135deg, rgba(224,167,60,.25), rgba(224,167,60,.1)); }
.wcf-sidebar__promo-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 4px;
}
.wcf-sidebar__promo-value {
    font-size: 15px; font-weight: 700; color: var(--accent);
    text-align: center;
}
.wcf-sidebar__section {
    padding: 14px 10px;
    border-top: 1px solid var(--edge);
}
.wcf-sidebar__label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
    padding: 0 6px; margin-bottom: 10px; display: block;
}
.wcf-sidebar__game {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 6px; border-radius: var(--rds-s);
    text-decoration: none; color: var(--text-light);
    transition: background var(--speed);
}
.wcf-sidebar__game:hover { background: rgba(255,255,255,.05); }
.wcf-sidebar__game-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.wcf-sidebar__game-icon img { width: 100%; height: 100%; object-fit: cover; }
.wcf-sidebar__game-info { display: flex; flex-direction: column; min-width: 0; }
.wcf-sidebar__game-info strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wcf-sidebar__game-info small { font-size: 11px; color: var(--text-muted); }

.wcf-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font); font-weight: 700; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    border-radius: 30px; letter-spacing: .5px; transition: all var(--speed);
}
.wcf-btn--cta {
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #1a100a; padding: 14px 40px; font-size: 16px;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(255,255,255,.25);
    box-shadow: 0 4px 16px rgba(224,167,60,.4);
    animation: ctaPulse 2.4s ease-in-out infinite;
}
.wcf-btn--cta:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(224,167,60,.6); animation: none; }
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(224,167,60,.4); }
    50% { transform: scale(1.035); box-shadow: 0 6px 22px rgba(224,167,60,.6); }
}
.wcf-btn--primary { background: var(--accent); color: #1a100a; }
.wcf-btn--outline {
    background: transparent; border: 2px solid var(--accent);
    color: var(--accent); padding: 8px 20px; font-size: 12px;
}
.wcf-btn--outline:hover { background: var(--accent); color: #000; }
.wcf-btn--ghost {
    background: var(--accent-2); border: 2px solid var(--accent-2);
    color: #1a100a; font-weight: 800; padding: 8px 20px; font-size: 12px;
}
.wcf-btn--ghost:hover { background: var(--accent-2-hover); border-color: var(--accent-2-hover); color: #1a100a; }
.wcf-btn--sm { padding: 8px 18px; font-size: 11px; }
.wcf-btn--lg { padding: 16px 50px; font-size: 16px; }

.wcf-topbar {
    display: flex; align-items: center;
    height: var(--topbar-h); background: var(--bg-topbar);
    border-bottom: 1px solid var(--edge);
    position: sticky; top: 0; z-index: 100;
    padding: 0 24px; gap: 16px;
}
.wcf-topbar__logo { flex-shrink: 0; text-decoration: none; }
.wcf-topbar__logo img { height: 46px; width: auto; display: block; }
.wcf-footer__logo-img { display: block; height: 42px; width: auto; margin-bottom: 16px; }
.wcf-mobile-header__logo .wcf-mobile-logo-img { display: block; height: 30px; width: auto; }
.wcf-topbar__nav {
    display: flex; align-items: center; gap: 6px;
    flex: 1; justify-content: center;
    margin-left: 0;
}
.wcf-topbar__nav-link {
    color: var(--text-muted); text-decoration: none;
    font-size: 15px; font-weight: 600;
    padding: 8px 18px; border-radius: 8px;
    transition: color var(--speed), background var(--speed);
    white-space: nowrap;
}
.wcf-topbar__nav-link:hover { color: var(--text-white); background: rgba(255,255,255,.06); }
.wcf-topbar__nav-link--active {
    color: #fff;
    background: rgba(224,167,60,.18);
    box-shadow: inset 0 -2px 0 var(--accent-2);
}

.wcf-topbar__actions .wcf-btn--outline {
    background: var(--accent); border-color: var(--accent); color: #1a100a;
}
.wcf-topbar__actions .wcf-btn--outline:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #1a100a; }
.wcf-topbar__nav-link--bonus {
    color: #000; background: linear-gradient(135deg, var(--accent), #f2cf6b);
    font-weight: 700;
}
.wcf-topbar__nav-link--bonus:hover { background: linear-gradient(135deg, var(--accent-hover), var(--accent)); color: #000; }

.wcf-topbar__nav-link--bonus.wcf-topbar__nav-link--active {
    color: #000;
    box-shadow:
        0 0 0 2px var(--bg-topbar),
        0 0 0 4px var(--accent),
        0 6px 16px rgba(224,167,60,.45);
}
.wcf-topbar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.wcf-topbar__search {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.06); border: 1px solid var(--edge);
    border-radius: 30px; padding: 0 16px; max-width: 260px; flex-shrink: 1;
}
.wcf-topbar__search-icon { font-size: 14px; opacity: .5; }
.wcf-topbar__input {
    background: none; border: none; outline: none;
    color: var(--text-light); font-family: var(--font);
    font-size: 13px; width: 100%; padding: 8px 0;
}
.wcf-topbar__input::placeholder { color: var(--text-muted); }

.wcf-mobile-header {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 56px; background: var(--bg-topbar); z-index: 101;
    align-items: center; justify-content: space-between; padding: 0 16px;
    border-bottom: 1px solid var(--edge);
}
.wcf-mobile-header__logo img { height: 32px; width: auto; }
.wcf-burger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
}
.wcf-burger span { display: block; width: 22px; height: 2px; background: var(--text-white); border-radius: 2px; transition: var(--speed); }

.wcf-mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,12,7,.97); z-index: 100;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 80px 32px 40px;
    overflow-y: auto;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
}
.wcf-mobile-nav--open { opacity: 1; visibility: visible; }
.wcf-mobile-nav__link {
    display: block; padding: 16px 24px; color: var(--text-light);
    text-decoration: none; font-size: 20px; font-weight: 700;
    border-radius: 12px; transition: background var(--speed);
    text-align: center; width: 100%; max-width: 320px;
    border: 1px solid var(--edge);
}
.wcf-mobile-nav__link:hover { background: rgba(255,255,255,.08); }
.wcf-mobile-nav__link--bonus {
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: none; font-size: 22px;
}
.wcf-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 99; }
.wcf-overlay--visible { display: block; }

.wcf-hero-grid {
    display: flex; flex-direction: column; gap: 12px;
    padding: 0 24px; margin-bottom: 28px;
}
.wcf-hero-grid__main {
    position: relative; border-radius: var(--rds); overflow: hidden;
    display: block; text-decoration: none; color: #fff;
    min-height: 380px;
}
.wcf-hero-grid__main img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.wcf-hero-grid__overlay {
    position: relative; z-index: 2; padding: 40px 36px;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 380px;
    background: linear-gradient(to top, rgba(20,12,7,.85) 0%, rgba(20,12,7,.4) 50%, rgba(20,12,7,.1) 100%);
}
.wcf-hero-grid__overlay h1 {
    font-family: var(--font-display); font-size: 36px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}
.wcf-hero-grid__offer {
    font-size: 22px; font-weight: 700; color: var(--accent); margin-bottom: 6px;
}
.wcf-hero-grid__sub {
    font-size: 14px; color: var(--text-light); margin-bottom: 20px; opacity: .85;
}
.wcf-hero-grid__main .wcf-btn { align-self: flex-start; }
.wcf-hero-grid__bottom {
    display: grid; grid-template-columns: 1fr 180px; gap: 12px;
}
.wcf-hero-grid__card {
    border-radius: var(--rds); overflow: hidden;
    display: block; position: relative;
    transition: all var(--speed);
}
.wcf-hero-grid__card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.wcf-hero-grid__card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.wcf-hero-grid__card--wide { height: 160px; }
.wcf-hero-grid__card--square { height: 160px; }
.wcf-hero-grid__card-text {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(20,12,7,.8) 0%, transparent 100%);
}
.wcf-hero-grid__card-label {
    display: block; font-size: 11px; color: var(--text-muted);
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}
.wcf-hero-grid__card-title {
    display: block; font-size: 15px; font-weight: 700; color: #fff;
    font-family: var(--font-display);
}

@media (max-width: 1080px) {
    .wcf-hero-grid__main { min-height: 300px; }
    .wcf-hero-grid__overlay { min-height: 300px; padding: 30px 24px; }
    .wcf-hero-grid__overlay h1 { font-size: 28px; }
    .wcf-hero-grid__bottom { grid-template-columns: 1fr 140px; }
    .wcf-hero-grid__card--wide, .wcf-hero-grid__card--square { height: 130px; }
}
@media (max-width: 600px) {
    .wcf-hero-grid { padding: 0 16px; }
    .wcf-hero-grid__main { min-height: 260px; }
    .wcf-hero-grid__overlay { min-height: 260px; padding: 24px 20px; }
    .wcf-hero-grid__overlay h1 { font-size: 24px; }
    .wcf-hero-grid__offer { font-size: 18px; }
    .wcf-hero-grid__bottom { grid-template-columns: 1fr 120px; }
    .wcf-hero-grid__card--wide, .wcf-hero-grid__card--square { height: 110px; }
}

.wcf-hero { margin-bottom: 0; position: relative; }
.wcf-hero-overlay-link {
    position: absolute; inset: 0; z-index: 1;
    text-decoration: none;
    cursor: pointer;
}
.wcf-hero .wcf-banner { position: relative; z-index: 2; }
.wcf-hero .wcf-banner .wcf-btn--cta { position: relative; z-index: 3; }
.wcf-banner {
    position: relative; min-height: 560px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    border-radius: 0;
}
.wcf-banner::after {
    content: ''; position: absolute; inset: 0;
    background: url('../img/wr-hero-bg.webp') center center/cover no-repeat;
    z-index: 0;
    filter: brightness(1.06) saturate(1.06);
    
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); filter: brightness(1.04) saturate(1.05); }
    50% { transform: scale(1.025); filter: brightness(1.12) saturate(1.12); }
}
.wcf-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(26,16,10,0) 55%, rgba(26,16,10,.55) 80%, rgba(26,16,10,1) 100%),
        radial-gradient(ellipse 46% 72% at 50% 46%, rgba(18,10,6,.62) 0%, rgba(18,10,6,.2) 58%, rgba(18,10,6,0) 78%);
    z-index: 1;
}
.wcf-banner__body {
    position: relative; z-index: 2;
    padding: 56px 24px; max-width: 660px; margin: 0 auto; text-align: center;
}
.wcf-banner__tag {
    display: inline-block; background: rgba(224,167,60,.15);
    color: var(--accent); font-size: 13px; font-weight: 700;
    padding: 6px 18px; border-radius: 20px; margin-bottom: 16px;
    letter-spacing: .5px; text-transform: uppercase;
}
.wcf-banner__logo { width: 200px; margin: 0 0 20px; }
.wcf-banner h1 {
    font-family: var(--font-display); font-size: 42px; font-weight: 700;
    color: #fff; margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0,0,0,.6);
}
.wcf-banner__offer {
    font-size: 52px; font-weight: 900; color: var(--accent);
    line-height: 1.1; margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0,0,0,.5);
}
.wcf-banner__offer strong { color: #fff; }
.wcf-banner__sub {
    font-size: 17px; color: #fff; margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.wcf-jackpot-feed { margin-top: 8px; margin-bottom: 28px; padding: 0 24px; max-width: 70%; margin-left: auto; margin-right: auto; }
.wcf-jackpot-feed__head {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.wcf-jackpot-feed__head svg { flex-shrink: 0; }
.wcf-jackpot-feed__head h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; line-height: 1; margin: 0; letter-spacing: .3px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.wcf-jackpot-feed__wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.wcf-jackpot-feed__track {
    display: flex; gap: 14px; width: max-content;
    animation: marquee-slide 35s linear infinite;
}
@keyframes marquee-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.wcf-jackpot-feed__item {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 10px 16px;
    min-width: 240px; flex-shrink: 0;
}
.wcf-jackpot-feed__icon { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.wcf-jackpot-feed__info { display: flex; flex-direction: column; min-width: 0; }
.wcf-jackpot-feed__info strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wcf-jackpot-feed__info small { font-size: 11px; color: var(--text-muted); }
.wcf-jackpot-feed__sum { font-weight: 800; color: var(--accent-2); font-size: 15px; margin-left: auto; white-space: nowrap; }
.wcf-jackpot-feed__sum::before { content: '+'; margin-right: 1px; }

.wcf-slot-section {
    margin-bottom: 32px; padding: 24px;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds);
    max-width: 70%; margin-left: auto; margin-right: auto;
}

.wcf-slider-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px;
}
.wcf-slider-title { display: flex; align-items: center; gap: 10px; min-width: 0; }
.wcf-slider-title h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: .3px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.wcf-section-header__icon { width: 24px; height: 24px; border-radius: 6px; }
.wcf-slider-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.wcf-slider-arrows { display: flex; gap: 6px; }
.wcf-slider-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--edge);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--speed); padding: 0;
}
.wcf-slider-arrow:hover { border-color: var(--accent); color: var(--text-white); }
.wcf-slider-arrow:disabled { opacity: .3; cursor: default; }
.wcf-slider-arrow:disabled:hover { border-color: var(--edge); color: var(--text-muted); }
.wcf-slider-arrow svg { width: 12px; height: 12px; fill: currentColor; }

.wcf-slot-slider {
    display: flex; gap: 12px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 4px 0 8px;
}
.wcf-slot-slider::-webkit-scrollbar { display: none; }

.wcf-slot-tile {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
    text-decoration: none; color: var(--text-light);
    border-radius: var(--rds-s);
    position: relative;
    transition: transform var(--speed);
}
.wcf-slot-tile::after {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--rds-s);
    border: 3px solid transparent;
    transition: border-color var(--speed), box-shadow var(--speed);
    pointer-events: none; z-index: 3;
}
.wcf-slot-tile:hover { transform: translateY(-4px); }
.wcf-slot-tile:hover::after {
    border-color: rgba(224,167,60,.9);
    box-shadow: 0 0 20px rgba(224,167,60,.4);
}
.wcf-slot-tile__thumb {
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    position: relative; border-radius: var(--rds-s) var(--rds-s) 0 0;
    overflow: hidden;
}
.wcf-slot-tile__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.wcf-slot-tile__hover {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(224,167,60,.5) 0%, rgba(26,16,10,.25) 40%, rgba(26,16,10,.1) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--speed);
}
.wcf-slot-tile__hover .wcf-play-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(224,167,60,.5);
    transition: transform .2s ease;
}
.wcf-slot-tile__hover .wcf-play-icon svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.wcf-slot-tile:hover .wcf-slot-tile__hover { opacity: 1; }
.wcf-slot-tile:hover .wcf-play-icon { transform: scale(1.1); }
.wcf-slot-tile__meta {
    background: var(--bg-card); padding: 10px 12px;
    display: flex; flex-direction: column;
    border: 1px solid var(--edge); border-top: none;
    border-radius: 0 0 var(--rds-s) var(--rds-s);
}
.wcf-slot-tile__meta strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wcf-slot-tile__meta small { font-size: 11px; color: var(--text-muted); }

.wcf-slot-tile__live-tag {
    position: absolute; top: 8px; left: 8px;
    padding: 2px 8px; background: #e53935; color: #fff;
    font-size: 10px; font-weight: 700; border-radius: 4px;
    letter-spacing: .5px; z-index: 2;
}

.wcf-vendor-tile {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 16px 20px;
    display: flex; align-items: center; justify-content: center;
    min-height: 80px;
}
.wcf-vendor-tile img { max-height: 40px; width: auto; object-fit: contain; filter: brightness(.9); transition: filter var(--speed); }
.wcf-vendor-tile:hover img { filter: brightness(1.1); }

.wcf-block {
    margin-bottom: 40px; padding: 0 24px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.wcf-block h2 {
    font-size: 22px; font-weight: 700; color: var(--text-white);
    margin-bottom: 16px;
}
.wcf-block p {
    color: var(--text-light); margin-bottom: 14px;
}
.wcf-block a { color: var(--accent); text-decoration: underline; }

.wcf-highlight-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px; margin: 20px 0;
}
.wcf-highlight {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 24px;
    text-align: center;
}
.wcf-highlight__icon { font-size: 36px; margin-bottom: 12px; }
.wcf-highlight h3 { font-size: 16px; color: var(--text-white); margin-bottom: 8px; }
.wcf-highlight p { font-size: 13px; color: var(--text-muted); margin: 0; }

.wcf-features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding: 0 24px; margin-bottom: 40px; max-width: 70%; margin-left: auto; margin-right: auto;
}
.wcf-perk-box {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 28px 20px;
    text-align: center;
}
.wcf-perk-box__icon { font-size: 32px; margin-bottom: 14px; }
.wcf-perk-box h3 { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.wcf-perk-box p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.wcf-qa-list { max-width: 1100px; margin-left: auto; margin-right: auto; }
.wcf-faq-item {
    border: 1px solid var(--edge); border-radius: var(--rds-s);
    margin-bottom: 10px; overflow: hidden;
    background: var(--bg-card);
    transition: border-color .25s ease;
}
.wcf-faq-item[open] { border-color: var(--accent); }
.wcf-faq-item__q {
    width: 100%; background: var(--bg-card); border: none;
    color: var(--text-white); font-family: var(--font);
    font-size: 15px; font-weight: 700; text-align: left;
    padding: 18px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    list-style: none;
}
.wcf-faq-item__q::-webkit-details-marker { display: none; }
.wcf-faq-item__q::after {
    content: '+'; font-size: 24px; line-height: 1; color: var(--accent);
    font-weight: 300; transition: transform .25s ease;
    flex-shrink: 0;
}
.wcf-faq-item[open] .wcf-faq-item__q::after { transform: rotate(45deg); }
.wcf-faq-item__a {
    padding: 0 22px 18px;
    font-size: 14px; color: var(--text-light); line-height: 1.7;
    font-weight: 500;
}
.wcf-faq-item__a p { margin: 0; }

.wcf-cta-section {
    text-align: center; padding: 48px 24px;
    background: linear-gradient(135deg, rgba(224,167,60,.08), rgba(255,203,5,.05));
    border-radius: var(--rds); margin: 0 auto 40px;
    border: 1px solid var(--edge); max-width: 900px;
}
.wcf-cta-section h2 { font-size: 26px; color: var(--text-white); margin-bottom: 12px; }
.wcf-cta-section p { color: var(--text-muted); margin-bottom: 24px; }

.wcf-footer {
    background: var(--bg-topbar); border-top: 1px solid var(--edge);
    padding: 40px 24px 20px; font-family: var(--font);
}
.wcf-footer__top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px; margin-bottom: 28px; max-width: 70%; margin-left: auto; margin-right: auto;
}
.wcf-footer__brand { max-width: 400px; flex-shrink: 0; }
.wcf-footer__logo-img { height: 50px; width: auto; margin-bottom: 16px; }
.wcf-footer__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.wcf-footer__links {
    display: flex; gap: 48px; flex: 1; justify-content: flex-end;
}
.wcf-footer__nav ul { list-style: none; padding: 0; margin: 0; }
.wcf-footer__heading {
    font-size: 13px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 12px;
}
.wcf-footer__nav li a {
    display: block; font-size: 13px; color: var(--text-muted);
    text-decoration: none; padding: 3px 0; transition: color var(--speed);
}
.wcf-footer__nav li a:hover { color: var(--text-white); }
.wcf-footer__providers {
    display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 20px 0;
    border-top: 1px solid var(--edge); max-width: 70%; margin: 0 auto;
}
.wcf-footer__providers span {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .5px;
}
.wcf-footer__pays {
    display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0;
    border-top: 1px solid var(--edge); max-width: 70%; margin: 0 auto;
}
.wcf-pay-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px 12px; background: var(--bg-card);
    border: 1px solid var(--edge); border-radius: 6px;
}
.wcf-footer__bottom {
    border-top: 1px solid var(--edge); padding-top: 20px;
    max-width: 70%; margin: 0 auto;
}
.wcf-footer__badges { display: flex; gap: 12px; align-items: center; justify-content: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--edge); max-width: 70%; margin-left: auto; margin-right: auto; }
.wcf-footer__age {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid #e53935; color: #e53935; font-size: 12px; font-weight: 700;
}
.wcf-footer__badge {
    font-size: 11px; color: var(--text-muted); background: var(--bg-card);
    padding: 4px 10px; border-radius: 4px; border: 1px solid var(--edge);
}
.wcf-footer__disclaimer {
    font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px;
}
.wcf-footer__disclaimer a { color: var(--accent); text-decoration: underline; }
.wcf-footer__copy { font-size: 11px; color: var(--text-muted); opacity: .5; }

.wcf-cta-strip-wrap {
    padding: 0 24px; margin-bottom: 32px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.wcf-cta-strip {
    display: flex; align-items: center; justify-content: space-between;
    background:
        linear-gradient(100deg, #160d07 0%, #160d07 38%, rgba(22,13,7,.45) 64%, rgba(22,13,7,0) 100%),
        url('../img/wr-promo-2.webp') right center / auto 120% no-repeat,
        #160d07;
    border: 3px solid var(--accent); border-radius: var(--rds);
    overflow: hidden; text-decoration: none; color: #fff;
    min-height: 280px; position: relative;
    transition: all var(--speed);
}
.wcf-cta-strip:hover {
    border-color: var(--accent); box-shadow: 0 4px 30px rgba(224,167,60,.3);
    transform: translateY(-2px);
}
.wcf-cta-strip__text {
    padding: 40px; flex: 1; position: relative; z-index: 2;
    text-align: center;
}
.wcf-cta-strip__label {
    font-size: 22px; color: #d2cce4; margin-bottom: 8px; font-weight: 700;
    font-style: italic;
}
.wcf-cta-strip__title {
    font-size: 52px; font-weight: 900; color: #f2cf6b; line-height: 1.05;
    margin-bottom: 12px; text-transform: uppercase; font-style: italic;
    text-shadow: 0 3px 10px rgba(0,0,0,.6);
}
.wcf-cta-strip__sub {
    font-size: 19px; color: #fff; margin-bottom: 24px; font-weight: 600;
    font-style: italic; opacity: .9;
}
.wcf-cta-strip__btn {
    display: inline-block; padding: 10px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; font-weight: 700; font-size: 15px;
    border-radius: 30px; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(224,167,60,.4);
    transition: background .25s ease, box-shadow .25s ease;
    animation: wcfPulse 2s ease-in-out infinite;
}
.wcf-cta-strip:hover .wcf-cta-strip__btn {
    background: linear-gradient(135deg, #f2cf6b, var(--accent));
    box-shadow: 0 6px 28px rgba(224,167,60,.6);
    animation: none;
}
@keyframes wcfPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(224,167,60,.4); }
    50%      { transform: scale(1.06); box-shadow: 0 8px 32px rgba(224,167,60,.65); }
}
.wcf-cta-strip__art {
    height: 220px; width: 220px; object-fit: contain; object-position: center top;
    position: relative; z-index: 2; margin-right: 0; flex-shrink: 0;
}

@media (max-width: 600px) {
    .wcf-cta-strip { flex-direction: column; text-align: center; }
    .wcf-cta-strip__text { padding: 24px 20px 16px; }
    .wcf-cta-strip__title { font-size: 28px; }
    .wcf-cta-strip__art { height: 140px; margin: 0 0 16px; }
    .wcf-cta-strip-wrap { padding: 0 16px; }
}

@media (max-width: 968px) {
    .wcf-jackpot-feed,
    .wcf-slot-section,
    .wcf-cta-strip-wrap,
    .wcf-features,
    .wcf-footer__top,
    .wcf-footer__providers,
    .wcf-footer__pays,
    .wcf-footer__bottom,
    .wcf-footer__badges {
        max-width: 100%;
    }
    
    .wcf-footer__top { flex-direction: column; gap: 28px; align-items: flex-start; }
    .wcf-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 20px; width: 100%; }
}

.wcf-bonus-tiers {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 10px; margin: 20px 0;
}
.wcf-bonus-tier {
    background: linear-gradient(180deg, rgba(46,29,20,.40), rgba(26,16,10,.34)); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 18px 10px;
    text-align: center; display: flex; flex-direction: column;
    align-items: center; gap: 6px; transition: all var(--speed);
    box-shadow: 0 2px 8px rgba(0,0,0,.3); text-decoration: none; cursor: pointer;
}
.wcf-bonus-tier:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.wcf-bonus-tier__num { color: var(--accent); }
.wcf-bonus-tier__num svg { width: 28px; height: 28px; }
.wcf-bonus-tier__pct { font-size: 18px; font-weight: 700; color: var(--text-white); line-height: 1.2; text-transform: uppercase; }
.wcf-bonus-tier__max { font-size: 12px; color: var(--text-muted); }

.wcf-breadcrumbs {
    padding: 16px 24px 0; font-size: 13px; color: var(--text-muted);
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.wcf-breadcrumbs a { color: var(--accent); text-decoration: none; }
.wcf-breadcrumbs a:hover { text-decoration: underline; }
.wcf-breadcrumbs span { margin: 0 6px; opacity: .5; }

.wcf-bonus-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; margin: 24px 0;
}
.wcf-bonus-card {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 24px; text-align: center;
}
.wcf-bonus-card__icon { font-size: 32px; margin-bottom: 10px; }
.wcf-bonus-card h3 { font-size: 15px; color: var(--text-white); margin-bottom: 6px; }
.wcf-bonus-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
.wcf-bonus-card--highlight { border-color: var(--accent); background: rgba(224,167,60,.05); }

.wcf-rating-box {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 28px; text-align: center;
    margin: 24px 0; max-width: 400px;
}
.wcf-rating-box__score {
    font-size: 48px; font-weight: 800; color: var(--accent);
    line-height: 1;
}
.wcf-rating-box__stars { color: var(--accent); font-size: 22px; margin: 8px 0; letter-spacing: 2px; }
.wcf-rating-box__text { font-size: 13px; color: var(--text-muted); }

.wcf-pros-cons {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin: 24px 0; max-width: 800px;
}
.wcf-pros-box, .wcf-cons-box {
    background: var(--bg-card); border-radius: var(--rds);
    padding: 20px; border: 1px solid var(--edge);
}
.wcf-pros-box h3 { color: var(--accent-2); margin-bottom: 12px; font-size: 15px; }
.wcf-cons-box h3 { color: #e53935; margin-bottom: 12px; font-size: 15px; }
.wcf-pros-box ul, .wcf-cons-box ul { list-style: none; padding: 0; }
.wcf-pros-box li, .wcf-cons-box li {
    font-size: 13px; color: var(--text-light); padding: 6px 0;
    padding-left: 20px; position: relative;
}
.wcf-pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; }
.wcf-cons-box li::before { content: '✗'; position: absolute; left: 0; color: #e53935; font-weight: 700; }

.wcf-review-card {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 20px; margin-bottom: 16px;
    max-width: 800px;
}
.wcf-review-card__header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.wcf-review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(224,167,60,.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.wcf-review-card__name { font-size: 14px; font-weight: 600; color: var(--text-white); }
.wcf-review-card__date { font-size: 11px; color: var(--text-muted); }
.wcf-review-card__stars { color: var(--accent); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }
.wcf-review-card__text { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.wcf-info-table {
    width: 100%; border-collapse: collapse; margin: 20px 0;
    max-width: 800px;
}
.wcf-info-table th, .wcf-info-table td {
    padding: 12px 16px; text-align: left; font-size: 13px;
    border-bottom: 1px solid var(--edge);
}
.wcf-info-table th {
    background: var(--bg-card); color: var(--accent);
    font-weight: 700; font-size: 12px; text-transform: uppercase;
    letter-spacing: .5px;
}
.wcf-info-table td { color: var(--text-light); }
.wcf-info-table tr:hover td { background: rgba(255,255,255,.02); }

.wcf-article {
    max-width: 1200px; margin-left: auto; margin-right: auto;
    font-family: var(--font);
}
.wcf-article h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; color: #fff;
    text-align: left; letter-spacing: .2px;
    margin: 36px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
    text-shadow: none;
}
.wcf-article h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800; color: #fff;
    text-align: left; letter-spacing: .2px;
    margin: 32px 0 18px;
    padding-left: 14px;
    border-left: 4px solid var(--accent);
    line-height: 1.2;
    text-shadow: none;
}
.wcf-article p { text-align: left; }
.wcf-article p {
    font-size: 15px; line-height: 1.75; color: var(--text-light);
    font-weight: 500;
    margin-bottom: 14px;
}
.wcf-article a { color: var(--accent); text-decoration: underline; }
.wcf-article hr {
    border: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    margin: 36px auto;
    max-width: 1080px;
}

@media (max-width: 600px) {
    .wcf-article h2 { font-size: 24px; margin: 28px 0 18px; }
    .wcf-article h3 { font-size: 19px; margin: 24px 0 14px; }
    .wcf-article hr { margin: 28px auto; }

    /* Pied de page — garder les trois colonnes alignées sur écrans étroits */
    .wcf-footer__links { gap: 20px 12px; }
    .wcf-footer__heading { font-size: 11.5px; letter-spacing: .3px; }
    .wcf-footer__nav li a { font-size: 11.5px; padding: 3px 0; }
}

.wcf-article-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin: -10px 0 30px;
    font-style: italic;
}

.wcf-intro-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 36px;
}
.wcf-intro-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.wcf-intro-text p { text-align: left; }

.wcf-info-card {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(224,167,60,.10), transparent 60%),
        linear-gradient(180deg, rgba(46,29,20,.46), rgba(26,16,10,.40));
    border: 1px solid rgba(224,167,60,.26);
    border-radius: 16px;
    padding: 36px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow:
        0 10px 40px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.wcf-info-card__badge {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #150d07;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(224,167,60,.4);
}

.wcf-info-card__head {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px;
    padding: 8px 0 4px;
}
.wcf-info-card__brand {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .5px;
    line-height: 1;
}
.wcf-info-card__tag {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.wcf-info-card__score {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.wcf-info-card__score-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}
.wcf-info-card__score-meta { display: flex; flex-direction: column; gap: 4px; }
.wcf-info-card__score-meta .wcf-stars {
    color: #f2cf6b; letter-spacing: 1.5px; font-size: 14px;
}
.wcf-info-card__score-label {
    font-size: 11px; color: var(--text-muted); font-weight: 500;
}

.wcf-info-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
}
.wcf-info-stat {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 8px;
    background: rgba(255,255,255,.025);
    border-radius: 8px;
}
.wcf-info-stat__icon {
    width: 22px; height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.wcf-info-stat__label {
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 1px;
}
.wcf-info-stat__value {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
}

.wcf-info-card__highlights {
    padding: 14px 14px 12px;
    background: var(--bg-card);
    border-radius: 10px;
    border-left: 3px solid var(--accent-2);
}
.wcf-info-card__highlights-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.wcf-info-card__highlights ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.wcf-info-card__highlights li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.4;
    font-weight: 500;
}
.wcf-info-card__highlights li::before {
    content: '✓';
    color: var(--accent-2);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.wcf-info-card__payments {
    padding: 12px 14px;
    background: rgba(255,255,255,.025);
    border-radius: 10px;
}
.wcf-info-card__payments-title {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.wcf-info-card__payments-icons {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.wcf-info-card__payments-icons span {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    color: var(--text-light);
    letter-spacing: .5px;
}

.wcf-info-card__breakdown {
    padding: 14px 14px 12px;
    background: rgba(255,255,255,.025);
    border-radius: 10px;
}
.wcf-info-card__breakdown-title {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.wcf-rating-bar {
    display: grid;
    grid-template-columns: 108px 1fr 30px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.wcf-rating-bar:last-child { margin-bottom: 0; }
.wcf-rating-bar__label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
}
.wcf-rating-bar__track {
    height: 6px;
    background: rgba(255,255,255,.06);
    border-radius: 3px;
    overflow: hidden;
}
.wcf-rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #d18014);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(224,167,60,.4);
}
.wcf-rating-bar__value {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    color: var(--text-white);
    text-align: right;
}

@media (max-width: 600px) {
    .wcf-info-card__breakdown { display: none; }
}

.wcf-info-card__cta {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #e6951a 50%, var(--accent) 100%);
    background-size: 200% 100%;
    color: #fff !important;
    text-decoration: none !important;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow:
        0 8px 28px rgba(224,167,60,.45),
        inset 0 -2px 0 rgba(0,0,0,.15);
    transition: all .3s ease;
}
.wcf-info-card__cta svg {
    width: 18px; height: 18px;
    transition: transform .3s ease;
}
.wcf-info-card__cta:hover {
    background-position: 100% 0;
    box-shadow: 0 12px 36px rgba(224,167,60,.6), inset 0 -2px 0 rgba(0,0,0,.15);
}
.wcf-info-card__cta:hover svg { transform: translateX(4px); }

.wcf-info-card__foot {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .3px;
}

.wcf-quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: auto 0 0;
}
.wcf-quick-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    padding: 22px 14px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    text-decoration: none !important;
    text-align: center;
    transition: all .25s ease;
}
.wcf-quick-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(224,167,60,.15);
}
.wcf-quick-card__icon {
    width: 30px; height: 30px; color: var(--accent);
    margin-bottom: 2px;
}
.wcf-quick-card__title {
    color: var(--accent);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wcf-quick-card__desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 968px) {
    .wcf-intro-layout {
        grid-template-columns: 1fr;
    }
    .wcf-info-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .wcf-quick-cards { grid-template-columns: repeat(3, 1fr); }
}

.wcf-mobile-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 24px;
}
.wcf-mobile-section__text h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; color: #fff;
    text-align: left;
    margin: 0 0 18px;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
    line-height: 1.15;
    text-shadow: none;
}
.wcf-mobile-section__text h3 {
    font-family: var(--font-display);
    font-size: 19px; font-weight: 800; color: #fff;
    text-align: left;
    margin: 26px 0 12px;
    padding-left: 13px;
    border-left: 3px solid var(--accent);
}
.wcf-mobile-section__text p {
    font-size: 15px; line-height: 1.75; color: var(--text-light);
    font-weight: 500;
    margin-bottom: 24px;
}
.wcf-check-list {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.wcf-check-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.wcf-check-list li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(224,167,60,.12);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px;
    flex-shrink: 0;
}
.wcf-platform-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.wcf-platform-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 700; font-size: 14px;
    text-decoration: none !important;
    transition: all .2s ease;
}
.wcf-platform-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.wcf-platform-badge svg { width: 18px; height: 18px; }
.wcf-platform-badge--ios svg { fill: #fff; }
.wcf-platform-badge--android svg { fill: #3ddc84; }

.wcf-phone-photo {
    display: block;
    width: 380px; max-width: 100%; height: auto;
}
.wcf-phone-mockup {
    width: 280px; height: 560px;
    background: linear-gradient(145deg, #241710, #150d07);
    border-radius: 38px;
    padding: 10px;
    border: 2px solid #3a2614;
    box-shadow:
        0 40px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.05),
        inset 0 1px 0 rgba(255,255,255,.08);
    position: relative;
    margin: 0 auto;
}
.wcf-phone-mockup::before {
    content: '';
    width: 110px; height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.wcf-phone-screen {
    background: #150d07;
    border-radius: 30px;
    width: 100%; height: 100%;
    overflow: hidden;
    display: flex; flex-direction: column;
    position: relative;
}
.wcf-phone-screen__logo {
    height: 50px; display: flex; align-items: center; justify-content: center;
    background: #150d07;
    padding: 12px 0 8px;
    flex-shrink: 0;
}
.wcf-phone-screen__logo img {
    height: 22px; width: auto;
}
.wcf-phone-screen__hero {
    flex: 1;
    background: url('../img/sweet-bonanza.webp') center/cover no-repeat;
    position: relative;
}
.wcf-phone-screen__cta {
    position: absolute; bottom: 10px; left: 10px; right: 10px;
    display: flex; gap: 8px;
}
.wcf-phone-screen__cta button {
    flex: 1; padding: 8px 6px;
    border: none; border-radius: 6px;
    font-family: var(--font-display); font-weight: 800;
    font-size: 10px; text-transform: uppercase;
    cursor: pointer;
}
.wcf-phone-screen__cta button:first-child {
    background: var(--accent); color: #000;
}
.wcf-phone-screen__cta button:last-child {
    background: #ff3a3a; color: #fff;
}
.wcf-phone-screen__tiles {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
    padding: 8px;
    background: #150d07;
    flex-shrink: 0;
}
.wcf-phone-screen__tile {
    aspect-ratio: 1;
    background-size: cover; background-position: center;
    border-radius: 4px;
    position: relative;
}
.wcf-phone-screen__tile span {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.75);
    color: #fff; font-size: 6px;
    text-align: center; padding: 1px 2px;
    border-radius: 0 0 4px 4px;
    line-height: 1.2;
}
.wcf-phone-screen__nav {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(180deg, var(--accent), #d18014);
    padding: 6px 0;
    flex-shrink: 0;
}
.wcf-phone-screen__nav span {
    text-align: center; font-size: 8px;
    color: #fff; font-weight: 700;
}

@media (max-width: 968px) {
    .wcf-mobile-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wcf-phone-mockup { width: 240px; height: 480px; }
    .wcf-phone-photo { width: 320px; }
    .wcf-mobile-section__text h2 { font-size: 26px; }
}

.wcf-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 8px;
}
.wcf-review-card {
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 22px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.wcf-review-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.wcf-review-card__head {
    display: flex; align-items: center; gap: 12px;
}
.wcf-review-card__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 17px;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.wcf-review-card__name {
    font-weight: 700; font-size: 14px; color: var(--text-white);
}
.wcf-review-card__date {
    font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.wcf-review-card__stars {
    color: #f2cf6b; letter-spacing: 2px; font-size: 15px;
}
.wcf-review-card__quote {
    color: var(--text-light); font-size: 14px; line-height: 1.6;
    font-style: italic;
    margin: 0; text-align: left;
    position: relative;
    padding-left: 14px;
    border-left: 3px solid rgba(255,203,5,.35);
}

@media (max-width: 968px) {
    .wcf-reviews-grid { grid-template-columns: 1fr; }
}

.wcf-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin: 28px 0 8px;
    padding: 20px 0;
}
.wcf-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
}
.wcf-step__circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    box-shadow: 0 8px 24px rgba(224,167,60,.35);
    margin-bottom: 14px;
    position: relative; z-index: 2;
}
.wcf-step__circle svg {
    width: 28px; height: 28px;
    stroke: #fff; stroke-width: 2.2; fill: none;
}
.wcf-step__title {
    font-family: var(--font-display);
    font-size: 14px; font-weight: 800; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.wcf-step__desc {
    font-size: 13px; color: var(--text-light); line-height: 1.45;
    font-weight: 500;
}
.wcf-step__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(224,167,60,.4), rgba(224,167,60,.15));
    margin-top: 32px;
    min-width: 20px;
    position: relative;
}
.wcf-step__line::before {
    content: '';
    position: absolute; right: -2px; top: -3px;
    width: 8px; height: 8px;
    background: rgba(224,167,60,.4);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .wcf-stepper {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .wcf-step { max-width: 320px; margin-bottom: 16px; }
    .wcf-step__line {
        width: 2px; height: 30px;
        min-width: 0;
        margin-top: 0; margin-bottom: 8px;
        background: linear-gradient(180deg, rgba(224,167,60,.5), rgba(224,167,60,.15));
        flex: none;
    }
    .wcf-step__line::before { display: none; }
}

.wcf-speed-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0 12px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
}
.wcf-speed-bar { display: flex; flex-direction: column; gap: 8px; }
.wcf-speed-bar__head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.wcf-speed-bar__method {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-white);
    font-weight: 700; font-size: 14px;
}
.wcf-speed-bar__method svg {
    width: 22px; height: 22px;
    fill: var(--accent);
}
.wcf-speed-bar__time {
    font-family: var(--font-display);
    font-weight: 800; font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
}
.wcf-speed-bar__time--fast {
    background: rgba(255,203,5,.15);
    color: var(--accent-2);
}
.wcf-speed-bar__time--medium {
    background: rgba(224,167,60,.15);
    color: var(--accent);
}
.wcf-speed-bar__time--slow {
    background: rgba(255,107,107,.12);
    color: #ff8c8c;
}
.wcf-speed-bar__track {
    height: 10px;
    background: rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
}
.wcf-speed-bar__fill {
    height: 100%;
    border-radius: 20px;
    transition: width .6s ease;
    position: relative;
}
.wcf-speed-bar__fill--fast {
    background: linear-gradient(90deg, #f2cf6b, #e0b94f);
    box-shadow: 0 0 12px rgba(255,203,5,.4);
}
.wcf-speed-bar__fill--medium {
    background: linear-gradient(90deg, var(--accent), #d18014);
    box-shadow: 0 0 12px rgba(224,167,60,.35);
}
.wcf-speed-bar__fill--slow {
    background: linear-gradient(90deg, #ff8c8c, #d65555);
    box-shadow: 0 0 12px rgba(255,107,107,.3);
}
.wcf-speed-bars__legend {
    display: flex; gap: 18px; justify-content: center;
    margin-top: 6px; padding-top: 16px;
    border-top: 1px solid var(--edge);
    font-size: 12px; color: var(--text-muted);
    flex-wrap: wrap;
}
.wcf-speed-bars__legend span {
    display: inline-flex; align-items: center; gap: 6px;
}
.wcf-speed-bars__legend span::before {
    content: ''; width: 10px; height: 10px; border-radius: 50%;
    display: inline-block;
}
.wcf-speed-bars__legend .wcf-leg-fast::before { background: var(--accent-2); }
.wcf-speed-bars__legend .wcf-leg-medium::before { background: var(--accent); }
.wcf-speed-bars__legend .wcf-leg-slow::before { background: #ff8c8c; }

@media (max-width: 600px) {
    .wcf-speed-bars { padding: 18px; }
    .wcf-speed-bar__head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.wcf-trust-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 28px 0 12px;
}
.wcf-trust-badge {
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.wcf-trust-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.wcf-trust-badge__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(224,167,60,.2), rgba(224,167,60,.05));
    border: 1.5px solid rgba(224,167,60,.3);
    display: flex; align-items: center; justify-content: center;
}
.wcf-trust-badge__icon svg {
    width: 30px; height: 30px;
    stroke: var(--accent); stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}
.wcf-trust-badge__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.wcf-trust-badge__desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .wcf-trust-badges { grid-template-columns: repeat(3, 1fr); }
}

.wcf-cta-block {
    position: relative;
    margin: 48px 0 32px;
    padding: 44px 32px 28px;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(224,167,60,.14), transparent 65%),
        linear-gradient(180deg, #1c130c, #0f0905);
    border: 1px solid rgba(224,167,60,.28);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.wcf-cta-block::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent), var(--accent-2), transparent);
}

.wcf-cta-block h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-align: center !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border-left: none !important;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
    line-height: 1.15;
}
.wcf-cta-block p {
    font-size: 16px;
    color: var(--text-light);
    text-align: center !important;
    margin: 0 auto 28px;
    max-width: 540px;
    font-weight: 500;
}
.wcf-cta-block p strong { color: #fff; font-weight: 800; }
.wcf-cta-block .wcf-btn--cta {
    margin: 0 auto;
    color: #1a100a !important;
    text-decoration: none !important;
}

.wcf-cta-block .wcf-info-card__foot {
    margin-top: 28px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: .3px;
}

@media (max-width: 600px) {
    .wcf-cta-block { padding: 32px 20px 22px; }
    .wcf-cta-block h2 { font-size: 24px; }
    .wcf-cta-block p { font-size: 14px; }
}

.wcf-cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1c130c, #0f0905);
    border: 1px solid rgba(224,167,60,.3);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.wcf-cookie-banner.is-visible { transform: translateY(0); }
.wcf-cookie-banner__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    display: flex; align-items: center; gap: 8px;
}
.wcf-cookie-banner__title::before { content: '🍪'; font-size: 18px; }
.wcf-cookie-banner__text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 16px;
    font-weight: 500;
}
.wcf-cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}
.wcf-cookie-banner__actions {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.wcf-cookie-banner__btn {
    flex: 1; min-width: 130px;
    padding: 10px 16px;
    font-family: var(--font-display);
    font-weight: 800; font-size: 12px;
    text-transform: uppercase; letter-spacing: .8px;
    border: none; border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
}
.wcf-cookie-banner__btn--accept {
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff;
    box-shadow: 0 4px 16px rgba(224,167,60,.4);
}
.wcf-cookie-banner__btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(224,167,60,.55);
}
.wcf-cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,.18);
}
.wcf-cookie-banner__btn--reject:hover {
    background: rgba(255,255,255,.05);
    color: #fff;
}
@media (max-width: 600px) {
    .wcf-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 18px 16px; }
    .wcf-cookie-banner__btn { flex: 1 1 100%; min-width: 0; }
}

.wcf-super-bonus-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 11px;
    background: linear-gradient(135deg, #241710, #1a100a);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 12px 24px 12px 13px;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(224,167,60,.28), 0 0 12px rgba(224,167,60,.15);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: superBonusPulse 2.4s ease-in-out infinite;
}
.wcf-super-bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(224,167,60,.5), 0 0 20px rgba(224,167,60,.3);
}
.wcf-super-bonus-btn__icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), #f2cf6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.wcf-super-bonus-btn__text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--accent);
    letter-spacing: .3px;
}
@keyframes superBonusPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 24px rgba(224,167,60,.28), 0 0 12px rgba(224,167,60,.15); }
    50% { transform: scale(1.07); box-shadow: 0 4px 40px rgba(224,167,60,.6), 0 0 26px rgba(224,167,60,.35); }
}

.wcf-super-bonus-popup {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 998;
    width: 340px;
    background: linear-gradient(170deg, #2a1a11 0%, #150d07 55%, #1c130c 100%);
    border: 2px solid var(--accent);
    border-radius: 18px;
    padding: 26px 20px 20px;
    box-shadow: 0 16px 56px rgba(0,0,0,.6), 0 0 50px rgba(224,167,60,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.wcf-super-bonus-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.wcf-super-bonus-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.wcf-super-bonus-popup__close:hover { color: var(--text-white); }

.wcf-super-bonus-popup__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.4;
    text-align: center;
}
.wcf-super-bonus-popup__title span { color: var(--accent); }

.wcf-super-bonus-popup__tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.wcf-super-bonus-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(224,167,60,.18);
    border-radius: 12px;
    padding: 9px 14px 9px 9px;
    transition: border-color .2s, background .2s;
}
.wcf-super-bonus-tier:hover { border-color: rgba(224,167,60,.5); background: rgba(224,167,60,.06); }
.wcf-super-bonus-tier__count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}
.wcf-super-bonus-tier__count strong {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f2cf6b);
    color: #1a100a; font-size: 15px; font-weight: 800;
}
.wcf-super-bonus-tier__count span { color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.wcf-super-bonus-tier__reward { font-size: 14px; font-weight: 800; color: var(--text-white); }

.wcf-super-bonus-popup__today {
    text-align: center;
    margin: 4px 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}
.wcf-super-bonus-popup__today::before,
.wcf-super-bonus-popup__today::after { content: '✦ '; }
.wcf-super-bonus-popup__fs {
    text-align: center;
    background: linear-gradient(135deg, rgba(224,167,60,.12), rgba(224,167,60,.1));
    border: 1.5px solid var(--accent);
    border-radius: 12px;
    padding: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .5px;
    text-shadow: 0 0 18px rgba(224,167,60,.3);
    margin-bottom: 16px;
}
.wcf-super-bonus-popup__cta {
    display: block;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--accent), #f2cf6b);
    border: none;
    border-radius: 30px;
    color: #1a100a !important;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wcf-super-bonus-popup__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(224,167,60,.5);
}
.wcf-super-bonus-popup__tc {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 11px;
    color: var(--accent-2);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .wcf-super-bonus-btn { bottom: 16px; right: 16px; padding: 8px 16px 8px 10px; }
    .wcf-super-bonus-btn__icon { width: 30px; height: 30px; font-size: 16px; }
    .wcf-super-bonus-btn__text { font-size: 14px; }
    .wcf-super-bonus-popup { right: 10px; left: 10px; width: auto; bottom: 80px; }
}

.wcf-lucky-wheel-section {
    margin: 40px 0;
    padding: 36px 28px;
    background:
        radial-gradient(ellipse at top, rgba(224,167,60,.12), transparent 60%),
        linear-gradient(180deg, rgba(40,25,17,.40), rgba(20,12,7,.34));
    border: 1px solid rgba(224,167,60,.25);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.wcf-lucky-wheel-section__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: center;
}
.wcf-lucky-wheel-section__text h2 {
    font-family: var(--font-display);
    font-size: 30px; font-weight: 800; color: #fff;
    text-align: left;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
    margin: 0 0 16px;
}
.wcf-lucky-wheel-section__text p {
    font-size: 15px; color: var(--text-light); line-height: 1.6;
    margin: 0 0 14px; font-weight: 500;
}
.wcf-lucky-wheel-section__list {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: flex; flex-direction: column; gap: 10px;
}
.wcf-lucky-wheel-section__list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.wcf-lucky-wheel-section__list li::before {
    content: '★'; color: var(--accent); font-size: 16px;
}

.wcf-spin-wheel {
    position: relative; width: 100%; aspect-ratio: 1; max-width: 380px;
    margin: 0 auto;
    animation: wheelPulse 2.5s ease-in-out infinite;
}
@keyframes wheelPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(224,167,60,0.2)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(224,167,60,0.5)); }
}
.wcf-spin-wheel__pointer {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 30px solid var(--accent);
    z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
#wheelCanvas {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 30px rgba(224,167,60,.3));
}
.wcf-spin-wheel__btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d18014);
    border: 3px solid #fff; color: #fff;
    font-family: var(--font-display); font-weight: 800;
    font-size: 14px; letter-spacing: 1.5px;
    cursor: pointer; z-index: 10;
    box-shadow: 0 4px 15px rgba(224,167,60,.5);
    transition: transform .2s, box-shadow .2s;
}
.wcf-spin-wheel__btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(224,167,60,.7);
}
.wcf-spin-wheel__btn:disabled {
    opacity: .6; cursor: not-allowed;
    transform: translate(-50%, -50%);
}

.wcf-spin-result {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.85); z-index: 9999;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.wcf-spin-result.active { display: flex; }
.wcf-spin-result__box {
    position: relative; overflow: visible;
    background: linear-gradient(170deg, #2a1a11 0%, #0f0905 50%, #1c130c 100%);
    border: 2px solid var(--accent);
    border-radius: 20px; padding: 110px 32px 28px;
    text-align: center; max-width: 420px; width: 90%;
    margin-top: 80px;
    box-shadow: 0 0 60px rgba(224,167,60,.25), 0 0 120px rgba(224,167,60,.1);
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from { transform: scale(.7) translateY(30px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.wcf-spin-result__img {
    width: 180px; height: auto; display: block;
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.wcf-spin-result__close {
    position: absolute; top: 12px; right: 14px;
    background: none; border: none; color: var(--text-muted);
    font-size: 28px; cursor: pointer; line-height: 1;
    transition: color .2s; z-index: 2;
}
.wcf-spin-result__close:hover { color: #fff; }
.wcf-spin-result__glow {
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(224,167,60,.3) 0%, transparent 70%);
    pointer-events: none;
}
.wcf-spin-result__congrats {
    font-family: var(--font-display); font-size: 16px;
    color: var(--text-muted); letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.wcf-spin-result__subtitle {
    font-family: var(--font-display); font-size: 28px;
    color: var(--accent); letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(224,167,60,.4);
    margin: 0 0 24px;
}
.wcf-spin-result__prizes {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 14px; margin-bottom: 28px;
}
.wcf-spin-result__prize-block {
    display: flex; flex-direction: column; align-items: center;
}
.wcf-spin-result__prize-num {
    font-family: var(--font-display); font-size: 52px;
    color: var(--accent); line-height: 1; font-weight: 900;
    text-shadow: 0 0 20px rgba(224,167,60,.4);
}
.wcf-spin-result__prize-label {
    font-size: 12px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 6px;
}
.wcf-spin-result__plus {
    font-size: 32px; color: var(--accent); font-weight: 700;
    margin-top: 10px;
}
.wcf-spin-result__cta {
    display: block; width: 100%;
    padding: 16px 0; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff !important; font-weight: 800; font-size: 16px;
    text-decoration: none !important; text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(224,167,60,.4);
    transition: transform .2s, box-shadow .2s;
}
.wcf-spin-result__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(224,167,60,.6);
}

@media (max-width: 968px) {
    .wcf-lucky-wheel-section__inner { grid-template-columns: 1fr; gap: 28px; }
    .wcf-lucky-wheel-section__text h2 { text-align: center; border-left: none; padding-left: 0; }
    .wcf-spin-wheel { max-width: 320px; }
}
@media (max-width: 480px) {
    .wcf-spin-wheel { max-width: 280px; }
    .wcf-spin-wheel__btn { width: 64px; height: 64px; font-size: 12px; }
    .wcf-spin-result__box { padding: 90px 22px 22px; }
    .wcf-spin-result__prize-num { font-size: 42px; }
    .wcf-spin-result__subtitle { font-size: 22px; }
}
@media (max-width: 600px) {
    .wcf-trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .wcf-quick-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .wcf-quick-card { padding: 16px 10px; }
    .wcf-quick-card__title { font-size: 14px; }
}

.wcf-faq-section { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px; margin-bottom: 40px; }

.wcf-qa-section { max-width: 1100px; margin: 24px auto; padding: 0 24px; }
.wcf-qa-section h2 {
    font-family: var(--font-display);
    text-align: left;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .2px;
    margin: 36px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
}
.wcf-qa-section details {
    border: 1px solid var(--edge); border-radius: var(--rds-s);
    margin-bottom: 8px; overflow: hidden;
}
.wcf-qa-section summary {
    background: var(--bg-card); color: var(--text-white);
    font-size: 14px; font-weight: 600; padding: 16px 20px;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.wcf-qa-section summary::-webkit-details-marker { display: none; }
.wcf-qa-section summary::after { content: '+'; font-size: 20px; color: var(--accent); transition: transform var(--speed); }
.wcf-qa-section details[open] summary::after { transform: rotate(45deg); }
.wcf-qa-section details > div,
.wcf-qa-section details > p {
    padding: 0 20px 16px; font-size: 13px;
    color: var(--text-muted); line-height: 1.6;
    font-family: var(--font);
}
.wcf-qa-section details a { color: var(--accent); text-decoration: underline; }

.wcf-legal-content { padding: 0 24px; max-width: 800px; margin: 0 auto 40px; font-family: var(--font); }
.wcf-legal-content h1 {
    font-size: 24px; color: var(--text-white); margin-bottom: 8px;
}
.wcf-legal-content .wcf-last-updated {
    font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
}
.wcf-legal-content h2 {
    font-size: 18px; color: var(--text-white); margin: 24px 0 10px;
}
.wcf-legal-content p, .wcf-legal-content li {
    font-size: 14px; color: var(--text-light); line-height: 1.7;
    margin-bottom: 10px;
}
.wcf-legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.wcf-legal-content a { color: var(--accent); text-decoration: underline; }

.wcf-error-page {
    text-align: center; padding: 80px 24px 60px;
    min-height: 60vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.wcf-error-page__code {
    font-size: 120px; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px;
}
.wcf-error-page h1 { font-size: 24px; color: var(--text-white); margin-bottom: 12px; }
.wcf-error-page p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; max-width: 500px; }
.wcf-error-page__links {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    margin-top: 20px;
}
.wcf-error-page__links a { color: var(--accent); text-decoration: underline; font-size: 14px; }

@media (max-width: 1080px) {
    .wcf-topbar { display: none; }
    .wcf-mobile-header { display: flex; }
    .wcf-sidebar { display: none; }
    .wcf-layout { display: block; grid-template-columns: 1fr; }
    main { padding-top: 56px; }
    .wcf-banner { min-height: 300px; }
    .wcf-banner__body { padding: 40px 20px; }
    .wcf-banner__offer { font-size: 36px; }
    .wcf-slot-tile { flex: 0 0 calc((100% - 36px) / 4); }
    .wcf-vendor-tile { flex: 0 0 calc((100% - 36px) / 4); }
    .wcf-features { grid-template-columns: repeat(2, 1fr); }
    .wcf-footer__top { flex-direction: column; }
    .wcf-pros-cons { grid-template-columns: 1fr; }
    .wcf-bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .wcf-bonus-tiers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .wcf-slot-tile { flex: 0 0 calc((100% - 12px) / 2.2); }
    .wcf-vendor-tile { flex: 0 0 calc((100% - 12px) / 2.2); }
    .wcf-banner { min-height: 480px; justify-content: center; align-items: flex-end; text-align: center; }
    .wcf-banner::after { background: url('../img/wr-hero-bg-mobile.webp') top center/cover no-repeat; }
    .wcf-banner::before { background: linear-gradient(to bottom, rgba(26,16,10,0) 30%, rgba(26,16,10,.5) 58%, rgba(26,16,10,1) 100%); }
    .wcf-banner__body { padding: 28px 16px 34px; text-align: center; max-width: 100%; }
    .wcf-banner__tag { font-size: 11px; padding: 5px 14px; background: rgba(224,167,60,.28); margin-bottom: 12px; }
    .wcf-banner__offer { font-size: 28px; }
    .wcf-banner__sub { font-size: 14px; }
    .wcf-banner__logo { width: 140px; margin: 0 auto 14px; }
    .wcf-features { grid-template-columns: 1fr; }
    .wcf-slot-section, .wcf-jackpot-feed, .wcf-block { padding: 0 16px; }
    .wcf-cta-section { margin: 0 16px 32px; padding: 32px 16px; }
    .wcf-footer { padding: 32px 16px 16px; }
    .wcf-highlight-grid { grid-template-columns: 1fr; }
    .wcf-bonus-grid { grid-template-columns: 1fr; }
    .wcf-bonus-tiers { grid-template-columns: 1fr 1fr; }
    .wcf-breadcrumbs { padding: 12px 16px 0; }
    .wcf-legal-content { padding: 0 16px; }
    .wcf-error-page { padding: 60px 16px 40px; }
    .wcf-error-page__code { font-size: 80px; }
    .wcf-info-table { font-size: 12px; }
    .wcf-info-table th, .wcf-info-table td { padding: 8px 10px; }
    .wcf-rating-box { max-width: 100%; }
}

/* self-hosted fonts */
@font-face{font-family:'Lora';font-style:italic;font-weight:400;font-display:swap;src:url('fonts/Lora-400-italic-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:italic;font-weight:400;font-display:swap;src:url('fonts/Lora-400-italic-latin.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/Lora-400-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/Lora-400-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/Lora-500-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/Lora-500-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/Lora-600-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Lora';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/Lora-600-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/PlayfairDisplay-500-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/PlayfairDisplay-500-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/PlayfairDisplay-600-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/PlayfairDisplay-600-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/PlayfairDisplay-700-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/PlayfairDisplay-700-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:900;font-display:swap;src:url('fonts/PlayfairDisplay-900-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:900;font-display:swap;src:url('fonts/PlayfairDisplay-900-normal-latin.woff2') format('woff2');}

/* anti horizontal-overflow (mobile) */
html,body{max-width:100%;overflow-x:hidden;overflow-x:clip;}
