/* ========================================
   Wild Robin Casino — Main Stylesheet
   Layout: Sidebar + Main Content
   Theme: Warm brown + gold accent (Wild Robin Casino)
   ======================================== */

:root {
    --bg: #2A170B;
    --bg-alt: #331E10;
    --bg-sidebar: #1F1008;
    --bg-card: #3D2515;
    --bg-card-hover: #4A2E1B;
    --bg-input: #251309;
    --bg-section: #2E180E;
    --accent: #E9AF1B;
    --accent-hover: #D4A017;
    --accent-dark: #B8880F;
    --accent-rgb: 233, 175, 27;
    --accent-light: rgba(233, 175, 27, 0.15);
    --blue: #E9AF1B;
    --blue-light: #D4A017;
    --gold: #FFD740;
    --gold-light: #FFE57F;
    --cyan: #FFD740;
    --purple: #1F1008;
    --text: #ffffff;
    --text-light: #F0E0D0;
    --text-muted: #A08060;
    --text-white: #FFFFFF;
    --text-on-card: #F0E0D0;
    --text-on-card-muted: rgba(240,224,208,.7);
    --border: #5A3520;
    --border-light: #6B4530;
    --shadow: rgba(0,0,0,0.4);
    --green: #4CAF50;
    --red: #EF4444;
    --font: 'Roboto', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Roboto', ui-sans-serif, system-ui, sans-serif;
    --sidebar-w: 220px;
    --topbar-h: 60px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: .25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
table { width: 100%; border-collapse: collapse; }

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all var(--transition);
    border: 2px solid transparent; text-transform: uppercase;
    letter-spacing: .04em; text-decoration: none; white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, #E9AF1B, #F0C030); color: #2A170B; border-color: #E9AF1B; }
.btn--primary:hover { background: #B8880F; color: #2A170B; transform: translateY(-1px); }
.btn--outline { background: transparent; color: #E9AF1B; border-color: #E9AF1B; }
.btn--outline:hover { background: #E9AF1B; color: #2A170B; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: rgba(233,175,27,.05); color: var(--text); }
.topbar .btn--ghost, .mobile-header .btn--ghost { color: #F0E0D0; border-color: #5A3520; }
.topbar .btn--ghost:hover, .mobile-header .btn--ghost:hover { background: rgba(255,255,255,.04); color: #F0E0D0; }
.btn--cta {
    background: linear-gradient(135deg, #E9AF1B, #F0C030);
    color: #2A170B; border: 2px solid #E9AF1B; padding: 14px 50px;
    font-size: 16px; border-radius: 30px;
    box-shadow: 0 0 20px rgba(233,175,27,.35), inset 0 1px 0 rgba(255,255,255,.15);
    text-transform: uppercase; letter-spacing: .06em; font-weight: 800;
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(233,175,27,.35), inset 0 1px 0 rgba(255,255,255,.15); }
    50% { transform: scale(1.06); box-shadow: 0 0 36px rgba(233,175,27,.55), 0 0 16px rgba(233,175,27,.3), inset 0 1px 0 rgba(255,255,255,.15); }
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 4px 30px rgba(233,175,27,.5); color: #2A170B; }
.btn--xs { padding: 4px 10px; font-size: 10px; border-radius: 6px; }
.btn--sm { padding: 6px 14px; font-size: 11px; }
.btn--lg { padding: 14px 50px; font-size: 16px; }

/* ====== SIDEBAR ====== */
.sidebar, .footer {
    --text: #F0E0D0;
    --text-light: #F0E0D0;
    --text-muted: #A08060;
    --text-white: #FFFFFF;
    --text-on-card: #F0E0D0;
    --text-on-card-muted: rgba(240,224,208,.7);
    --border: #5A3520;
    --border-light: #6B4530;
    --bg-card: #331E10;
}
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w); background: #1F1008;
    border-right: 1px solid #5A3520;
    display: flex; flex-direction: column;
    z-index: 100; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: #5A3520 transparent;
    box-shadow: 2px 0 12px rgba(0,0,0,.3);
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: #5A3520; border-radius: 4px; }

/* Logo */
.sidebar__logo { padding: 16px 10px; border-bottom: 1px solid #5A3520; }
.sidebar__logo a { display: flex; flex-direction: column; align-items: center; text-decoration: none; width: 100%; }
.logo-text {
    font-family: var(--font-display); font-size: 42px;
    color: #FFFFFF; letter-spacing: .08em; line-height: 1;
}
.logo-text--sm { font-size: 26px; }
.logo-sub {
    font-size: 13px; letter-spacing: 8px; color: #A08060;
    text-transform: uppercase; margin-top: 4px;
}
.logo-img {
    width: 100%; max-width: 140px; height: auto; display: block;
}

/* Nav links */
.sidebar__nav { display: flex; flex-direction: column; gap: 4px; padding: 12px 10px; }
.sidebar__link {
    display: flex; align-items: center;
    padding: 11px 18px; border-radius: var(--radius-sm);
    color: #F0E0D0; font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em;
    background: rgba(233,175,27,.04);
    border: 1px solid #6B4530;
    transition: all var(--transition); text-decoration: none;
}
.sidebar__link:hover {
    color: #D4A017;
    background: rgba(233,175,27,.1);
    border-color: rgba(233,175,27,.4);
    box-shadow: 0 0 12px rgba(233,175,27,.08);
}
.sidebar__link--active {
    color: #E9AF1B;
    background: rgba(233,175,27,.1);
    border-color: rgba(233,175,27,.4);
    box-shadow: 0 0 12px rgba(233,175,27,.08);
}
.sidebar__link--promo {
    background: linear-gradient(135deg, #E9AF1B, #F0C030);
    color: #2A170B;
    border-radius: var(--radius-sm); padding: 14px 12px;
    margin-bottom: 6px; font-weight: 700; font-size: 12px;
    text-transform: uppercase; border: none;
    box-shadow: 0 4px 15px rgba(233,175,27,.3);
}
.sidebar__link--promo:hover {
    background: linear-gradient(135deg, #F0C030, #B8880F);
    color: #2A170B; transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233,175,27,.4);
}
.sidebar__link--promo .sidebar__link-text {
    display: flex; flex-direction: column; line-height: 1.3;
}
.sidebar__link--promo .sidebar__link-text small {
    font-size: 10px; opacity: .8; text-transform: none;
}
.sidebar__link-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar__link--promo .sidebar__link-text { white-space: normal; word-break: break-word; }

/* Sidebar popular games */
.sidebar__section { padding: 16px 10px; border-top: 1px solid #5A3520; }
.sidebar__label {
    font-size: 11px; font-weight: 700; color: #B8880F;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 0 14px 10px;
}
.sidebar__game {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    transition: background var(--transition); text-decoration: none;
    color: #F0E0D0;
}
.sidebar__game:hover { background: rgba(233,175,27,.06); color: #F0E0D0; }
.sidebar__game-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; overflow: hidden;
}
.sidebar__game-icon img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 8px;
}
.sidebar__game-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sidebar__game-info strong { font-size: 15px; color: #F0E0D0; }
.sidebar__game-info small { font-size: 12px; color: #F0E0D0; }
.sidebar__game-play {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent); color: #FFFFFF; font-size: 10px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
}
.sidebar__game:hover .sidebar__game-play { opacity: 1; }

/* Sidebar bottom */
.sidebar__bottom { margin-top: auto; padding: 10px; border-top: 1px solid #5A3520; }
.sidebar__lang {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 14px; font-size: 13px; color: #A08060;
    cursor: pointer;
}
.sidebar__chevron { margin-left: auto; font-size: 11px; }

/* ====== MOBILE HEADER ====== */
.mobile-header {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 56px; background: #1F1008;
    border-bottom: 1px solid #5A3520;
    z-index: 101; padding: 0 16px;
    align-items: center; justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.mobile-header__actions { display: flex; gap: 8px; flex-shrink: 0; }
.mobile-header__actions .btn { white-space: nowrap; font-size: 11px; padding: 6px 12px; }
.mobile-header__logo { display: flex; align-items: center; }
.mobile-header__logo-img { height: 38px; width: auto; max-width: 160px; }

/* Burger */
.burger {
    background: none; border: none; cursor: pointer; padding: 6px;
    display: flex; flex-direction: column; gap: 5px;
}
.burger span {
    display: block; width: 22px; height: 2px; background: #F0E0D0;
    border-radius: 2px; transition: all var(--transition);
}
.burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay */
.overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.6); z-index: 99;
    backdrop-filter: blur(2px);
}
.overlay--visible { display: block; }

/* ====== MAIN WRAPPER ====== */
.main-wrapper {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
}

/* ====== TOPBAR ====== */
.topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px; height: var(--topbar-h); background: #1F1008;
    border-bottom: 1px solid #5A3520;
    position: sticky; top: 0; z-index: 50;
    overflow: visible; gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.topbar__actions { flex-shrink: 0; }
.topbar__search {
    display: flex; align-items: center; gap: 10px;
    background: #331E10; border: 1px solid #5A3520;
    border-radius: 30px; padding: 0 18px; max-width: 380px; flex: 1;
    transition: border-color var(--transition);
}
.topbar__search:focus-within { border-color: var(--accent); }
.topbar__search-icon { opacity: .5; display: flex; align-items: center; color: #A08060; }
.topbar__search-icon svg { width: 16px; height: 16px; fill: currentColor; }
.topbar__input {
    background: none; border: none; outline: none;
    color: #FFFFFF; font-family: var(--font);
    font-size: 14px; width: 100%; padding: 10px 0;
}
.topbar__input::placeholder { color: rgba(255,255,255,.4); }
.topbar__actions { display: flex; gap: 10px; }

/* ====== HERO BANNER ====== */
.hero { padding: 0; }
.hero__banner {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    gap: 20px; padding: 40px 30px;
    background: var(--bg);
    min-height: 500px;
    overflow: hidden;
}
.hero__banner::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: url('../img/header/background-1-small.webp') 75% center / cover no-repeat;
    z-index: 0;
    animation: zeusPulse 3s ease-in-out infinite;
}
@keyframes zeusPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.01); filter: brightness(1.07); }
}
.hero__banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,9,18,0.88) 0%, rgba(4,9,18,0.7) 40%, rgba(4,9,18,0.45) 70%, rgba(4,9,18,0.15) 100%);
    z-index: 1;
}
.hero__banner > * { position: relative; z-index: 2; }
.hero__ninja {
    display: none;
}
.hero__content {
    z-index: 2; flex: 1; min-width: 0;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center;
}
.hero__label {
    font-size: 20px; font-weight: 700; text-transform: uppercase;
    color: #FFFFFF; letter-spacing: .05em; margin-top: 10px; margin-bottom: 16px;
    font-family: var(--font); line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}
.hero__bonus-amount {
    font-family: var(--font-display); font-size: 68px;
    color: var(--gold); line-height: 1; margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7), 0 0 30px rgba(255,215,64,.3), 0 0 40px rgba(0,0,0,0.5);
}
.hero__bonus-amount strong {
    font-size: 80px; color: var(--gold);
}
.hero__bonus-details {
    font-size: 24px; color: #FFFFFF; font-weight: 600;
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}
.hero__percent {
    font-family: var(--font-display); font-size: 120px;
    background: linear-gradient(180deg, #FFD740 0%, #F0C030 50%, #D4A017 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
    filter: drop-shadow(0 4px 20px rgba(255,215,64,.4));
}
.hero__amount {
    font-size: 20px; color: #FFFFFF; font-weight: 600;
    margin: 4px 0 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero__amount span { color: var(--gold); font-size: 28px; font-weight: 800; }
.hero__badges { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.hero__badge {
    display: inline-block; padding: 10px 28px; border-radius: 30px;
    font-size: 16px; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase;
    background: #E9AF1B; color: #2A170B;
    box-shadow: 0 2px 10px rgba(233,175,27,.4);
    animation: welcomePulse 2s ease-in-out infinite;
}
@keyframes welcomePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 10px rgba(233,175,27,.4); }
    50% { transform: scale(1.06); box-shadow: 0 4px 24px rgba(233,175,27,.7), 0 0 16px rgba(233,175,27,.4); }
}
.hero__badge--alt {
    background: rgba(233,175,27,.15); color: var(--blue-light);
    border: 1px solid rgba(233,175,27,.4); box-shadow: none;
}

/* Hero visual — character image */
.hero__sub {
    font-size: 16px; color: #F0E0D0; line-height: 1.5; margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 16px rgba(0,0,0,0.4);
}
.hero__fine-print {
    font-size: 12px; color: rgba(255,255,255,.7); margin-top: 12px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero__fine-print a { color: #FFFFFF; text-decoration: underline; }

/* Spin Wheel */
.spin-wheel {
    position: relative; width: 100%; aspect-ratio: 1; max-width: 400px;
    animation: wheelPulse 2.5s ease-in-out infinite;
}
@keyframes wheelPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(233,175,27,.2)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(233,175,27,.35)); }
}
.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(--gold);
    z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
#wheelCanvas {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 20px rgba(233,175,27,.2)) drop-shadow(0 0 40px rgba(0,0,0,.2));
}
.spin-wheel__btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, #E9AF1B, #B8880F);
    border: 3px solid rgba(255,255,255,.9); color: #FFFFFF;
    font-family: var(--font-display); font-size: 16px; letter-spacing: 1px;
    cursor: pointer; z-index: 10;
    box-shadow: 0 4px 15px rgba(233,175,27,.4), 0 0 30px rgba(0,0,0,.2);
    transition: transform .2s, box-shadow .2s;
}
.spin-wheel__btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(233,175,27,.7);
}
.spin-wheel__btn:disabled {
    opacity: .6; cursor: not-allowed;
    transform: translate(-50%, -50%);
}

/* Spin result popup */
.spin-result {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.6); z-index: 9999;
    align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
}
.spin-result.active { display: flex; }
.spin-result__box {
    background: linear-gradient(160deg, #1F1008 0%, #331E10 100%);
    border: 2px solid var(--gold);
    border-radius: 20px; padding: 44px 36px 32px;
    text-align: center; max-width: 420px; width: 90%;
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(233,175,27,.1);
    position: relative; overflow: hidden;
}
.spin-result__box::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(233,175,27,0.04), transparent, rgba(233,175,27,0.04), transparent);
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { transform: rotate(360deg); } }
@keyframes popIn { from { transform: scale(.7) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.spin-result__confetti {
    font-size: 32px; margin-bottom: 8px;
    animation: bounce 0.6s ease infinite alternate;
}
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-6px); } }
.spin-result__label {
    font-size: 13px; font-weight: 700; letter-spacing: 0.15em;
    color: var(--gold); margin-bottom: 4px;
    position: relative;
}
.spin-result__prize {
    font-family: var(--font-display); font-size: 56px;
    color: var(--gold); margin: 12px 0 4px;
    position: relative;
    text-shadow: 0 0 20px rgba(233,175,27,.4);
}
.spin-result__text {
    color: #F0E0D0; font-size: 16px; margin-bottom: 0;
    position: relative;
}
.spin-result__sub {
    color: var(--text-muted); font-size: 14px; margin-bottom: 16px;
    position: relative;
}
.spin-result__timer {
    font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
    position: relative;
}
.spin-result__timer span {
    color: #e74c3c; font-weight: 700; font-variant-numeric: tabular-nums;
}
.spin-result__btn {
    width: 100%; position: relative;
    animation: pulse-btn 2s ease-in-out infinite;
}
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,175,27,.4); }
    50% { box-shadow: 0 0 0 10px rgba(233,175,27,0); }
}
.spin-result__hint {
    font-size: 11px; color: var(--text-muted); margin-top: 12px;
    position: relative;
}

/* Hero payments */
.hero__payments {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 0 0; flex-wrap: wrap;
}
.pay-badge {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    padding: 4px 8px; border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 26px;
}
.pay-badge svg { display: block; transform: scale(0.75); }
.hero__disclaimer {
    font-size: 11px; color: var(--text-muted); text-align: center;
    margin-top: 10px; opacity: .7;
}
.hero__disclaimer strong { color: var(--gold); }

/* ====== FEATURES ====== */
.features {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 14px; padding: 0 28px 28px;
}
.feature-card {
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius); padding: 22px 16px;
    text-align: center; transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.feature-card:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(233,175,27,.12); }
.feature-card__icon { margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.feature-card__icon svg { width: 36px; height: 36px; }
.feature-card h3 {
    font-size: 14px; font-weight: 700; color: var(--text-white);
    margin-bottom: 6px;
}
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ====== GAME SECTIONS (Slots, Live, Sports) ====== */
.game-section { padding: 14px 28px 20px; border-top: 1px solid #6B4530; }
.game-section:nth-child(even) { background: #331E10; }
.section-header__icon { width: 24px; height: 24px; flex-shrink: 0; }

/* Swiper-style header */
.swiper-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px;
}
.swiper-title {
    display: flex; align-items: center; gap: 10px; min-width: 0;
}
.swiper-title h2 {
    font-size: 18px; font-weight: 700; color: var(--text-white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    text-shadow: none;
}
.swiper-actions {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.swiper-buttons { display: flex; gap: 6px; }
.swiper-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-section); border: 1px solid var(--border);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); padding: 0;
}
.swiper-btn:hover { border-color: var(--accent); color: var(--accent); }
.swiper-btn:disabled { opacity: .3; cursor: default; }
.swiper-btn:disabled:hover { border-color: var(--border); color: var(--text-muted); }
.swiper-btn svg { width: 12px; height: 12px; fill: currentColor; }

/* Game carousel (horizontal scroll) */
/* Big Wins Ticker */
.big-wins-section { margin-top: 16px; margin-bottom: 16px; padding: 0 28px; }
.big-wins-header {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.big-wins-header svg { flex-shrink: 0; vertical-align: middle; }
.big-wins-header h2 {
    font-size: 18px; font-weight: 700; color: var(--text);
    line-height: 1; margin: 0;
    text-shadow: none;
}
.big-wins-section { border-top: 1px solid #6B4530; padding-top: 20px; }
.big-wins-track-wrapper {
    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);
}
.big-wins-track {
    display: flex; gap: 14px;
    animation: bigWinsScroll 25s linear infinite;
    width: max-content;
}
.big-wins-track:hover { animation-play-state: paused; }
@keyframes bigWinsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.big-wins-card {
    display: flex; align-items: center; gap: 12px;
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius-sm); padding: 10px 16px;
    min-width: 240px; flex-shrink: 0;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.big-wins-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.big-wins-card__icon {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.big-wins-card__info {
    display: flex; flex-direction: column; min-width: 0;
}
.big-wins-card__info strong {
    font-size: 13px; color: var(--text-white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.big-wins-card__info small {
    font-size: 11px; color: var(--text-muted);
}
.big-wins-card__amount {
    margin-left: auto; font-size: 15px; font-weight: 700;
    color: var(--green); white-space: nowrap;
}

.game-carousel {
    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;
}
.game-carousel::-webkit-scrollbar { display: none; }
.game-carousel .game-card {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
}

/* Game grid (fallback for other pages) */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 14px;
}
.game-card {
    text-decoration: none; color: var(--text);
    border-radius: var(--radius-sm);
    position: relative;
    transition: transform var(--transition);
}
.game-card:hover {
    transform: translateY(-4px); color: var(--text);
}
.game-card::after {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius-sm);
    border: 3px solid transparent;
    box-shadow: 0 0 20px rgba(233,175,27,.3);
    transition: border-color var(--transition), box-shadow var(--transition);
    pointer-events: none; z-index: 3;
}
.game-card:hover::after {
    border-color: rgba(233,175,27,.9);
    box-shadow: 0 0 20px rgba(233,175,27,.4);
}
.game-card__img {
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    position: relative; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.2), inset 0 -1px 0 rgba(255,255,255,.08);
}
.game-card:hover .game-card__img {
    box-shadow: 0 8px 30px rgba(233,175,27,.15), 0 0 40px rgba(233,175,27,.08);
}
.game-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.game-card__emoji {
    font-size: 52px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
.game-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,9,18,.5) 0%, rgba(4,9,18,.2) 40%, rgba(4,9,18,.05) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
}
.game-card__overlay .play-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #E9AF1B, #B8880F);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(233,175,27,.5);
    transition: transform .2s ease;
}
.game-card__overlay .play-icon svg {
    width: 20px; height: 20px; fill: #FFFFFF; margin-left: 3px;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card:hover .play-icon { transform: scale(1.1); }

/* Live badge */
.game-card__live-badge {
    position: absolute; top: 8px; left: 8px;
    padding: 2px 8px; background: var(--accent); color: #FFFFFF;
    font-size: 10px; font-weight: 700; border-radius: 4px;
    letter-spacing: .5px; z-index: 2;
}
.game-card__info {
    background: #3D2515; padding: 10px 12px;
    display: flex; flex-direction: column;
    border: 1px solid #6B4530; border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.game-card__info strong {
    font-size: 13px; color: var(--text-white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-card__info small { font-size: 11px; color: var(--text-muted); }

/* Sports grid */
.sports-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}
.sport-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 20px 14px;
    text-align: center; display: flex; flex-direction: column;
    align-items: center; gap: 8px; transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.sport-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.sport-card__icon { font-size: 32px; display: block; }
.sport-card strong { font-size: 13px; color: var(--text-on-card); }

/* Provider card */
.provider-card {
    background: #1F1008;
    border: 1px solid #5A3520;
    border-radius: var(--radius-sm); padding: 24px 20px;
    text-align: center; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); cursor: pointer;
    min-height: 80px;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.provider-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(233,175,27,.2); }
.provider-card img { max-width: 100%; max-height: 50px; object-fit: contain; filter: brightness(1.15); }
.provider-card strong { font-size: 15px; color: var(--text); letter-spacing: .03em; }
.game-carousel .provider-card {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
}

/* Sports carousel */
.game-carousel .sport-card {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
}

/* ====== BREADCRUMBS ====== */
.breadcrumbs {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 28px; font-size: 13px; color: var(--text-muted);
    max-width: 900px; margin: 0 auto;
}
.breadcrumbs a {
    color: var(--text-muted); text-decoration: none; transition: color .2s;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs__sep { color: var(--text-muted); opacity: .5; }
.breadcrumbs__current { color: var(--text); }

/* ====== CONTENT SECTIONS (Bonus, Avis, etc.) ====== */
.content-section {
    padding: 40px 28px; border-top: 1px solid #6B4530;
    max-width: 900px; margin: 0 auto; text-align: center;
    background: #2A170B;
}
.content-section h2 {
    font-size: clamp(22px, 3vw, 26px); font-weight: 800;
    color: var(--text-white); margin-bottom: 16px; line-height: 1.3;
    text-align: center;
}
.content-section h3 {
    font-size: 18px; font-weight: 700; color: var(--text-white);
    margin: 28px 0 10px; text-align: left;
    padding-left: 12px; border-left: 3px solid var(--accent);
}
.content-section h1 {
    font-size: clamp(24px, 3.5vw, 32px); font-weight: 800;
    color: var(--text-white); margin-bottom: 20px; line-height: 1.3;
    text-align: center;
}
.content-section p { margin-bottom: 12px; line-height: 1.7; text-align: left; }
.content-section strong { color: var(--accent); }

/* ====== BONUS GRID (bonus.html) ====== */
.bonus-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 10px; margin: 20px 0;
}
.bonus-card {
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius-sm); padding: 18px 10px;
    text-align: center; display: flex; flex-direction: column;
    gap: 4px; transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.bonus-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.bonus-card__step { font-size: 11px; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.bonus-card__percent { font-family: var(--font-display); font-size: 36px; color: var(--gold); line-height: 1; }
.bonus-card__amount { font-size: 12px; color: var(--text-muted); }

/* ====== BONUS TIERS ====== */
.bonus-tiers {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 10px; margin: 20px 0;
}
.bonus-tier {
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius-sm); padding: 18px 10px;
    text-align: center; display: flex; flex-direction: column;
    gap: 4px; transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.bonus-tier:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.bonus-tier__num { font-size: 11px; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.bonus-tier__pct { font-family: var(--font-display); font-size: 36px; color: var(--gold); line-height: 1; }
.bonus-tier__max { font-size: 12px; color: var(--text-muted); }

/* ====== INFO TABLE ====== */
.info-table {
    background: #3D2515; border: 1px solid #6B4530;
    border-radius: var(--radius); overflow: hidden;
    margin: 16px auto;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.info-table th {
    background: #331E10; padding: 12px 18px;
    font-size: 12px; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .5px; text-align: left;
    border-bottom: 1px solid #6B4530;
}
.info-table td {
    padding: 12px 18px; font-size: 14px;
    border-bottom: 1px solid #6B4530;
    color: var(--text);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: #331E10; }
.info-table strong { color: var(--text-on-card); }

/* ====== RATING BOX ====== */
.rating-box {
    background: linear-gradient(135deg, var(--gold), #D4A017);
    border-radius: var(--radius); padding: 28px;
    text-align: center; max-width: 240px; margin: 20px auto;
}
.rating-box__score {
    font-family: var(--font-display); font-size: 52px;
    color: #fff; line-height: 1;
}
.rating-box__score span { font-size: 24px; opacity: .5; }
.rating-box__stars { font-size: 20px; color: #fff; margin: 6px 0; letter-spacing: 3px; }
.rating-box__text { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 600; }

/* ====== PROS / CONS ====== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.pros-box, .cons-box {
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius); padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid var(--red); }
.pros-box h2 { color: var(--green); margin: 0 0 14px; font-size: 16px; }
.cons-box h2 { color: var(--red); margin: 0 0 14px; font-size: 16px; }
.pros-box li, .cons-box li {
    padding: 6px 0 6px 24px; font-size: 13px;
    border-bottom: 1px solid var(--border); position: relative;
    color: var(--text);
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.pros-box li::before {
    content: '+'; position: absolute; left: 0;
    color: var(--green); font-weight: 700; font-size: 16px;
}
.cons-box li::before {
    content: '\2212'; position: absolute; left: 0;
    color: var(--red); font-weight: 700; font-size: 16px;
}

/* ====== STEPS ====== */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 20px 0; }
.step-item {
    background: #3D2515; border: 1px solid #6B4530;
    border-radius: var(--radius-sm); padding: 20px 14px; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); color: #FFFFFF; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 10px;
}
.step-item strong { display: block; margin-bottom: 6px; font-size: 14px; color: var(--text-on-card); }
.step-item p { font-size: 12px; color: var(--text-on-card-muted); margin: 0; line-height: 1.4; }

/* ====== REVIEW CARDS ====== */
.review-card {
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius-sm);
    padding: 24px; margin-bottom: 16px;
    transition: border-color var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.review-card:hover { border-color: var(--gold); }
.review-card__avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}
.review-card__avatar svg { width: 26px; height: 26px; fill: #FFFFFF; }
.review-card__header {
    text-align: center; margin-bottom: 6px;
}
.review-card__header strong { color: var(--accent); font-size: 15px; }
.review-card__header span { color: var(--text-muted); font-size: 13px; margin-left: 8px; }
.review-card__rating {
    text-align: center; font-size: 16px; color: var(--gold);
    margin-bottom: 12px;
}
.review-card__rating span { color: var(--text-muted); font-size: 13px; margin-left: 6px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; text-align: left; }

/* ====== CTA BLOCK ====== */
.cta-block { text-align: center; margin: 28px 0 10px; }

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.faq-item {
    background: #3D2515;
    border: 1px solid #6B4530;
    border-radius: var(--radius-sm); overflow: hidden;
    transition: border-color var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item__q {
    padding: 14px 20px; font-weight: 600; font-size: 14px;
    color: var(--text-white); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between;
    align-items: center; transition: background var(--transition);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
    content: '+'; font-size: 20px; color: var(--gold);
    font-weight: 300; flex-shrink: 0; margin-left: 14px;
    transition: transform var(--transition);
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { background: rgba(233,175,27,.04); }
.faq-item__a { padding: 0 20px 16px; }
.faq-item__a p {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.7; margin: 0;
}

/* ====== SEO CONTENT BLOCK ====== */
.seo-block { padding: 40px 28px; max-width: 900px; margin: 0 auto; }
.seo-block__title {
    font-family: var(--font-display); font-size: 22px; color: var(--text-white);
    margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #6B4530;
}
.seo-block__content { margin-bottom: 36px; }
.seo-block__content p {
    font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px;
}
.seo-block__content h3 {
    font-size: 17px; color: var(--text-white); margin: 24px 0 10px; font-weight: 600;
    padding-left: 12px; border-left: 3px solid var(--accent);
}
.seo-block__content strong { color: var(--accent); }
.content-section strong.accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.seo-faq { display: flex; flex-direction: column; gap: 12px; }
.seo-faq__item {
    background: #3D2515; border: 1px solid #6B4530;
    border-radius: 12px; padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.seo-faq__q { font-size: 15px; color: var(--text-on-card); margin: 0 0 8px; font-weight: 600; }
.seo-faq__a p { font-size: 13px; color: var(--text-on-card-muted); line-height: 1.7; margin: 0; }

/* ====== FOOTER ====== */
.footer {
    padding: 40px 28px 24px;
    border-top: 2px solid rgba(233,175,27,.3);
    background: #1F1008;
    color: #F0E0D0;
}
.footer, .footer a, .footer span, .footer p, .footer li,
.footer .footer__desc, .footer .footer__disclaimer,
.footer .footer__copy, .footer .footer__nav a,
.footer .footer__providers span { color: #A08060; }
.footer h4, .footer .footer__heading, .footer strong,
.footer .footer__age { color: #F0E0D0; }
.footer .footer__nav a:hover { color: #E9AF1B; }
.footer .footer__badge { background: #331E10; border-color: #5A3520; color: #A08060; }
.footer .footer__badges .footer__age { border-color: var(--red); color: var(--red); }
.footer__top {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 30px; margin-bottom: 28px;
}
.footer__brand { max-width: 400px; }
.footer__logo-img { height: 80px; width: auto; display: block; }
.footer__desc {
    margin-top: 10px; font-size: 13px;
    color: var(--text-muted); line-height: 1.6;
}
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__nav .footer__heading {
    display: block;
}
.footer__nav .footer__heading, .footer__nav h4 {
    font-size: 10px; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a { font-size: 13px; color: var(--text-muted); }
.footer__nav a:hover { color: #E9AF1B; }

.footer__providers {
    display: flex; flex-wrap: wrap; gap: 14px;
    padding: 18px 0; border-top: 1px solid #5A3520;
    border-bottom: 1px solid #5A3520;
}
.footer__providers span {
    font-size: 11px; color: var(--text-muted);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: .05em; opacity: .6;
}
.footer__pays {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 16px 0; border-bottom: 1px solid #5A3520;
}
.footer__bottom { padding-top: 18px; }
.footer__badges {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
}
.footer__age {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 2px solid var(--red);
    border-radius: 50%; color: var(--red);
    font-size: 13px; font-weight: 800;
}
.footer__badge {
    font-size: 11px; padding: 4px 10px;
    background: #331E10; border: 1px solid #5A3520;
    border-radius: 4px; color: #A08060;
}
.footer__disclaimer {
    font-size: 11px; color: var(--text-muted);
    line-height: 1.7; opacity: .6; margin-bottom: 10px;
}
.footer__copy { font-size: 11px; color: var(--text-muted); opacity: .4; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1080px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition), visibility 0s linear var(--transition);
        z-index: 200;
        visibility: hidden;
    }
    .sidebar--open { transform: translateX(0); visibility: visible; transition: transform var(--transition), visibility 0s linear 0s; }
    .mobile-header { display: flex; }
    .main-wrapper { margin-left: 0; }
    main { padding-top: 56px; }
    .topbar { display: none; }
    .hero { padding: 0; }
    .hero__banner {
        flex-direction: column; gap: 0; padding: 20px 12px;
        min-height: auto; justify-content: center;
    }
    .hero__banner::after { background-position: center center; background-size: cover; }
    .hero__banner::before { background: rgba(4, 9, 18, 0.75); }
    .hero__ninja { display: none; }
    .hero__content { padding: 0; }
    .hero__percent { font-size: 70px; }
    .hero__bonus-amount { font-size: 42px; }
    .hero__bonus-amount strong { font-size: 50px; }
    .hero__bonus-details { font-size: 18px; }
    .spin-wheel { width: 180px; height: 180px; }
    .spin-wheel__btn { width: 56px; height: 56px; font-size: 13px; }
    .features { grid-template-columns: 1fr 1fr; padding: 0 12px 12px; }
    .game-section { padding: 10px 12px 14px; }
    .game-carousel .game-card { flex: 0 0 calc((100% - 36px) / 4); }
    .game-carousel .sport-card { flex: 0 0 calc((100% - 36px) / 4); }
    .game-carousel .provider-card { flex: 0 0 calc((100% - 36px) / 4); }
    .swiper-title h2 { font-size: 16px; }
    .content-section { padding: 16px 12px; }
    .seo-block { padding: 24px 12px; }
    .bonus-tiers { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
    .pros-cons { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    .footer { padding: 16px 12px 14px; }
    .footer__top { flex-direction: column; gap: 20px; }
    .footer__logo-img { height: 70px; }
}

@media (max-width: 600px) {
    .hero__banner {
        min-height: 520px; padding: 0 12px 24px; justify-content: flex-end;
    }
    .hero__banner::after {
        background-image: url('../img/header/header-phone.webp');
        background-position: center top;
        background-size: cover;
        inset: 0;
        animation: none;
    }
    .hero__banner::before {
        background: linear-gradient(to top, rgba(4,9,18,0.95) 15%, rgba(4,9,18,0.82) 45%, rgba(4,9,18,0.55) 70%, rgba(4,9,18,0.3) 100%);
    }
    .hero__label { font-size: 18px; }
    .hero__bonus-amount { font-size: 32px; }
    .hero__bonus-amount strong { font-size: 38px; }
    .hero__bonus-details { font-size: 14px; }
    .hero__sub { font-size: 14px; }
    .spin-wheel { width: 140px; height: 140px; }
    .spin-wheel__btn { width: 50px; height: 50px; font-size: 12px; border-width: 2px; }
    .spin-wheel__pointer { border-left-width: 10px; border-right-width: 10px; border-top-width: 22px; top: -14px; }
    .spin-result__box { padding: 28px 20px; margin: 0 16px; }
    .spin-result__prize { font-size: 36px; }
    .hero__badge { font-size: 10px; padding: 4px 10px; }
    .btn--cta { padding: 10px 24px; font-size: 13px; }
    .features { grid-template-columns: 1fr; }
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .game-carousel .game-card { flex: 0 0 calc((100% - 12px) / 2.2); }
    .game-carousel .sport-card { flex: 0 0 calc((100% - 12px) / 2.5); }
    .game-carousel .provider-card { flex: 0 0 calc((100% - 12px) / 2.5); min-height: 100px; }
    .swiper-title h2 { font-size: 14px; }
    .swiper-btn { width: 32px; height: 32px; }
    .bonus-tiers { grid-template-columns: 1fr 1fr; }
    .bonus-grid { grid-template-columns: 1fr 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-card { padding: 16px; }
    .content-section h2 { font-size: 20px; }
    .btn--cta { padding: 12px 30px; font-size: 14px; max-width: 100%; white-space: normal; word-break: break-word; }
    .btn { max-width: 100%; white-space: normal; word-break: break-word; }
    .info-table { display: block; overflow-x: auto; }
}
