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

:root {
    --c-bg: #09101D;
    --c-header: #0D111C;
    --c-btn-login: #1F2941;
    --c-btn-reg: #FF36AF;
    --c-btn-reg-hover: #e0278f;
    --c-text: #E8ECF4;
    --c-text-muted: #8896B3;
    --c-border: #1E2A42;
    --c-card: #111827;
    --c-card2: #0F1929;
    --c-accent: #FF36AF;
    --c-accent2: #3B7BFF;
    --c-success: #22C55E;
    --c-gold: #F5A623;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --transition: 0.22s ease;
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
}

body {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--c-accent2);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-accent);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-text);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
    color: var(--c-text);
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.4rem;
}

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

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

.container--wide {
    max-width: 1400px;
}

.box {
    padding: 0;
}

.section {
    padding: 48px 0;
}

.section--sm {
    padding: 28px 0;
}

.section--lg {
    padding: 72px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn--login {
    background: var(--c-btn-login);
    color: var(--c-text);
    border: 1px solid #2A3555;
}

.btn--login:hover {
    background: #283354;
    color: var(--c-text);
}

.btn--reg {
    background: var(--c-btn-reg);
    color: #fff;
}

.btn--reg:hover {
    background: var(--c-btn-reg-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 54, 175, 0.35);
}

.btn--primary {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn--primary:hover {
    background: var(--c-btn-reg-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 54, 175, 0.4);
}

.btn--secondary {
    background: var(--c-btn-login);
    color: var(--c-text);
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid #2A3555;
}

.btn--secondary:hover {
    background: #283354;
    color: var(--c-text);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

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

.btn--outline:hover {
    background: var(--c-btn-reg);
    color: #fff;
}

.btn--gold {
    background: var(--c-gold);
    color: #0D111C;
    font-weight: 700;
}

.btn--gold:hover {
    background: #e8950e;
    color: #0D111C;
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 64px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--c-text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
}

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

.online-count {
    font-size: 0.72rem;
    color: var(--c-success);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.online-count::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: var(--c-btn-login);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

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

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 12px 16px 16px;
    gap: 4px;
}

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

.mobile-menu a {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D111C 0%, #091020 60%, #120819 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-at.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 16, 29, 0.92) 0%, rgba(9, 16, 29, 0.55) 60%, rgba(9, 16, 29, 0.2) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 54, 175, 0.15);
    border: 1px solid rgba(255, 54, 175, 0.3);
    color: var(--c-accent);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-highlight {
    color: var(--c-accent);
}

.hero p {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

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

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--c-text-muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--c-accent);
}

.breadcrumbs-sep {
    color: var(--c-border);
}

.breadcrumbs-current {
    color: var(--c-text);
}

/* ===== CARDS & BLOCKS ===== */
.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(255, 54, 175, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card2 {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
}

.block-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-title-icon {
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 32px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 8px;
}

.section-header p {
    color: var(--c-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== JACKPOT BLOCK ===== */
.jackpot-block {
    background: linear-gradient(135deg, #1a0a2e 0%, #0D111C 100%);
    border: 1px solid rgba(255, 54, 175, 0.25);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jackpot-block::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 54, 175, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    color: var(--c-text);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.jackpot-amount span {
    color: var(--c-accent);
}

.jackpot-sub {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* ===== MIRROR TABLE ===== */
.mirror-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(30, 42, 66, 0.6);
    vertical-align: middle;
    text-align: left;
    color: var(--c-text);
}

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

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

.data-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.01);
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
}

.status-dot::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-success);
}

.mirror-link {
    color: var(--c-accent2);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.82rem;
}

.mirror-link:hover {
    color: var(--c-accent);
    text-decoration: underline;
}

/* ===== WINNERS BLOCK ===== */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: all var(--transition);
}

.winner-item:hover {
    border-color: rgba(255, 54, 175, 0.25);
}

.winner-rank {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-text-muted);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.winner-rank.gold {
    color: var(--c-gold);
}

.winner-rank.silver {
    color: #A8B5CC;
}

.winner-rank.bronze {
    color: #C9834A;
}

.winner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-login), var(--c-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-nick {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-amount {
    font-size: 0.78rem;
    color: var(--c-success);
    font-weight: 600;
}

/* ===== SLOT MINI GAME ===== */
.slot-game {
    background: linear-gradient(135deg, #0D111C, #14183a);
    border: 2px solid rgba(255, 54, 175, 0.2);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: var(--c-header);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.1s;
    user-select: none;
}

.slot-reel.spinning {
    animation: slotSpin 0.15s steps(1) infinite;
}

@keyframes slotSpin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.85);
    }
    100% {
        transform: scaleY(1);
    }
}

.slot-btn {
    background: var(--c-btn-reg);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
}

.slot-btn:hover {
    background: var(--c-btn-reg-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 54, 175, 0.3);
}

.slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slot-result {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: none;
}

.slot-result.win {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--c-success);
}

.slot-result.lose {
    display: block;
    background: rgba(255, 54, 175, 0.08);
    border: 1px solid rgba(255, 54, 175, 0.2);
    color: var(--c-text-muted);
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(255, 54, 175, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text);
    gap: 12px;
    user-select: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 54, 175, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--c-accent);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid var(--c-border);
}

.faq-item.open .faq-answer {
    display: block;
    padding-top: 14px;
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

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

.bonus-card:hover {
    border-color: rgba(255, 54, 175, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.bonus-card-top {
    background: linear-gradient(135deg, #1F2941, #111827);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bonus-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 54, 175, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bonus-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.bonus-card-sub {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.bonus-card-body {
    padding: 16px 20px;
    flex: 1;
}

.bonus-card-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.bonus-card-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 0;
}

.bonus-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--c-border);
}

/* ===== PROMO CODE ===== */
.promo-accent {
    background: linear-gradient(135deg, #1a0a2e 0%, #0D111C 100%);
    border: 2px solid rgba(255, 54, 175, 0.35);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.promo-code-display {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--c-header);
    border: 2px dashed rgba(255, 54, 175, 0.4);
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    margin: 16px 0;
}

.promo-code-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--c-accent);
    font-family: monospace;
}

.promo-copy-btn {
    background: var(--c-btn-reg);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.promo-copy-btn:hover {
    background: var(--c-btn-reg-hover);
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    margin: 20px 0;
}

/* ===== TOC ===== */
.toc-block {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 6px;
}

.toc-list a {
    color: var(--c-accent2);
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toc-list a:hover {
    color: var(--c-accent);
}

.toc-list a::before {
    content: '—';
    color: var(--c-border);
    font-size: 0.7rem;
}

/* ===== AUTHOR BLOCK ===== */
.author-block {
    display: flex;
    gap: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    align-items: flex-start;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--c-btn-login), var(--c-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.author-name {
    font-weight: 700;
    margin-bottom: 3px;
}

.author-role {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.author-bio {
    font-size: 0.84rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.55;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--c-accent2);
}

.author-link:hover {
    color: var(--c-accent);
}

/* ===== DOWNLOAD BUTTONS ===== */
.download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-btn-login);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    text-decoration: none;
    color: var(--c-text);
    transition: all var(--transition);
    min-width: 160px;
}

.dl-btn:hover {
    border-color: rgba(255, 54, 175, 0.4);
    background: #283354;
    color: var(--c-text);
    transform: translateY(-2px);
}

.dl-btn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dl-btn-sub {
    font-size: 0.7rem;
    color: var(--c-text-muted);
}

.dl-btn-title {
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== SLIDER ===== */
.slider-wrap {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.slider-track::-webkit-scrollbar {
    height: 4px;
}

.slider-track::-webkit-scrollbar-track {
    background: var(--c-header);
}

.slider-track::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 2px;
}

.slider-track > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.advantage-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}

.advantage-item:hover {
    border-color: rgba(255, 54, 175, 0.25);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 54, 175, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.advantage-title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.advantage-desc {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin: 0;
}

/* ===== PROVIDER CARDS (slots page) ===== */
.providers-grid.providers-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.provider-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center;
    transition: all var(--transition);
}

.provider-card:hover {
    border-color: rgba(255, 54, 175, 0.3);
    transform: translateY(-2px);
}

.provider-logo {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px;
}

.provider-count {
    font-size: 0.75rem;
    color: var(--c-accent);
    font-weight: 600;
}

/* ===== SLOT CATEGORIES CARDS ===== */
.slot-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.slot-cat-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    display: block;
    color: var(--c-text);
}

.slot-cat-card:hover {
    border-color: rgba(255, 54, 175, 0.35);
    transform: translateY(-2px);
    color: var(--c-text);
}

.slot-cat-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.slot-cat-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.slot-cat-count {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

/* ===== RTP BADGE ===== */
.rtp-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.rtp-high {
    background: rgba(34, 197, 94, 0.15);
    color: var(--c-success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.rtp-mid {
    background: rgba(245, 166, 35, 0.15);
    color: var(--c-gold);
    border: 1px solid rgba(245, 166, 35, 0.3);
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #0D111C 0%, #1a0a2e 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 16px;
    box-shadow: 0 -4px 24px rgba(255, 54, 175, 0.2);
}

.sticky-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-widget-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.sticky-widget-text strong {
    font-size: 0.88rem;
    color: var(--c-text);
}

.sticky-widget-text span {
    font-size: 0.78rem;
    color: var(--c-accent);
}

.sticky-widget-btn {
    flex-shrink: 0;
}

.sticky-widget-close {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    flex-shrink: 0;
    transition: color var(--transition);
}

.sticky-widget-close:hover {
    color: var(--c-text);
}

/* ===== TECHNICAL PAGE LAYOUT ===== */
.technical-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.technical-h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
}

.technical-content h2 {
    font-size: 1.2rem;
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-border);
}

.technical-content h3 {
    font-size: 1.05rem;
    margin: 18px 0 8px;
    color: var(--c-text);
}

.technical-content p {
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.technical-content ul, .technical-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.technical-content li {
    color: var(--c-text-muted);
    margin-bottom: 5px;
}

.technical-content strong {
    color: var(--c-text);
    font-weight: 700;
}

.technical-content a {
    color: var(--c-accent2);
    text-decoration: underline;
}

.technical-content a:hover {
    color: var(--c-accent);
}

.sidebar-nav .toc-list li {
    margin-bottom: 6px;
}

.sidebar-nav .toc-list a {
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .technical-layout {
        grid-template-columns: 1fr;
    }

    .technical-sidebar {
        order: -1;
    }
}

/* ===== PROVIDERS ===== */
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.provider-badge {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.provider-badge:hover {
    border-color: rgba(255, 54, 175, 0.3);
    color: var(--c-text);
}

/* ===== RTP TABLE ===== */
.rtp-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.rtp-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rtp-bar-fill {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--c-accent2), var(--c-accent));
    min-width: 4px;
}

/* ===== SLOT CATEGORIES ===== */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.cat-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.cat-card:hover {
    border-color: rgba(255, 54, 175, 0.35);
    transform: translateY(-2px);
}

.cat-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.cat-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

/* ===== REGISTRATION METHODS ===== */
.reg-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.reg-method {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    transition: all var(--transition);
}

.reg-method:hover {
    border-color: rgba(255, 54, 175, 0.3);
}

.reg-method-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.reg-method-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.reg-method-desc {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin: 0;
}

/* ===== CONTENT BLOCK (голые теги) ===== */
.content-body h2 {
    font-size: 1.4rem;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
}

.content-body h3 {
    font-size: 1.15rem;
    margin: 22px 0 10px;
    color: var(--c-text);
}

.content-body h4 {
    font-size: 1rem;
    margin: 18px 0 8px;
    color: var(--c-text);
}

.content-body p {
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.content-body ul, .content-body ol {
    padding-left: 1.6rem;
    margin-bottom: 1rem;
}

.content-body li {
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.content-body a {
    color: var(--c-accent2);
    text-decoration: underline;
}

.content-body a:hover {
    color: var(--c-accent);
}

.content-body strong, .content-body b {
    color: var(--c-text);
    font-weight: 700;
}

.content-body em, .content-body i {
    color: var(--c-text-muted);
}

.content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(255, 54, 175, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-body blockquote p {
    margin: 0;
    color: var(--c-text-muted);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
}

.content-body table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
}

.content-body table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
}

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

.content-body img {
    border-radius: var(--radius-sm);
    margin: 12px 0;
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

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

.footer-main {
    padding: 40px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.footer-logo img {
    height: 36px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 240px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--c-text);
}

.footer-payments {
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

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

.payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: 0.03em;
}

.footer-bottom {
    padding: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
}

.footer-legal {
    font-size: 0.72rem;
    color: #5A6A88;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

/* ===== WIDGET ===== */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #0D111C 0%, #1a0a2e 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(255, 54, 175, 0.2);
}

.widget-text {
    font-size: 0.85rem;
    color: var(--c-text);
    font-weight: 600;
    flex: 1;
    min-width: 0;
}

.widget-text span {
    color: var(--c-accent);
}

.widget-close {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}

.widget-close:hover {
    color: var(--c-text);
}

/* ===== OFFICIAL LINK BLOCK ===== */
.official-block {
    background: linear-gradient(135deg, #0a1020, #111827);
    border: 1px solid rgba(59, 123, 255, 0.3);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BONUS DEPOSIT BLOCK ===== */
.bonus-deposit {
    background: linear-gradient(135deg, #1a0a2e 0%, #111827 100%);
    border: 1px solid rgba(255, 54, 175, 0.25);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-deposit-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1;
    white-space: nowrap;
}

.bonus-deposit-info {
    flex: 1;
}

.bonus-deposit-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bonus-deposit-sub {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin: 0;
}

/* ===== UTILS ===== */
.text-accent {
    color: var(--c-accent);
}

.text-gold {
    color: var(--c-gold);
}

.text-muted {
    color: var(--c-text-muted);
}

.text-success {
    color: var(--c-success);
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-100 {
    width: 100%;
}

.main-content {
    flex: 1;
}

/* ===== HIDDEN WP ASSETS ===== */
.wp-block-spacer {
    display: none;
    height: 0;
    overflow: hidden;
}

.wp-block-separator {
    border: none;
}

.elementor-invisible {
    display: none;
}

#wpadminbar {
    display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease both;
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease both;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}

.anim-delay-2 {
    animation-delay: 0.2s;
}

.anim-delay-3 {
    animation-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 32px 0;
    }

    .section--lg {
        padding: 48px 0;
    }

    .hero {
        min-height: 360px;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .author-block {
        flex-direction: column;
    }

    .bonus-deposit {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .bottom-widget {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

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

    .slot-reel {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

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

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

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }
}

.mobile-menu {
    display: none;
}

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