/* ============ RESET & BASE ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: #0c0314;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { max-width: 100%; display: block; }
input { font-family: inherit; }

:root {
    --bg: #0c0314;
    --bg-1: #160726;
    --bg-2: #1d0a2f;
    --surface: #1a0828;
    --surface-2: #25103a;
    --pink: #ff1b6b;
    --pink-2: #ff4b8d;
    --pink-glow: rgba(255, 27, 107, .55);
    --purple: #7e2bd1;
    --gold: #ffc24b;
    --muted: #a290b3;
    --border: rgba(255, 255, 255, .06);
    --radius: 14px;
}

/* Subtle starry / grid background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% -10%, rgba(255, 27, 107, .18), transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(126, 43, 209, .15), transparent 50%),
        radial-gradient(ellipse at 80% 110%, rgba(255, 27, 107, .12), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* ============ LAYOUT ============ */
.layout {
    display: flex;
    min-height: 100vh;
}

/* ============ MOBILE TOP BAR ============ */
.mobile-bar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, #14041f 0%, #0c0314 100%);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.menu-toggle {
    width: 36px; height: 32px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    padding: 0;
}
.menu-toggle span {
    height: 2.5px;
    background: var(--pink);
    border-radius: 2px;
    transition: .25s;
}
.mobile-logo { display: flex; align-items: center; gap: 4px; font-weight: 900; font-size: 22px; letter-spacing: -.5px; }
.mobile-login {
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 22px -8px var(--pink-glow);
}

/* ============ SIDEBAR ============ */
.sidebar {
    width: 230px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #160726 0%, #0c0314 100%);
    padding: 18px 14px 24px;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) transparent;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

.logo-block {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff1b6b, #ff4b8d);
    color: #fff;
    border-radius: 6px;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 16px -4px var(--pink-glow);
    transform: skewX(-6deg);
}
.logo-text, .logo-text-full {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -.5px;
}
.logo-text-full { font-size: 15px; letter-spacing: 1px; }

.side-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255, 27, 107, .25), rgba(126, 43, 209, .15));
    border: 1px solid rgba(255, 27, 107, .35);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 14px;
    transition: .2s;
}
.side-cta:hover { background: linear-gradient(90deg, rgba(255, 27, 107, .45), rgba(126, 43, 209, .25)); }

.side-section { margin-bottom: 14px; }
.side-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 0 6px 8px;
}

.app-buttons { display: flex; gap: 6px; }
.app-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
    transition: .2s;
}
.app-btn:hover { background: rgba(255, 27, 107, .12); border-color: var(--pink); }
.app-ico { color: var(--pink); font-size: 14px; }

.social-row { display: flex; gap: 6px; padding: 0 4px; }
.social-btn {
    flex: 1;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    transition: .2s;
    text-transform: uppercase;
}
.social-btn:hover { transform: translateY(-2px); }

.side-nav { display: flex; flex-direction: column; gap: 2px; }
.side-nav__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    color: #e0d7e8;
    transition: .2s;
    position: relative;
}
.side-nav__item:hover { background: rgba(255, 27, 107, .12); color: #fff; }
.side-nav__item.active {
    background: linear-gradient(90deg, rgba(255, 27, 107, .25), transparent);
    color: #fff;
}
.side-nav__item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; bottom: 8px;
    width: 3px;
    background: var(--pink);
    border-radius: 0 3px 3px 0;
}
.caret { margin-left: auto; opacity: .6; font-size: 10px; }
.side-divider { height: 1px; background: var(--border); margin: 8px 0; }

.ico {
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
    font-size: 14px;
}
.ico-shield::before { content: '🛡'; }
.ico-trophy::before { content: '🏆'; }
.ico-fire::before   { content: '🔥'; }
.ico-dice::before   { content: '🎲'; }
.ico-gift::before   { content: '🎁'; }
.ico-calendar::before{ content: '📅'; }
.ico-cup::before    { content: '🏺'; }
.ico-sword::before  { content: '⚔'; }
.ico-chat::before   { content: '💬'; }
.ico-info::before   { content: 'ⓘ'; }
.ico-globe::before  { content: '🌐'; }

/* sidebar backdrop for mobile */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 40;
}
.sidebar-backdrop.show { display: block; }

/* ============ MAIN ============ */
.main {
    flex: 1;
    min-width: 0;
    padding: 18px 24px 60px;
}

/* ============ TOP BAR ============ */
.top-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.top-logo {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.5px;
}
.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 8px 0 16px;
    transition: .2s;
    max-width: 100%;
}
.search-box:focus-within {
    background: rgba(255, 255, 255, .08);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 27, 107, .15);
}
.search-box input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 11px 0;
    font-size: 14px;
}
.search-box input::placeholder { color: var(--muted); }
.search-box button {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--pink);
    border-radius: 8px;
    transition: .2s;
}
.search-box button:hover { background: rgba(255, 27, 107, .15); }

.top-actions { display: flex; align-items: center; gap: 10px; }

.vip-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 27, 107, .15);
    border: 1px solid rgba(255, 27, 107, .35);
    color: var(--pink-2);
    font-size: 12px;
    font-weight: 700;
}
.vip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    transition: .2s;
    cursor: pointer;
    border: 0;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.btn-primary {
    background: linear-gradient(90deg, var(--pink) 0%, var(--pink-2) 100%);
    color: #fff;
    box-shadow: 0 8px 22px -8px var(--pink-glow);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px -8px var(--pink-glow), 0 0 0 2px rgba(255, 27, 107, .4);
}
.btn-ghost {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--pink); }
.btn-lg { padding: 14px 32px; font-size: 14px; }

/* ============ HERO GRID ============ */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 2fr 1.4fr;
    gap: 14px;
    margin-bottom: 14px;
}
.hero-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2a1140, #1a0828);
    transition: .25s;
    isolation: isolate;
}
.hero-card--mobile { aspect-ratio: 1 / 1; }
.hero-card--bonus { aspect-ratio: 16 / 9; }
.hero-card--social {
    background: linear-gradient(135deg, #ff1b6b 0%, #7e2bd1 100%);
    aspect-ratio: 16 / 9;
}
.hero-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px var(--pink-glow); }
.hero-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12, 3, 20, .85) 100%);
    z-index: 1;
}
.hero-card__overlay--social {
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .15), transparent 50%),
        linear-gradient(135deg, rgba(255, 27, 107, .2) 0%, rgba(126, 43, 209, .3) 100%);
}
.hero-card__content {
    position: relative;
    z-index: 2;
    padding: 16px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-title {
    font-size: clamp(20px, 2.3vw, 32px);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .6);
    letter-spacing: -.5px;
}
.hero-sub {
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 800;
    color: var(--pink-2);
    text-shadow: 0 0 18px var(--pink-glow);
}
.hero-cta {
    align-self: flex-start;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .12);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.hero-card h3 {
    margin: 0;
    font-size: clamp(13px, 1.3vw, 18px);
    font-weight: 800;
    line-height: 1.15;
}
.hero-card h3 small { font-size: .7em; opacity: .8; font-weight: 600; display: block; margin-top: 4px; }

.badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(6px);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.badge-pink { background: linear-gradient(90deg, #ff1b6b, #ff4b8d); }
.badge-purple { background: linear-gradient(90deg, #7e2bd1, #a35cf0); }

.social-mini { display: flex; gap: 6px; margin-top: 10px; }
.social-mini span {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
}

/* ============ EVENT GRID ============ */
.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.event-card {
    display: flex;
    align-items: stretch;
    background: linear-gradient(90deg, #1d0a2f 0%, #2a1140 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: .25s;
}
.event-card:hover { transform: translateY(-2px); border-color: rgba(255, 27, 107, .4); }
.event-card__info {
    padding: 14px 18px;
    display: flex; flex-direction: column; justify-content: center;
    gap: 6px;
    flex: 1;
}
.event-card__title { font-size: 18px; font-weight: 800; }
.event-card__date { color: var(--muted); font-size: 12px; }
.event-card__art {
    width: 45%;
    min-height: 100px;
    background: linear-gradient(135deg, #3a1855 0%, #5b1f8a 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #ffd35e;
    font-weight: 900;
    text-align: center;
    overflow: hidden;
}
.event-art--novomatic {
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 193, 7, .25), transparent 60%),
        linear-gradient(135deg, #4a2208 0%, #823c0e 100%);
}
.event-art--pragmatic {
    background:
        radial-gradient(circle at 70% 50%, rgba(255, 27, 107, .35), transparent 60%),
        linear-gradient(135deg, #2a1058 0%, #5b1f8a 100%);
}
.art-slot { display: flex; gap: 4px; font-size: 22px; }
.art-prize { font-size: 16px; color: #ffd35e; text-shadow: 0 0 8px rgba(255, 211, 94, .6); }
.art-label { font-size: 14px; line-height: 1; color: #fff; }

/* ============ CATEGORY TABS ============ */
.cat-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(255, 27, 107, .08), rgba(126, 43, 209, .05));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #d8c5e4;
    flex-shrink: 0;
    transition: .2s;
}
.cat-tab:hover { background: rgba(255, 27, 107, .12); color: #fff; }
.cat-tab.active {
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    color: #fff;
    box-shadow: 0 6px 16px -6px var(--pink-glow);
}
.cat-flag::before { content: '⛳'; }
.cat-spacer { flex: 1; }
.cat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: .2s;
    flex-shrink: 0;
}
.cat-icon:hover { background: rgba(255, 27, 107, .15); color: var(--pink); }

/* ============ SECTIONS ============ */
.games-section { margin-bottom: 28px; }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.section-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.title-ico { color: var(--pink); }
.link-all {
    color: var(--pink-2);
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.link-all:hover { text-decoration: underline; }
.section-nav { display: flex; gap: 6px; }
.section-nav button {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    transition: .2s;
}
.section-nav button:hover { background: var(--pink); border-color: var(--pink); }

/* ============ GAMES GRID ============ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.game {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .25s;
    position: relative;
}
.game:hover { transform: translateY(-4px); }
.game__thumb {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 22px -10px rgba(0, 0, 0, .8);
    isolation: isolate;
}
.game__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(0, 0, 0, .4), transparent 50%);
    z-index: 0;
}
.game__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, transparent 50%);
    opacity: 0;
    transition: .25s;
    z-index: 1;
}
.game:hover .game__thumb::after { opacity: 1; }
.game__emoji {
    font-size: clamp(36px, 6vw, 60px);
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .6));
    line-height: 1;
}
.game__label {
    z-index: 2;
    font-weight: 900;
    font-size: clamp(11px, 1.2vw, 14px);
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .8);
    color: #fffdd0;
    text-align: center;
    padding: 0 6px;
}
.game__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: .25s;
    background: rgba(12, 3, 20, .6);
    backdrop-filter: blur(4px);
}
.game:hover .game__play { opacity: 1; }
.game__play span {
    padding: 10px 22px;
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    box-shadow: 0 8px 22px -6px var(--pink-glow);
}
.game__info {
    padding: 8px 4px 0;
}
.game__name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game__provider {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============ DUEL BANNER ============ */
.duel-banner {
    background:
        radial-gradient(circle at 0% 50%, rgba(255, 27, 107, .35), transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(126, 43, 209, .3), transparent 50%),
        linear-gradient(90deg, #1d0a2f, #2a1140);
    border: 1px solid rgba(255, 27, 107, .25);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 8px 0 28px;
}
.duel-banner__title {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 24px var(--pink-glow);
    background: linear-gradient(90deg, #fff, #ffd5e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============ PROVIDERS ============ */
.providers { margin-bottom: 30px; }
.providers-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.provider {
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    color: #d8c5e4;
    transition: .2s;
}
.provider:hover { border-color: var(--pink); color: #fff; background: rgba(255, 27, 107, .1); }

/* ============ SEO TEXT ============ */
.seo-text {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 12px 0 28px;
    color: #d8c5e4;
    line-height: 1.7;
}
.seo-text h1 {
    font-size: clamp(20px, 2.4vw, 28px);
    margin: 0 0 16px;
    color: #fff;
    font-weight: 900;
}
.seo-text h2 {
    font-size: clamp(16px, 1.8vw, 20px);
    margin: 24px 0 10px;
    color: #fff;
    font-weight: 800;
}
.seo-text p { margin: 0 0 12px; }
.seo-text strong { color: var(--pink-2); }

.faq { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.faq details {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    transition: .2s;
}
.faq details[open] { background: rgba(255, 27, 107, .06); border-color: rgba(255, 27, 107, .25); }
.faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    list-style: none;
    position: relative;
    padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 22px;
    font-weight: 300;
    transition: .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 10px 0 0; color: var(--muted); }

/* ============ FOOTER ============ */
.footer {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    margin-top: 30px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 24px;
}
.footer-col h4 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}
.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 13px;
    padding: 4px 0;
    transition: .2s;
}
.footer-col a:hover { color: var(--pink-2); }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-about { color: var(--muted); font-size: 12px; margin: 0; }
.pay-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-row span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, .06);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #d8c5e4;
    border: 1px solid var(--border);
}
.footer-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}
.footer-bottom p { margin: 0; }
.age-18 {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--pink);
    color: var(--pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
}

/* ============ FLOATING ============ */
.float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 30;
}
.float-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, .6);
    transition: .2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn--chat {
    background: #fff;
    color: #0c0314;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
    .games-grid { grid-template-columns: repeat(5, 1fr); }
    .providers-row { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-card--mobile { display: none; }
    .games-grid { grid-template-columns: repeat(4, 1fr); }
    .providers-row { grid-template-columns: repeat(4, 1fr); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 13px; }
    .mobile-bar { display: flex; }
    .layout { display: block; }
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        z-index: 60;
        transform: translateX(-100%);
        transition: transform .3s ease;
        padding-top: 24px;
    }
    .sidebar.open { transform: translateX(0); }
    .main { padding: 14px 12px 60px; }
    .top-bar { gap: 8px; }
    .top-logo { display: none; }
    .top-actions .btn-ghost { display: none; }
    .vip-pill { display: none; }
    .search-box { padding: 0 6px 0 12px; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-card--mobile, .hero-card--bonus, .hero-card--social { display: block; aspect-ratio: 16 / 9; }
    .hero-card--mobile { display: none; }

    .event-grid { grid-template-columns: 1fr; gap: 10px; }
    .event-card__art { width: 40%; }

    .cat-tabs { padding: 6px; }
    .cat-tab { padding: 8px 12px; font-size: 12px; }

    .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .game__name { font-size: 12px; }
    .game__provider { font-size: 10px; }

    .providers-row { grid-template-columns: repeat(3, 1fr); }

    .duel-banner { padding: 20px; flex-direction: column; text-align: center; gap: 14px; }

    .seo-text { padding: 20px 16px; font-size: 13px; }

    .footer-cols { grid-template-columns: 1fr; gap: 24px; }

    .float-btn { width: 44px; height: 44px; font-size: 16px; }
}

@media (max-width: 480px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .providers-row { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 22px; }
    .hero-sub { font-size: 16px; }
    .top-actions .btn { padding: 9px 14px; font-size: 12px; }
}

/* Smooth scroll & focus accessibility */
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; border-radius: 4px; }
