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

:root {
    --clr-header: #0a0a35;
    --clr-btn-primary: #fbec1f;
    --clr-btn-secondary: #016d19;
    --clr-bg: #000000;
    --clr-bg-card: #0d0d2b;
    --clr-bg-card2: #080820;
    --clr-text: #e8e8f0;
    --clr-text-muted: #9090b0;
    --clr-accent: #fbec1f;
    --clr-green: #016d19;
    --clr-green-light: #01a025;
    --clr-border: #1e1e4a;
    --clr-border-light: #2a2a5a;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-btn: 0 2px 12px rgba(251, 236, 31, 0.25);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

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

a:hover {
    color: #fff;
}

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

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

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

.box {
    position: relative;
}

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    height: 70px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 44px;
    width: auto;
    background: #ffffff;
    border-radius: 20px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: #c8c8e8;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

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

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

.header-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #a0f0a0;
    white-space: nowrap;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(0, 230, 118, 0);
    }
}

.player-count {
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.player-count strong {
    color: var(--clr-accent);
}

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

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity 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);
}

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

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

.btn--primary {
    background: var(--clr-btn-primary);
    color: #0a0a20;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    color: #0a0a20;
    box-shadow: 0 4px 20px rgba(251, 236, 31, 0.4);
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.btn--secondary:hover {
    color: #fff;
    background: var(--clr-green-light);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--clr-border-light);
}

.btn--outline:hover {
    color: #fff;
    border-color: var(--clr-accent);
}

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

.btn--md {
    font-size: 14px;
    padding: 10px 20px;
}

.btn--lg {
    font-size: 15px;
    padding: 14px 28px;
}

.btn--xl {
    font-size: 17px;
    padding: 16px 36px;
    border-radius: var(--radius-md);
}

/* ======================== HERO ======================== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #060618 0%, #0a0a35 50%, #060618 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 6, 24, 0.95) 30%, rgba(6, 6, 24, 0.5) 70%, rgba(6, 6, 24, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

.hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251, 236, 31, 0.1);
    border: 1px solid rgba(251, 236, 31, 0.3);
    color: var(--clr-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-text h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
    text-wrap: balance;
}

.hero-text h1 span {
    color: var(--clr-accent);
}

.hero-text p {
    font-size: 16px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--clr-text-muted);
}

.hero-trust-item svg {
    color: var(--clr-accent);
}

.bonus-tile {
    background: linear-gradient(145deg, #0d0d35 0%, #12124a 100%);
    border: 1.5px solid rgba(251, 236, 31, 0.35);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(251, 236, 31, 0.08), var(--shadow-card);
    animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.bonus-tile .bonus-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.bonus-tile .bonus-amount {
    font-size: 38px;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1.1;
    margin-bottom: 4px;
}

.bonus-tile .bonus-sub {
    font-size: 13px;
    color: #c8c8e8;
    margin-bottom: 6px;
}

.bonus-tile .bonus-spins {
    font-size: 18px;
    font-weight: 800;
    color: var(--clr-green-light);
    margin-bottom: 20px;
}

.bonus-tile .bonus-cta {
    width: 100%;
}

.bonus-tile .bonus-tc {
    margin-top: 12px;
    font-size: 10.5px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ======================== SECTIONS ======================== */
.section {
    padding: 56px 0;
}

.section-title {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 14.5px;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    max-width: 580px;
}

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

/* ======================== PROS & CONS ======================== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-block, .cons-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1.5px solid var(--clr-border);
    box-shadow: var(--shadow-card);
}

.pros-block {
    border-top: 3px solid var(--clr-green-light);
}

.cons-block {
    border-top: 3px solid #c0392b;
}

.pros-block h3, .cons-block h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-block h3 {
    color: var(--clr-green-light);
}

.cons-block h3 {
    color: #e74c3c;
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--clr-text);
}

.pros-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--clr-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

.cons-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: #c0392b;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

/* ======================== PAYMENTS TABLE ======================== */
.payments-section .table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--clr-border);
    box-shadow: var(--shadow-card);
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-bg-card);
    min-width: 700px;
}

.payments-table th {
    background: var(--clr-header);
    color: var(--clr-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1.5px solid var(--clr-border);
}

.payments-table td {
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: middle;
}

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

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

.payment-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 13.5px;
}

.payment-icon {
    width: 40px;
    height: 26px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #333;
    flex-shrink: 0;
    padding: 2px 4px;
    overflow: hidden;
}

.badge-free {
    color: var(--clr-green-light);
    font-weight: 600;
    font-size: 12px;
}

.badge-fast {
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 12px;
}

/* ======================== VIDEO REVIEW ======================== */
.video-section .video-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--clr-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    background: #000;
}

.video-wrap iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* ======================== SLOT MINI-GAME ======================== */
.slot-section .slot-wrapper {
    background: linear-gradient(145deg, #080828 0%, #10103a 100%);
    border: 1.5px solid rgba(251, 236, 31, 0.2);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    max-width: 520px;
    margin: 0 auto;
}

.slot-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 6px;
}

.slot-subtitle {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

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

.slot-reel {
    width: 80px;
    height: 80px;
    background: #0a0a25;
    border: 2px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    overflow: hidden;
    position: relative;
    user-select: none;
    transition: border-color 0.3s;
}

.slot-reel.spinning {
    border-color: var(--clr-accent);
    animation: reelGlow 0.2s infinite alternate;
}

@keyframes reelGlow {
    from {
        box-shadow: none;
    }
    to {
        box-shadow: 0 0 12px rgba(251, 236, 31, 0.4);
    }
}

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

.slot-result .win-msg {
    font-size: 17px;
    font-weight: 800;
    color: var(--clr-accent);
    animation: fadeInUp 0.4s ease-out;
}

.slot-result .win-bonus {
    font-size: 13px;
    color: var(--clr-green-light);
}

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

.slot-balance {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 12px;
}

.slot-balance strong {
    color: var(--clr-accent);
}

/* ======================== CONTENT BLOCK ======================== */
.review-content {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.review-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 14px;
    line-height: 1.3;
}

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

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0f8;
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #c8c8e8;
    margin: 18px 0 8px;
}

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

.review-content ul, .review-content ol {
    margin: 0 0 16px 0;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.review-content li {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--clr-text);
}

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

.review-content a:hover {
    color: #fff;
}

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

.review-content em {
    font-style: italic;
    color: #c8c8e8;
}

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    background: rgba(251, 236, 31, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
    color: #c8c8e8;
}

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

.review-content table th, .review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: middle;
}

.review-content table th {
    background: var(--clr-header);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

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

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

.review-content img {
    border-radius: var(--radius-md);
    max-width: 100%;
    height: auto;
}

/* ======================== REGISTRATION STEPS ======================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.step-card {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
    border-color: var(--clr-btn-secondary);
    transform: translateY(-3px);
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--clr-btn-secondary), var(--clr-green-light));
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    color: var(--clr-accent);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-card h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

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

/* ======================== COMMENTS ======================== */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.comment-card {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-border-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.comment-meta {
    flex: 1;
}

.comment-author {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

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

.comment-rating {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.star {
    color: var(--clr-accent);
    font-size: 13px;
}

.star.empty {
    color: var(--clr-border-light);
}

.comment-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--clr-text);
}

/* Comment Form */
.comment-form-wrap {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.comment-form-wrap h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-vertical {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #c8c8e8;
}

.form-group input, .form-group textarea, .form-group select {
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--clr-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(251, 236, 31, 0.1);
}

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

.form-group select option {
    background: #0d0d2b;
}

.form-success {
    background: rgba(1, 160, 37, 0.12);
    border: 1.5px solid var(--clr-green-light);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    display: none;
}

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

.form-success svg {
    color: var(--clr-green-light);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-success p {
    font-size: 14px;
    color: var(--clr-green-light);
}

/* Rating selector */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 22px;
    cursor: pointer;
    color: var(--clr-border-light);
    transition: color 0.15s;
    line-height: 1;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--clr-accent);
}

/* ======================== AUTHOR BOX ======================== */
.author-box {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--clr-border-light);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}

.author-position {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 12.5px;
    color: var(--clr-text-muted);
}

.author-meta span strong {
    color: var(--clr-text);
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.author-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--clr-border-light);
}

.author-social svg {
    width: 15px;
    height: 15px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 28px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    height: 38px;
}

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

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

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

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

.footer-col ul li a {
    font-size: 13.5px;
    color: #9090b0;
    transition: color var(--transition);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: var(--clr-border-light);
}

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

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-badge-group h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.fbadge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #c8c8e8;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.fbadge.age {
    font-size: 13px;
    background: rgba(251, 236, 31, 0.07);
    border-color: rgba(251, 236, 31, 0.25);
    color: var(--clr-accent);
}

.fbadge.license {
    background: rgba(1, 109, 25, 0.12);
    border-color: rgba(1, 160, 37, 0.3);
    color: var(--clr-green-light);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--clr-border);
}

.footer-legal {
    font-size: 11.5px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 12px;
}

.footer-copy {
    text-align: center;
    font-size: 12px;
    color: #505070;
}

.footer-copy a {
    color: #606080;
}

.footer-copy a:hover {
    color: var(--clr-text-muted);
}

/* ======================== STICKY WIDGET ======================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #08082a 0%, var(--clr-header) 100%);
    border-top: 1.5px solid rgba(251, 236, 31, 0.25);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.widget-text {
    font-size: 13.5px;
    color: var(--clr-text);
    font-weight: 500;
}

.widget-bonus {
    font-size: 14px;
    font-weight: 800;
    color: var(--clr-accent);
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--transition);
    margin-left: 8px;
}

.widget-close:hover {
    color: #fff;
}

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

/* ======================== SECTION CONTAINERS ======================== */
.pros-cons-section,
.payments-section,
.video-section,
.slot-section,
.registration-section,
.comments-section,
.faq-section,
.author-section {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
}

/* ======================== INFO PAGES ======================== */
.info-content {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.info-content h1 {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.info-content h2 {
    font-size: 19px;
    font-weight: 800;
    color: #e0e0f8;
    margin: 24px 0 12px;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #c8c8e8;
    margin: 18px 0 8px;
}

.info-content p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--clr-text);
    margin-bottom: 14px;
}

.info-content ul, .info-content ol {
    margin: 0 0 14px;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.info-content li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--clr-text);
}

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

.info-content a:hover {
    color: #fff;
}

.info-content strong {
    color: #fff;
}

/* ======================== BREADCRUMBS ======================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--clr-text-muted);
    padding: 14px 0;
}

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

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

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

/* ======================== MISC ======================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 0;
}

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

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

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

.mt1 {
    margin-top: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mb1 {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}

/* fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ======================== HIDDEN/DECOY WP ELEMENTS ======================== */
.wp-caption, .wp-caption-text, .gallery-caption, .bypostauthor {
    display: none;
}

.elementor-widget-container {
}

.entry-meta, .post-meta {
}

.woocommerce-placeholder, .wc-block-components-placeholder {
    display: none;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .bonus-tile {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        height: 60px;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 53, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 16px;
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
    }

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

    .header-nav a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: var(--radius-md);
    }

    .header-nav .nav-separator {
        height: 1px;
        background: var(--clr-border);
        margin: 8px 0;
    }

    .burger {
        display: flex;
    }

    .header-status {
        display: none;
    }

    .header-buttons {
        gap: 6px;
    }

    .btn--md {
        font-size: 13px;
        padding: 9px 14px;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .author-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-photo {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    .author-meta {
        justify-content: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .sticky-widget {
        padding: 10px 12px;
        gap: 10px;
    }

    .widget-text {
        display: none;
    }

    .section {
        padding: 36px 0;
    }

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

    .hero-text h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .slot-reel {
        width: 68px;
        height: 68px;
        font-size: 34px;
    }

    .slot-machine {
        gap: 6px;
    }

    .review-content {
        padding: 20px;
    }

    .author-box {
        padding: 20px;
    }

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

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

.ystrs {
    background: linear-gradient(180deg, #0d0d2b 0%, #090920 100%);
    border: 2px solid rgba(251, 236, 31, .18);
    border-radius: 24px;
    padding: 36px;
    margin: 60px auto;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.ystrs > *:first-child {
    margin-top: 0 !important;
}

.ystrs > *:last-child {
    margin-bottom: 0 !important;
}

.ystrs h1,
.ystrs h2,
.ystrs h3,
.ystrs h4,
.ystrs h5,
.ystrs h6 {
    color: #fff;
    line-height: 1.3;
    margin: 0 0 18px;
}

.ystrs p,
.ystrs li {
    color: #d7d9ef;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.ystrs ul,
.ystrs ol {
    padding-left: 22px;
    margin: 18px 0;
}

.ystrs a {
    color: #fbec1f;
}

.ystrs img,
.ystrs video,
.ystrs svg {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.ystrs iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 16px;
}

.ystrs table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.ystrs th,
.ystrs td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.ystrs th {
    background: #12123d;
    color: #fff;
}

.ystrs table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ystrs pre,
.ystrs code {
    overflow: auto;
    max-width: 100%;
}

.ystrs blockquote {
    padding: 18px 22px;
    margin: 24px 0;
    border-left: 4px solid #fbec1f;
    background: rgba(251, 236, 31, .06);
    border-radius: 12px;
}

@media (max-width: 991px) {

    .ystrs {
        padding: 28px;
        margin: 40px auto;
    }

}

@media (max-width: 768px) {

    .ystrs {
        padding: 20px;
        border-radius: 20px;
        margin: 30px auto;
    }

    .ystrs h1 {
        font-size: 30px;
    }

    .ystrs h2 {
        font-size: 24px;
    }

    .ystrs h3 {
        font-size: 20px;
    }

    .ystrs p,
    .ystrs li {
        font-size: 15px;
        line-height: 1.7;
    }

    .ystrs table {
        min-width: 600px;
    }

}

@media (max-width: 480px) {

    .ystrs {
        padding: 16px;
        border-radius: 18px;
    }

    .ystrs h1 {
        font-size: 26px;
    }

    .ystrs h2 {
        font-size: 22px;
    }

    .ystrs h3 {
        font-size: 18px;
    }

    .ystrs p,
    .ystrs li {
        font-size: 14px;
    }

    .ystrs table {
        min-width: 560px;
    }

}