@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');

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

:root {
    --color-header: #0D111C;
    --color-footer: #0D111C;
    --color-bg: #09101D;
    --color-btn-login: #1F2941;
    --color-btn-reg: #FF36AF;
    --color-accent: #FF36AF;
    --color-accent2: #4A90E2;
    --color-text: #E8EAF0;
    --color-text-muted: #8A9BB5;
    --color-border: #1E2A40;
    --color-card: #0F1827;
    --color-card2: #111926;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ff69c4;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

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

.container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.btn:active {
    transform: translateY(0);
}

.btn--login {
    background: var(--color-btn-login);
    color: #fff;
    border: 1px solid #2d3f5e;
}

.btn--reg {
    background: var(--color-btn-reg);
    color: #fff;
    box-shadow: 0 0 16px rgba(255, 54, 175, 0.4);
}

.btn--reg:hover {
    box-shadow: 0 6px 24px rgba(255, 54, 175, 0.6);
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn--xl {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius);
}

header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

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

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

.header-nav a {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.header-nav a:hover, .header-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

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

.online-count {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ECC71;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0f1e35 50%, #09101D 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    z-index: 0;
}

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

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

.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(--color-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero p {
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.breadcrumbs {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
}

.breadcrumbs li + li::before {
    content: '/';
    color: var(--color-border);
}

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

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

.breadcrumbs li:last-child {
    color: var(--color-text);
}

.section {
    padding: 56px 0;
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 28px;
}

.block--accent {
    background: linear-gradient(135deg, #12203a 0%, #0f1827 100%);
    border-color: rgba(255, 54, 175, 0.25);
}

.block--pink {
    background: linear-gradient(135deg, rgba(255, 54, 175, 0.1) 0%, rgba(255, 54, 175, 0.03) 100%);
    border: 1px solid rgba(255, 54, 175, 0.3);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s;
}

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

.advantage-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.advantage-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.jackpot-block {
    background: linear-gradient(135deg, #12203a 0%, #1a0f2e 100%);
    border: 1px solid rgba(255, 54, 175, 0.4);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jackpot-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 54, 175, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.jackpot-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(255, 54, 175, 0.4);
    font-variant-numeric: tabular-nums;
    transition: all 0.5s;
}

.jackpot-currency {
    font-size: 24px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.jackpot-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.jackpot-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.jackpot-item .j-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.jackpot-item .j-val {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.2s;
}

.screenshot-item:hover {
    transform: scale(1.02);
}

.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.winners-table th {
    text-align: left;
    padding: 12px 14px;
    background: var(--color-card2);
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid var(--color-border);
}

.winners-table td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
    vertical-align: middle;
}

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

.winner-rank {
    font-weight: 700;
    color: var(--color-text-muted);
}

.winner-rank--1 {
    color: #FFD700;
}

.winner-rank--2 {
    color: #C0C0C0;
}

.winner-rank--3 {
    color: #CD7F32;
}

.winner-amount {
    font-weight: 700;
    color: #2ECC71;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 54, 175, 0.35);
    box-shadow: 0 8px 32px rgba(255, 54, 175, 0.12);
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 54, 175, 0.15);
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.bonus-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    flex: 1;
    line-height: 1.55;
}

.bonus-btn {
    background: var(--color-btn-reg);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: opacity 0.2s, transform 0.15s;
}

.bonus-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.slot-game {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

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

.slot-reel {
    width: 70px;
    height: 90px;
    background: #0a1628;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
    position: relative;
}

.slot-reel.spinning {
    animation: spinReel 0.15s linear infinite;
}

@keyframes spinReel {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-result {
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.slot-result-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    display: none;
}

.slot-result-text.win {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.slot-result-text.lose {
    display: block;
    color: var(--color-text-muted);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slot-get-btn {
    display: none;
    background: var(--color-btn-reg);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
    animation: fadeInUp 0.4s ease;
}

.slot-get-btn.visible {
    display: inline-block;
}

.slot-spin-btn {
    background: var(--color-btn-login);
    color: #fff;
    border: 1px solid #2d3f5e;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.slot-spin-btn:hover {
    background: #283452;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.review-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

.review-author {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.review-stars {
    color: #FFD700;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.review-form {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 560px;
}

.review-form h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: #0a1628;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--color-text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent2);
}

textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-sm);
    color: #2ECC71;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.content-review {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 28px;
}

.content-review h2 {
    font-size: 22px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.content-review h3 {
    font-size: 18px;
    margin: 20px 0 10px;
}

.content-review p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.content-review ul, .content-review ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.content-review li {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 6px;
}

.content-review a {
    color: var(--color-accent2);
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.content-review table th {
    background: var(--color-card2);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
    font-weight: 600;
}

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

footer {
    background: var(--color-footer);
    border-top: 1px solid var(--color-border);
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.footer-payments {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-bottom: 20px;
}

.footer-payments h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

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

.payment-badge, .provider-badge {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--color-accent);
}

.footer-license {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.widget-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-btn-reg) 0%, #d4008f 100%);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    box-shadow: 0 -4px 20px rgba(255, 54, 175, 0.3);
}

.widget-cta-text {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.widget-cta-text span {
    opacity: 0.85;
    font-weight: 400;
    font-size: 13px;
}

.widget-cta-btn {
    background: #fff;
    color: var(--color-accent);
    font-weight: 800;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.widget-cta-btn:hover {
    opacity: 0.9;
    color: var(--color-accent);
    text-decoration: none;
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    margin-left: 16px;
    line-height: 1;
}

body.has-widget {
    padding-bottom: 60px;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    font-size: 14px;
}

.data-table th {
    background: var(--color-card2);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    vertical-align: middle;
}

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

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

.data-table .check {
    color: #2ECC71;
    font-size: 16px;
}

.data-table .cross {
    color: #E74C3C;
    font-size: 16px;
}

.promo-block {
    background: linear-gradient(135deg, rgba(255, 54, 175, 0.12) 0%, rgba(74, 144, 226, 0.08) 100%);
    border: 2px dashed rgba(255, 54, 175, 0.4);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    margin-bottom: 28px;
}

.promo-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.promo-code-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #0a1628;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
}

.promo-code-text {
    padding: 12px 20px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 3px;
    font-family: 'Roboto', monospace;
}

.promo-copy-btn {
    background: var(--color-btn-login);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: var(--color-text-muted);
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    border-left: 1px solid var(--color-border);
}

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

.promo-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

.author-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-top: 28px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-border);
    flex-shrink: 0;
}

.author-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 4px 0 0;
    line-height: 1.5;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.author-link {
    font-size: 13px;
    color: var(--color-accent2);
    text-decoration: none;
}

.sliders-section {
    position: relative;
}

.swiper-container {
    overflow: hidden;
    border-radius: var(--radius);
}

.swiper-wrapper-items {
    display: flex;
    gap: 20px;
    transition: transform 0.35s ease;
}

.swiper-item {
    min-width: 280px;
    flex: 0 0 280px;
}

.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.2s;
}

.swiper-dot.active {
    background: var(--color-accent);
}

.reg-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.reg-method {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

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

.reg-method-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.reg-method h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.reg-method p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.mirrors-table-block .datetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    color: #2ECC71;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.mirror-trouble {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
}

.mirror-trouble h3 {
    margin-bottom: 18px;
    font-size: 18px;
}

.mirror-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mirror-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-btn-login);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.mirror-option-btn:hover {
    border-color: var(--color-accent);
    background: rgba(255, 54, 175, 0.1);
    color: #fff;
    text-decoration: none;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.provider-card {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: border-color 0.2s, color 0.2s;
}

.provider-card:hover {
    border-color: var(--color-accent2);
    color: #fff;
}

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.rtp-table th {
    background: var(--color-card2);
    padding: 11px 14px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.rtp-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--color-border);
}

.rtp-bar {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    width: 100px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent2) 0%, #2ECC71 100%);
    border-radius: 3px;
}

.download-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 14px 22px;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.download-btn:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.download-btn-icon {
    font-size: 24px;
}

.download-btn-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.download-btn-text span {
    font-size: 12px;
    color: var(--color-text-muted);
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.alternative-card {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s;
}

.alternative-card:hover {
    border-color: var(--color-accent2);
}

.alternative-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.alternative-card p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.app-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.req-block {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 22px;
}

.req-block h3 {
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.req-block ul {
    list-style: none;
}

.req-block ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-muted);
}

.req-block ul li:last-child {
    border-bottom: none;
}

.req-block ul li strong {
    color: #fff;
}

.bonus-get-block {
    background: linear-gradient(135deg, #12203a 0%, #0f1827 100%);
    border: 1px solid rgba(255, 54, 175, 0.3);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
}

.bonus-get-block h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.bonus-amount-big {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(255, 54, 175, 0.3);
    margin: 12px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.step-text h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.tech-content {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px;
    line-height: 1.75;
}

.tech-content h2 {
    font-size: 22px;
    margin: 24px 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.tech-content h2:first-child {
    margin-top: 0;
}

.tech-content h3 {
    font-size: 17px;
    margin: 18px 0 8px;
}

.tech-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.tech-content ul, .tech-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.tech-content li {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    line-height: 1.65;
}

.advantages-reg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.adv-reg-item {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 22px;
}

.adv-reg-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.adv-reg-item p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.fade-in {
    animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fa, .fb {
    display: none;
}

.xb3k91 {
    font-size: 0;
}

.wp-dummy {
    display: none;
    visibility: hidden;
}

.elementor-hidden {
    display: none;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top > :first-child {
        grid-column: 1 / -1;
    }

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

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        padding: 12px 16px;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(9, 16, 29, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        z-index: 999;
        padding: 20px;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        font-size: 18px;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

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

    .burger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .online-count {
        display: none;
    }

    .advantages-grid,
    .bonuses-grid,
    .grid-3,
    .screenshots-grid,
    .reviews-grid,
    .reg-methods,
    .advantages-reg,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .jackpot-items,
    .alternatives-grid,
    .app-requirements {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .block {
        padding: 20px 16px;
    }

    .widget-cta {
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .widget-cta-text {
        font-size: 13px;
    }

    .mirror-options {
        flex-direction: column;
    }

    .mirror-option-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .jackpot-amount {
        font-size: 36px;
    }

    .bonus-amount-big {
        font-size: 38px;
    }

    .download-btns {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .container,
    .container--wide {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .hero {
        min-height: 320px;
    }

    .hero-content {
        max-width: 100%;
        padding: 42px 0 34px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn,
    .btn--xl,
    .btn--lg,
    .promo-block .btn,
    .bonus-get-block .btn {
        width: 100%;
        min-height: 44px;
        padding: 13px 16px;
        font-size: 13px;
    }

    .block,
    .promo-block,
    .bonus-get-block,
    .mirror-trouble,
    .content-review,
    .author-block {
        padding: 22px 16px;
        margin-bottom: 18px;
        border-radius: 10px;
    }

    .bonus-get-block h2,
    .section-title,
    .content-review h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .bonus-amount-big {
        font-size: 34px;
        line-height: 1.1;
    }

    .bonuses-grid,
    .steps-grid,
    .providers-grid,
    .reg-methods,
    .advantages-grid,
    .advantages-reg,
    .app-requirements,
    .alternatives-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-item,
    .bonus-card,
    .provider-card,
    .reg-method {
        padding: 16px;
        border-radius: 10px;
    }

    .table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--color-border);
        border-radius: 10px;
    }

    .data-table,
    .rtp-table {
        display: table !important;
        width: max-content !important;
        min-width: 620px !important;
        border-collapse: collapse;
        table-layout: auto;
    }

    .data-table thead,
    .rtp-table thead {
        display: table-header-group !important;
    }

    .data-table tbody,
    .rtp-table tbody {
        display: table-row-group !important;
    }

    .data-table tr,
    .rtp-table tr {
        display: table-row !important;
    }

    .data-table th,
    .data-table td,
    .rtp-table th,
    .rtp-table td {
        display: table-cell !important;
        padding: 9px 10px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        white-space: nowrap;
        text-align: left !important;
    }

    .data-table td::before,
    .rtp-table td::before {
        content: none !important;
    }

    .widget-cta {
        left: 12px;
        right: 12px;
        bottom: 10px;
        border-radius: 10px;
        padding: 10px;
    }

    .widget-cta-text {
        font-size: 11px;
        line-height: 1.3;
    }

    .widget-cta-btn {
        width: 100%;
        padding: 9px 12px;
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .logo img {
        height: 34px;
    }

    .header-inner {
        padding: 10px 12px;
    }

    .header-actions .btn {
        width: auto;
        min-height: 30px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .hero h1 {
        font-size: 23px;
    }

    .hero p {
        font-size: 12px;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.wrapper,
main,
.hero,
.container,
.container--wide {
    max-width: 100vw;
}

@media (max-width: 1024px) {
    .container,
    .container--wide {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero {
        min-height: 300px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 36px 0 30px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.12;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.45;
    }

    .block,
    .promo-block,
    .bonus-get-block,
    .mirror-trouble,
    .content-review,
    .author-block {
        padding: 20px 14px;
        margin-bottom: 16px;
    }

    .table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .data-table,
    .rtp-table {
        width: 620px !important;
        min-width: 620px !important;
        max-width: none !important;
    }
}