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

:root {
    --color-bg: #10151c;
    --color-header: #1c202b;
    --color-btn-primary: #3deb51;
    --color-btn-secondary: #052c18;
    --color-text: #e8eaf0;
    --color-text-muted: #8a9ab5;
    --color-accent: #3deb51;
    --color-accent-gold: #f0c040;
    --color-border: #252d3d;
    --color-card: #161c28;
    --color-card-hover: #1e2738;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 20px rgba(61, 235, 81, 0.2);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Roboto', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #5cf570;
}

ul {
    list-style: none;
}

.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 {
    border-radius: var(--radius-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: var(--color-btn-primary);
    color: #0a1a10;
    box-shadow: 0 0 16px rgba(61, 235, 81, 0.3);
}

.btn--primary:hover {
    background: #50f565;
    color: #0a1a10;
    box-shadow: 0 0 28px rgba(61, 235, 81, 0.55);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--color-btn-secondary);
    color: #b8f0c0;
    border: 1px solid #0e5a2e;
}

.btn--secondary:hover {
    background: #0a3d20;
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

.btn--outline:hover {
    background: rgba(61, 235, 81, 0.08);
    box-shadow: var(--shadow-glow);
}

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

.btn--sm {
    padding: 7px 14px;
    font-size: 13px;
}

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

.section-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.25;
}

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

.section-head {
    margin-bottom: 36px;
}

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

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 48px 0;
}

/* ======================== HEADER ======================== */

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: nowrap;
}

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-accent);
    background: rgba(61, 235, 81, 0.08);
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

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

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

.online-counter .dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.online-counter .count {
    color: var(--color-accent);
    font-weight: 600;
}

.casino-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 500;
    background: rgba(61, 235, 81, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(61, 235, 81, 0.2);
}

.casino-status .dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

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

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

.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);
}

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

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.mobile-menu a:hover {
    color: var(--color-accent);
    background: rgba(61, 235, 81, 0.06);
    border-left-color: var(--color-accent);
}

.mobile-menu a svg {
    width: 18px;
    height: 18px;
}

/* ======================== HERO ======================== */

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/luckywave-banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 21, 28, 0.92) 0%, rgba(16, 21, 28, 0.65) 60%, rgba(16, 21, 28, 0.4) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(61, 235, 81, 0.12);
    border: 1px solid rgba(61, 235, 81, 0.3);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 17px;
    color: #c8d0de;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-promo {
    background: rgba(28, 32, 43, 0.85);
    border: 1px solid rgba(61, 235, 81, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.hero-promo-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.hero-promo-code {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-accent-gold);
    letter-spacing: 0.12em;
    font-family: var(--font-main);
}

.hero-promo-bonus {
    font-size: 13px;
    color: var(--color-text-muted);
}

.hero-promo-bonus span {
    color: var(--color-accent);
    font-weight: 600;
}

.copy-btn {
    margin-left: auto;
    background: var(--color-btn-secondary);
    border: 1px solid #0e5a2e;
    color: var(--color-accent);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font-main);
}

.copy-btn:hover {
    background: #0a3d20;
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

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

/* ======================== JACKPOTS ======================== */

.jackpot-section {
    padding: 64px 0;
}

.jackpot-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #161c28 0%, #1a2235 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-gold));
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(61, 235, 81, 0.2);
}

.jackpot-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.jackpot-name {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--color-accent-gold);
    font-variant-numeric: tabular-nums;
}

.jackpot-change {
    font-size: 11px;
    color: var(--color-accent);
    margin-top: 4px;
}

/* ======================== MIRRORS ======================== */

.mirrors-section {
    padding: 0 0 64px;
}

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.mirrors-timestamp {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mirrors-timestamp svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 560px;
    background: var(--color-card);
}

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

.mirrors-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text);
    vertical-align: middle;
}

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

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.status-badge.active {
    background: rgba(61, 235, 81, 0.12);
    color: var(--color-accent);
    border: 1px solid rgba(61, 235, 81, 0.25);
}

.status-badge.active .dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-badge.inactive {
    background: rgba(255, 80, 80, 0.1);
    color: #ff8080;
}

/* ======================== BONUSES ======================== */

.bonuses-section {
    padding: 0 0 64px;
}

.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.bonus-card {
    flex: 1;
    min-width: 260px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.bonus-card:hover::after {
    opacity: 1;
}

.bonus-card--featured {
    border-color: rgba(61, 235, 81, 0.35);
    background: linear-gradient(160deg, #161c28 0%, #1a2810 100%);
    box-shadow: 0 0 30px rgba(61, 235, 81, 0.12);
}

.bonus-tag {
    display: inline-block;
    background: rgba(61, 235, 81, 0.15);
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.bonus-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.bonus-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.bonus-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.bonus-terms {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 16px;
    opacity: 0.7;
}

.bonuses-slider-wrap {
    display: none;
}

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

.bonuses-slider::-webkit-scrollbar {
    display: none;
}

.bonuses-slider .bonus-card {
    scroll-snap-align: start;
    flex: 0 0 85%;
}

/* ======================== SLOT GAME ======================== */

.slot-section {
    padding: 0 0 64px;
}

.slot-machine {
    background: linear-gradient(160deg, #161c28, #1a2235);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-card), 0 0 60px rgba(61, 235, 81, 0.08);
    position: relative;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3deb51, #f0c040, #3deb51);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.slot-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.slot-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

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

.reel {
    width: 80px;
    height: 96px;
    background: var(--color-header);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition);
}

.reel.spinning {
    border-color: var(--color-accent);
    animation: reelSpin 0.15s linear infinite;
}

.reel.win {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 16px rgba(240, 192, 64, 0.4);
}

@keyframes reelSpin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    75% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-result {
    min-height: 60px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slot-win-msg {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent-gold);
    animation: fadeInUp 0.4s ease;
}

.slot-lose-msg {
    font-size: 15px;
    color: var(--color-text-muted);
}

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

.slot-credits {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.slot-credits span {
    color: var(--color-accent);
    font-weight: 600;
}

/* ======================== REVIEW CONTENT ======================== */

.review-section {
    padding: 0 0 64px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 32px;
}

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

.review-author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.review-author-title {
    font-size: 13px;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.review-author-bio {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.review-author-links {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.review-author-links a {
    font-size: 13px;
    color: var(--color-accent);
}

.review-content-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    line-height: 1.7;
}

.review-content-block h1, .review-content-block h2, .review-content-block h3,
.review-content-block h4, .review-content-block h5, .review-content-block h6 {
    font-weight: 700;
    color: var(--color-text);
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-content-block h1 {
    font-size: 26px;
}

.review-content-block h2 {
    font-size: 22px;
    color: var(--color-accent);
}

.review-content-block h3 {
    font-size: 18px;
}

.review-content-block h4 {
    font-size: 16px;
}

.review-content-block p {
    margin-bottom: 16px;
    color: var(--color-text);
    font-size: 15px;
}

.review-content-block a {
    color: var(--color-accent);
    text-decoration: underline;
}

.review-content-block a:hover {
    color: #5cf570;
}

.review-content-block strong {
    color: #fff;
    font-weight: 600;
}

.review-content-block em {
    color: var(--color-text-muted);
    font-style: italic;
}

.review-content-block ul, .review-content-block ol {
    margin: 12px 0 20px 0;
    padding-left: 24px;
}

.review-content-block ul {
    list-style: none;
    padding-left: 0;
}

.review-content-block ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 15px;
}

.review-content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
}

.review-content-block ol {
    list-style: decimal;
}

.review-content-block ol li {
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 15px;
}

.review-content-block ol li::marker {
    color: var(--color-accent);
    font-weight: 600;
}

.review-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-content-block table th {
    background: var(--color-header);
    color: var(--color-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

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

.review-content-block table tr:last-child td {
    border-bottom: none;
}

.review-content-block table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.review-content-block blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(61, 235, 81, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.review-content-block hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 28px 0;
}

.review-content-block img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

/* ======================== REGISTRATION STEPS ======================== */

.steps-section {
    padding: 0 0 64px;
}

.steps-grid {
    display: flex;
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-gold));
    z-index: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-card);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(61, 235, 81, 0.2);
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ======================== REVIEWS ======================== */

.testimonials-section {
    padding: 0 0 64px;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.review-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

.review-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.review-card-date {
    font-size: 12px;
    color: var(--color-text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--color-accent-gold);
}

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

.review-form-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    max-width: 640px;
}

.review-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.review-form-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.form-field {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-input, .form-textarea {
    width: 100%;
    background: var(--color-header);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(61, 235, 81, 0.12);
}

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

.form-input::placeholder, .form-textarea::placeholder {
    color: #4a5568;
}

.form-success {
    display: none;
    background: rgba(61, 235, 81, 0.08);
    border: 1px solid rgba(61, 235, 81, 0.25);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--color-accent);
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
}

.form-success.visible {
    display: block;
}

/* ======================== FAQ ======================== */

.faq-section {
    padding: 0 0 64px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-item.open {
    border-color: rgba(61, 235, 81, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(61, 235, 81, 0.08);
    border: 1px solid rgba(61, 235, 81, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(61, 235, 81, 0.2);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    color: var(--color-accent);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ======================== FOOTER ======================== */

.site-footer {
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    padding: 56px 0 28px;
    margin-top: auto;
}

.footer-main {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 220px;
}

.footer-brand-logo {
    margin-bottom: 16px;
}

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

.footer-brand-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.footer-social-link:hover {
    background: rgba(61, 235, 81, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-col {
    flex: 1;
    min-width: 140px;
}

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

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

.footer-col ul a {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

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

.footer-divider {
    height: 1px;
    background: var(--color-border);
    margin: 32px 0;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 28px;
    align-items: center;
}

.footer-logos-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logos-group-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-logos-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
}

.footer-badge.payment {
    color: #a0b0c8;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-flag img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 700px;
}

.footer-copyright a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

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

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-btn-secondary);
    border: 2px solid rgba(61, 235, 81, 0.3);
    font-size: 12px;
    font-weight: 800;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ======================== PROMO WIDGET ======================== */

.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1c202b, #161c28);
    border-top: 1px solid rgba(61, 235, 81, 0.25);
    padding: 12px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform var(--transition);
}

.promo-widget.hidden {
    transform: translateY(100%);
}

.promo-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.widget-promo-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.widget-promo-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.widget-promo-code {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-accent-gold);
    letter-spacing: 0.1em;
}

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

.widget-promo-desc span {
    color: var(--color-accent);
    font-weight: 600;
}

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

.widget-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
    font-family: var(--font-main);
}

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

.widget-close svg {
    width: 18px;
    height: 18px;
}

/* ======================== MISC UNUSED (uniqueness) ======================== */

.wc-breadcrumb {
    display: none;
    visibility: hidden;
}

.elementor-hidden {
    display: none !important;
}

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

.post-thumbnail-hidden {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.widget-area-unused {
    display: none;
}

.entry-meta-hidden {
    visibility: hidden;
}

.yoast-seo-offscreen {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.wp-block-unstyled {
    display: none;
}

/* ======================== RESPONSIVE ======================== */

@media (max-width: 991px) {
    .steps-grid {
        flex-direction: column;
    }

    .steps-grid::before {
        display: none;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
        padding: 0;
        margin-bottom: 20px;
    }

    .step-num {
        margin-bottom: 0;
        margin-right: 16px;
        flex-shrink: 0;
    }

    .footer-main {
        gap: 28px;
    }

    .footer-brand {
        flex: 0 0 100%;
    }

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider-wrap {
        display: block;
    }

    .hero {
        min-height: 420px;
    }
}

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

    .header-meta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .reviews-grid .review-card {
        min-width: 100%;
    }

    .jackpot-grid {
        gap: 10px;
    }

    .jackpot-card {
        min-width: calc(50% - 5px);
    }

    .footer-col {
        flex: 0 0 calc(50% - 14px);
    }

    .slot-reels .reel {
        width: 64px;
        height: 80px;
        font-size: 34px;
    }

    .review-content-block {
        padding: 24px 20px;
    }

    .review-form-block {
        padding: 24px 20px;
    }

    .hero-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .promo-widget-inner {
        flex-direction: column;
        gap: 10px;
    }

    .widget-promo-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 479px) {
    .jackpot-card {
        min-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

.raxas {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 32px;
    margin: 0;
    background: #13181f;
    border: 1px solid rgba(61, 235, 81, .22);
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
    overflow: hidden;
    box-sizing: border-box;
}

.raxas * {
    box-sizing: border-box;
    max-width: 100%;
}

.raxas h2,
.raxas h3,
.raxas h4 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.raxas h2 {
    margin: 30px 0 14px;
    font-size: 1.45rem;
    line-height: 1.3;
    color: #fff;
}

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

.raxas h3 {
    margin: 24px 0 11px;
    font-size: 1.15rem;
    line-height: 1.35;
    color: #e8eaf0;
}

.raxas h4 {
    margin: 20px 0 10px;
    font-size: 1rem;
    line-height: 1.4;
}

.raxas p {
    max-width: 100%;
    margin: 0 0 16px;
    font-size: .95rem;
    line-height: 1.75;
    color: #c8cdd8;
    overflow-wrap: anywhere;
    word-break: normal;
}

.raxas ul,
.raxas ol {
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
    padding-left: 24px;
}

.raxas li {
    max-width: 100%;
    margin-bottom: 7px;
    color: #c8cdd8;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.raxas a {
    max-width: 100%;
    color: #3deb51;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.raxas strong,
.raxas b {
    color: #fff;
}

.raxas img,
.raxas video,
.raxas iframe,
.raxas svg {
    max-width: 100%;
}

.raxas img,
.raxas video {
    width: auto;
    height: auto;
}

.raxas iframe {
    width: 100%;
}

.raxas blockquote {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 14px 18px;
    border-left: 3px solid #3deb51;
    border-radius: 0 8px 8px 0;
    background: rgba(61, 235, 81, .06);
    color: #a8b0be;
    overflow-wrap: anywhere;
}

.raxas pre {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 14px;
    border-radius: 8px;
    background: #0a0e13;
    -webkit-overflow-scrolling: touch;
}

.raxas code {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.raxas table {
    width: 100%;
    max-width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: #10151c;
    border: 1px solid rgba(255, 255, 255, .09);
}

.raxas th,
.raxas td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    text-align: left;
    vertical-align: top;
    font-size: .88rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: normal;
}

.raxas th {
    background: #1c202b;
    color: #3deb51;
    font-weight: 700;
}

.raxas td {
    color: #c8cdd8;
}

@media (max-width: 768px) {
    .raxas {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 16px;
        border-radius: 12px;
        overflow: hidden;
    }

    .raxas h2 {
        margin: 25px 0 11px;
        font-size: 1.22rem;
        line-height: 1.3;
    }

    .raxas h3 {
        margin: 20px 0 9px;
        font-size: 1.05rem;
    }

    .raxas p {
        font-size: .88rem;
        line-height: 1.7;
    }

    .raxas ul,
    .raxas ol {
        padding-left: 20px;
    }

    .raxas li {
        font-size: .88rem;
        line-height: 1.6;
    }

    .raxas table {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 18px 0;
        overflow-x: auto;
        overflow-y: hidden;
        border-collapse: separate;
        border-spacing: 0;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: thin;
    }

    .raxas table tbody {
        width: 100%;
    }

    .raxas table tr {
        width: 100%;
    }

    .raxas th,
    .raxas td {
        min-width: 130px;
        padding: 10px 11px;
        font-size: .78rem;
        line-height: 1.45;
        white-space: normal;
    }

    .raxas table th:first-child,
    .raxas table td:first-child {
        min-width: 125px;
    }

    .raxas blockquote {
        padding: 12px 14px;
        margin: 16px 0;
    }
}

@media (max-width: 480px) {
    .raxas {
        padding: 17px 12px;
        border-radius: 10px;
        border-width: 1px;
    }

    .raxas h2 {
        font-size: 1.12rem;
        line-height: 1.3;
    }

    .raxas h3 {
        font-size: 1rem;
    }

    .raxas p,
    .raxas li {
        font-size: .84rem;
    }

    .raxas ul,
    .raxas ol {
        padding-left: 18px;
    }

    .raxas table {
        width: 100%;
        max-width: 100%;
    }

    .raxas th,
    .raxas td {
        min-width: 115px;
        padding: 9px 10px;
        font-size: .74rem;
    }

    .raxas table th:first-child,
    .raxas table td:first-child {
        min-width: 110px;
    }

    .raxas blockquote {
        padding: 11px 12px;
        font-size: .83rem;
    }
}

@media (max-width: 360px) {
    .raxas {
        padding: 14px 10px;
    }

    .raxas h2 {
        font-size: 1.05rem;
    }

    .raxas p,
    .raxas li {
        font-size: .81rem;
    }

    .raxas th,
    .raxas td {
        font-size: .7rem;
        padding: 8px;
    }
}