:root {
    --bg: #0b0820;
    --bg-2: #120f2e;
    --bg-3: #1a1540;
    --card: #17123a;
    --card-2: #201a4d;
    --border: #2a2560;
    --text: #eaeafc;
    --muted: #9a97c7;
    --primary: #ffb400;
    --primary-2: #ff8a00;
    --accent: #ff3b7a;
    --accent-2: #7a3bff;
    --green: #21d07a;
    --red: #ff4d6d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(255, 138, 0, 0.14), transparent 60%),
        radial-gradient(900px 600px at -10% 20%, rgba(122, 59, 255, 0.18), transparent 60%);
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(11, 8, 32, 0.78);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img { height: 40px; width: auto; }

.nav {
    display: flex;
    gap: 6px;
    margin-left: 20px;
    flex: 1;
}

.nav a {
    padding: 8px 14px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s, background .2s;
}

.nav a:hover, .nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: transform .15s, box-shadow .2s, filter .2s;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #1a0f00;
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-lg { padding: 15px 32px; font-size: 16px; }

.burger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    position: relative;
}
.burger span::before, .burger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ===== Hero ===== */
.hero {
    padding: 40px 0 30px;
    position: relative;
}

.hero-card {
    position: relative;
    border-radius: 24px;
    padding: 48px 56px;
    background:
        linear-gradient(135deg, rgba(11, 8, 32, 0.55) 0%, rgba(11, 8, 32, 0.35) 50%, rgba(122, 59, 255, 0.35) 100%),
        url('../img/background.webp') center/cover no-repeat;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    min-height: 360px;
}

.hero-card::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.45), transparent 65%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 44px;
    background: linear-gradient(135deg, #ff3b7a, #ffb400);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(255, 59, 122, 0.45);
    transform: rotate(-3deg);
    color: #1a0f00;
    font-weight: 900;
    text-align: center;
    animation: wobble 5s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-8px); }
}

.bonus-badge .big { font-size: 76px; line-height: 1; letter-spacing: -2px; }
.bonus-badge .small { font-size: 18px; margin-top: 6px; opacity: 0.85; }
.bonus-badge .plus { font-size: 40px; margin: 6px 0; }

/* ===== Win Ticker ===== */
.ticker {
    margin-top: 24px;
    background: rgba(11, 8, 32, 0.6);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-label {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #1a0f00;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e91e1e;
    border-radius: 50%;
    box-shadow: 0 0 10px #e91e1e;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.ticker-track {
    display: flex;
    gap: 28px;
    padding: 12px 18px;
    animation: slide 40s linear infinite;
    white-space: nowrap;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    padding: 4px 10px 4px 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.ticker-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--card);
}

.ticker-item .player { color: var(--text); font-weight: 600; }
.ticker-item .game { color: var(--muted); }
.ticker-item .amount { color: var(--primary); font-weight: 800; margin-left: 2px; }

/* ===== Sections ===== */
.section { padding: 56px 0; }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.section h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section h2 .accent {
    color: var(--primary);
}

.section-sub {
    color: var(--muted);
    font-size: 15px;
    margin-top: 6px;
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.section-link:hover { color: var(--primary-2); }

/* ===== Category chips ===== */
.chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 20px;
    scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }

.chip {
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

.chip:hover { color: var(--text); border-color: var(--primary); }
.chip.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #1a0f00;
    border-color: transparent;
    font-weight: 700;
}

/* ===== Games grid ===== */
.games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.game {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.game:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 14px 28px rgba(255, 138, 0, 0.25);
}

.game-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.game:hover .game-thumb { transform: scale(1.06); }

.game-body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 12px 12px;
    background: linear-gradient(180deg, transparent, rgba(11, 8, 32, 0.92));
}

.game-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 12px;
    color: var(--muted);
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}
.game-badge.hot { background: linear-gradient(135deg, #ff3b7a, #ff8a00); color: #fff; }
.game-badge.new { background: linear-gradient(135deg, #21d07a, #0a8a50); color: #fff; }
.game-badge.top { background: linear-gradient(135deg, #ffb400, #ff8a00); color: #1a0f00; }

.game-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 8, 32, 0.7);
    opacity: 0;
    transition: opacity .2s;
}

.game:hover .game-play { opacity: 1; }

.game-play .play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(255, 138, 0, 0.45);
}

.game-play .play-btn::before {
    content: '';
    border-left: 16px solid #1a0f00;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

/* ===== Features/Providers ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.feature {
    padding: 26px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s, transform .2s;
}

.feature:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.feature .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.2), rgba(255, 59, 122, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 26px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.feature p {
    color: var(--muted);
    font-size: 14px;
}

/* ===== Bonuses ===== */
.bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.bonus-card {
    position: relative;
    padding: 28px;
    background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s, border-color .2s;
}

.bonus-card:hover { transform: translateY(-4px); border-color: var(--primary); }

.bonus-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.22), transparent 70%);
}

.bonus-card .pct {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

/* ===== Live dealer cards ===== */
.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.live-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform .2s, border-color .2s;
}
.live-card:hover { transform: translateY(-3px); border-color: var(--primary); }

.live-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    transition: transform .35s ease;
}

.live-card:hover .live-thumb { transform: scale(1.06); }

.live-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, transparent, rgba(11, 8, 32, 0.92));
}

.live-info .live-title { font-weight: 700; font-size: 16px; }
.live-info .live-meta { color: var(--muted); font-size: 13px; margin-top: 2px; }

.live-tag {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(233, 30, 30, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}
.live-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item:hover { border-color: var(--primary); }

.faq-item summary {
    list-style: none;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 26px;
    color: var(--primary);
    font-weight: 300;
    transition: transform .2s;
    line-height: 0.8;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* ===== Article / Text ===== */
.article {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 0;
}

.article h2 { margin: 28px 0 14px; font-size: 26px; }
.article h3 { margin: 22px 0 10px; font-size: 20px; color: var(--primary); }
.article p { color: var(--muted); margin-bottom: 14px; font-size: 15.5px; }
.article ul { margin: 8px 0 18px 22px; color: var(--muted); }
.article ul li { margin-bottom: 6px; }
.article ol { margin: 8px 0 18px 22px; color: var(--muted); }
.article ol li { margin-bottom: 6px; }

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 50px 30px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(122, 59, 255, 0.25), rgba(255, 59, 122, 0.2) 50%, rgba(255, 180, 0, 0.25)),
        var(--card);
    border: 1px solid var(--border);
    margin: 40px 0;
}

.cta h2 { font-size: 32px; margin-bottom: 12px; }
.cta p { color: var(--muted); margin-bottom: 22px; }

/* ===== Footer ===== */
.footer {
    margin-top: 60px;
    padding: 40px 0 24px;
    background: rgba(6, 4, 20, 0.75);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 28px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    color: var(--muted);
}

.footer-col a {
    display: block;
    color: var(--text);
    font-size: 14px;
    padding: 5px 0;
    opacity: 0.8;
    transition: opacity .2s, color .2s;
}

.footer-col a:hover { opacity: 1; color: var(--primary); }

.footer-about p {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}

.age-badge {
    width: 38px;
    height: 38px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--red);
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav { display: none; }
    .burger { display: flex; }

    .hero-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
        min-height: auto;
    }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .bonus-badge { margin: 0 auto; transform: rotate(-2deg) scale(0.9); }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .header-actions .btn-ghost { display: none; }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bonus-badge .big { font-size: 56px; }
    .games { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 40px 0; }
}

/* ===== SEO article block ===== */
.seo-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 10px 0;
}

.seo-page__header { margin-bottom: 18px; }

.seo-page__title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.seo-page__lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.seo-page__section { margin-top: 22px; }

.seo-page__heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.seo-page__text {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.seo-page__note {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.seo-page__link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 180, 0, 0.4);
    transition: color .2s, border-color .2s;
}

.seo-page__link:hover {
    color: var(--primary-2);
    border-bottom-color: var(--primary-2);
}

/* SEO FAQ */
.seo-faq {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-faq__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.seo-faq__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

.seo-faq__item:hover { border-color: var(--primary); }

.seo-faq__question {
    list-style: none;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.seo-faq__question::-webkit-details-marker { display: none; }

.seo-faq__question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    line-height: 0.8;
    transition: transform .2s;
}

.seo-faq__item[open] .seo-faq__question::after { transform: rotate(45deg); }

.seo-faq__answer {
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* SEO internal links nav */
.seo-links {
    margin-top: 36px;
    padding: 22px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.seo-links__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.seo-links__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px 18px;
}

.seo-links__item { padding: 4px 0; }

.seo-links__link {
    color: var(--text);
    font-size: 14.5px;
    border-bottom: 1px dashed transparent;
    transition: color .2s, border-color .2s;
}

.seo-links__link::before {
    content: '→ ';
    color: var(--primary);
    margin-right: 2px;
}

.seo-links__link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Wins board (grid list) */
.wins-board {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.wins-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color .2s, transform .2s;
}
.wins-row:hover { border-color: var(--primary); transform: translateX(3px); }

.wins-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--card);
    border: 1px solid var(--border);
}

.wins-main { flex: 1; min-width: 0; }
.wins-name { font-weight: 600; font-size: 14px; }
.wins-game { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wins-amount { color: var(--primary); font-weight: 800; font-size: 15px; white-space: nowrap; }

/* Mobile nav drawer */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 40;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu a.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary);
}
