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

:root {
    --bg: #1E101E;
    --header-bg: #05071A;
    --btn-primary: #FFE600;
    --btn-secondary: #26293A;
    --text: #ffffff;
    --text-muted: #b0b0c0;
    --accent: #FFE600;
    --accent2: #ff4d6d;
    --card-bg: #2a1a2e;
    --card-border: #3a2a3e;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: #fff;
}

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

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

.r9k3m {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

.btn--primary {
    background: var(--btn-primary);
    color: #05071A;
}

.btn--primary:hover {
    filter: brightness(1.1);
    color: #05071A;
}

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

.btn--secondary:hover {
    background: #353850;
    color: #fff;
}

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

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

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 32px;
    color: var(--accent);
}

h3 {
    font-size: 1.2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

.m9z1q {
    display: none;
}

/* ── HEADER ── */
.a3f8b {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1c33;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.a3f8b .r9k3m {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

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

.logo-link img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.p2d7n {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.p2d7n li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: #c8c8d8;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.p2d7n li a:hover, .p2d7n li a.active {
    background: rgba(255, 230, 0, 0.1);
    color: var(--accent);
}

.p2d7n li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 8px;
}

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

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

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

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

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

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

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

.mobile-nav {
    display: none;
    background: var(--header-bg);
    border-top: 1px solid #1a1c33;
    padding: 16px 20px 20px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav .p2d7n {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.mobile-nav .p2d7n li {
    width: 100%;
}

.mobile-nav .p2d7n li a {
    width: 100%;
    padding: 10px 16px;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/hs-hero.png') center/cover no-repeat;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 16, 30, 0.9) 0%, rgba(5, 7, 26, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .r9k3m {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-text h1 {
    margin-bottom: 16px;
}

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

.hero-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.promo-box {
    background: rgba(255, 230, 0, 0.08);
    border: 2px dashed var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.promo-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.promo-code {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    cursor: pointer;
}

.promo-copy-btn {
    background: var(--accent);
    color: #05071A;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: filter var(--transition);
}

.promo-copy-btn:hover {
    filter: brightness(1.1);
}

.hero-bonus-card {
    background: rgba(42, 26, 46, 0.9);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero-bonus-card .bonus-badge {
    display: inline-block;
    background: var(--accent);
    color: #05071A;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.bonus-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

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

.bonus-spins {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.bonus-spins span {
    color: var(--accent);
}

/* ── BLOCKS / CONTENT AREA ── */
.content-area {
    padding: 40px 0 60px;
}

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

.block-section:last-child {
    margin-bottom: 0;
}

/* ── MIRRORS TABLE ── */
.mirror-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 12px 20px;
    background: rgba(255, 230, 0, 0.07);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.mirror-meta strong {
    color: var(--accent);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 230, 118, 0.12);
    color: #00e676;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
}

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

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    text-align: left;
}

table th {
    background: rgba(255, 230, 0, 0.1);
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--card-border);
    font-size: 14px;
    color: #ddd;
}

table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

table td a {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

table td a:hover {
    text-decoration: underline;
}

.status-active {
    color: #00e676;
    font-weight: 600;
}

.status-checking {
    color: #ffd740;
}

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

.screenshot-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-track .slider-slide {
    flex: 0 0 100%;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-btn {
    background: var(--btn-secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--accent);
    color: #000;
}

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

.tournament-card {
    background: linear-gradient(135deg, #2a1a2e 0%, #1a1030 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.tournament-badge {
    display: inline-block;
    background: rgba(255, 230, 0, 0.15);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tournament-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.tournament-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.timer-display {
    font-family: monospace;
    font-size: 1.1rem;
    color: #ff4d6d;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.bonus-card {
    background: linear-gradient(160deg, #2d1730 0%, #1c1230 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 230, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.bonus-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

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

.bonus-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bonus-card .btn {
    width: 100%;
    justify-content: center;
}

/* ── SLOT MACHINE ── */
.slot-machine-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.slot-machine {
    background: linear-gradient(180deg, #0a0614 0%, #1a0828 100%);
    border: 3px solid var(--accent);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 230, 0, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.5);
    max-width: 420px;
    width: 100%;
}

.slot-machine h3 {
    color: var(--accent);
    margin-bottom: 24px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reels-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.reel {
    width: 90px;
    height: 90px;
    background: #0d0520;
    border: 2px solid #3a2a5e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.1s;
}

.reel.spinning {
    animation: reelSpin 0.15s linear infinite;
}

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

.spin-btn {
    background: linear-gradient(135deg, var(--accent), #ffb300);
    color: #05071A;
    border: none;
    border-radius: var(--radius);
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(255, 230, 0, 0.3);
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 230, 0, 0.5);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.slot-result {
    display: none;
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
}

.slot-result.win {
    display: block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.4);
    animation: fadeInUp 0.5s ease;
}

.slot-result.lose {
    display: block;
    background: rgba(255, 77, 109, 0.1);
    border: 1px solid rgba(255, 77, 109, 0.3);
    animation: fadeInUp 0.5s ease;
}

.slot-result h3 {
    margin-bottom: 8px;
}

.slot-result.win h3 {
    color: #00e676;
}

.slot-result.lose h3 {
    color: #ff4d6d;
}

.slot-result p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

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

/* ── REVIEW CONTENT ── */
.review-content .text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

.review-content .text h1,
.review-content .text h2,
.review-content .text h3,
.review-content .text h4 {
    color: var(--accent);
    margin: 28px 0 12px;
    line-height: 1.4;
}

.review-content .text h1 {
    font-size: 1.8rem;
}

.review-content .text h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.review-content .text h2::after {
    display: none;
}

.review-content .text h3 {
    font-size: 1.15rem;
}

.review-content .text p {
    margin-bottom: 16px;
}

.review-content .text ul,
.review-content .text ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.review-content .text li {
    margin-bottom: 6px;
}

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

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

.review-content .text blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    background: rgba(255, 230, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
    color: #ccc;
}

.review-content .text table {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 20px auto;
}

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

/* ── AUTHOR ── */
.author-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    align-items: start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-position {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

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

.author-meta span strong {
    color: #fff;
}

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

.author-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-secondary);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: background var(--transition);
}

.author-socials a:hover {
    background: var(--accent);
    color: #000;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--header-bg);
    border-top: 1px solid #1a1c33;
    padding: 48px 0 24px;
}

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

.footer-logo-col .logo-link img {
    height: 44px;
    margin-bottom: 16px;
}

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

.footer-country img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-nav h4 {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-nav ul {
    list-style: none;
}

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

.footer-nav ul li a {
    color: #999;
    font-size: 14px;
    transition: color var(--transition);
}

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

.footer-logos {
    margin-bottom: 32px;
}

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

.logo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.logo-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background var(--transition), color var(--transition);
}

.logo-pill:hover {
    background: rgba(255, 230, 0, 0.1);
    color: var(--accent);
}

.footer-divider {
    border: none;
    border-top: 1px solid #1a1c33;
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #555;
}

.footer-bottom a {
    color: #555;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ── STICKY WIDGET ── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #05071A 0%, #150f25 100%);
    border-top: 2px solid var(--accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    animation: slideUpWidget 0.6s ease 1s both;
}

@keyframes slideUpWidget {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-text {
    flex: 1;
}

.widget-text strong {
    color: var(--accent);
    font-size: 1rem;
    display: block;
}

.widget-text span {
    font-size: 13px;
    color: #aaa;
}

.widget-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

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

/* ── INFO PAGES ── */
.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content h1 {
    margin-bottom: 24px;
}

.info-content p {
    margin-bottom: 16px;
    color: #ccc;
}

.info-content h2 {
    font-size: 1.3rem;
    margin: 28px 0 12px;
    text-align: left;
    padding-bottom: 0;
}

.info-content h2::after {
    display: none;
}

.info-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.info-content ul li {
    margin-bottom: 6px;
    color: #ccc;
}

/* ── MISC ── */
.text-center {
    text-align: center;
}

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

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

.badge-new {
    display: inline-block;
    background: var(--accent2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle;
}

.page-padding {
    padding: 48px 0 80px;
}

.providers-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

/* unused style declarations for layout uniqueness */
.xp91z4 {
    display: none;
    visibility: hidden;
}

.m3k9q2.unused-gradient {
    background: linear-gradient(45deg, #ff0066, #6600ff);
}

.b8r2t5 {
    pointer-events: none;
    user-select: none;
    opacity: 0;
}

.f4g7n1 {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.z9h3w6 {
    will-change: transform;
    backface-visibility: hidden;
}

.c2v5p8 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .tournaments-grid,
    .bonuses-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-content .r9k3m {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-logo-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .a3f8b .r9k3m {
        grid-template-columns: auto 1fr;
    }

    .desktop-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .online-count .online-label {
        display: none;
    }

    .tournaments-grid,
    .bonuses-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider-mobile {
        display: block;
    }

    .block-section {
        padding: 24px 20px;
    }

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

    .promo-box {
        flex-wrap: wrap;
        gap: 10px;
    }

    .author-block {
        grid-template-columns: 1fr;
    }

    .author-avatar {
        margin: 0 auto;
    }

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

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

    h2 {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .reels-container {
        gap: 8px;
    }

    .reel {
        width: 72px;
        height: 72px;
        font-size: 2.2rem;
    }

    .slot-machine {
        padding: 24px 16px;
    }

    .bonus-amount {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    html {
        font-size: 16px !important;
    }

    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        background: #1E101E !important;
    }

    .xq7f2,
    .content-area,
    .r9k3m,
    .block-section,
    .hero-content,
    .hero-content .r9k3m {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .r9k3m {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .a3f8b {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999999 !important;
    }

    body {
        padding-top: 56px !important;
    }

    .a3f8b .r9k3m {
        min-height: 56px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        grid-template-columns:auto 1fr auto !important;
        gap: 8px !important;
    }

    .logo-link img {
        height: 32px !important;
    }

    .header-actions {
        gap: 6px !important;
    }

    .header-actions .btn {
        width: auto !important;
        min-height: 32px !important;
        padding: 7px 10px !important;
        font-size: 11px !important;
    }

    .online-count {
        display: none !important;
    }

    .burger-btn {
        display: flex !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .hero-section {
        min-height: auto !important;
        padding: 34px 0 28px !important;
        display: block !important;
    }

    .hero-bg {
        background-position: center !important;
    }

    .hero-content .r9k3m {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        padding-top: 28px !important;
        padding-bottom: 0 !important;
    }

    .hero-text {
        text-align: center !important;
    }

    .hero-text h1 {
        font-size: 26px !important;
        line-height: 1.15 !important;
        margin-bottom: 14px !important;
    }

    .hero-text p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin: 0 0 18px !important;
    }

    .hero-btns {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .btn,
    .btn--lg,
    .btn--sm {
        width: 100% !important;
        min-height: 44px !important;
        padding: 12px 14px !important;
        justify-content: center !important;
        font-size: 14px !important;
        white-space: normal !important;
    }

    .promo-box {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 14px !important;
        text-align: center !important;
    }

    .promo-code {
        font-size: 22px !important;
    }

    .hero-bonus-card {
        width: 100% !important;
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }

    .bonus-amount {
        font-size: 36px !important;
    }

    .bonus-sub,
    .bonus-spins {
        font-size: 15px !important;
    }

    .content-area {
        padding: 26px 0 120px !important;
    }

    .block-section {
        padding: 22px 14px !important;
        margin-bottom: 18px !important;
        border-radius: 16px !important;
    }

    .section-title {
        font-size: 23px !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
        padding-bottom: 12px !important;
    }

    .mirror-meta {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
        padding: 12px !important;
        font-size: 13px !important;
        text-align: center !important;
    }

    .status-badge {
        justify-content: center !important;
    }

    .table-wrap {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 12px !important;
    }

    table {
        width: max-content !important;
        min-width: 640px !important;
    }

    table th,
    table td {
        padding: 10px 12px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    table .btn {
        width: auto !important;
        min-height: 32px !important;
        padding: 7px 12px !important;
        font-size: 12px !important;
    }

    .screenshots-grid {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 12px !important;
    }

    .screenshots-slider-mobile {
        display: none !important;
    }

    .screenshot-item img {
        height: auto !important;
        aspect-ratio: 16/10 !important;
        object-fit: cover !important;
    }

    .tournaments-grid,
    .bonuses-grid {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 14px !important;
    }

    .tournament-card,
    .bonus-card {
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }

    .tournament-card h3,
    .bonus-card h3 {
        font-size: 19px !important;
    }

    .tournament-card p,
    .bonus-card p {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .tournament-prize,
    .bonus-value {
        font-size: 28px !important;
    }

    .tournament-timer {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .slot-machine {
        width: 100% !important;
        max-width: 100% !important;
        padding: 22px 14px !important;
    }

    .reels-container {
        gap: 8px !important;
    }

    .reel {
        width: 64px !important;
        height: 64px !important;
        font-size: 30px !important;
    }

    .spin-btn {
        width: 100% !important;
        padding: 14px !important;
    }

    .review-content .text {
        font-size: 15px !important;
        line-height: 1.75 !important;
    }

    .review-content .text h1 {
        font-size: 24px !important;
    }

    .review-content .text h2 {
        font-size: 21px !important;
    }

    .review-content .text h3 {
        font-size: 18px !important;
    }

    .review-content .text table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    .review-content .text ul,
    .review-content .text ol {
        padding-left: 18px !important;
    }

    .author-block {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
    }

    .author-avatar {
        width: 86px !important;
        height: 86px !important;
    }

    .author-meta,
    .author-socials {
        justify-content: center !important;
    }

    .site-footer {
        padding: 34px 0 120px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 22px !important;
        text-align: center !important;
    }

    .footer-logo-col .logo-link img {
        margin: 0 auto 14px !important;
    }

    .logo-pills,
    .providers-logos {
        justify-content: center !important;
    }

    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .sticky-widget {
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
        padding: 10px 14px !important;
        text-align: center !important;
    }

    .widget-text {
        text-align: center !important;
    }

    .widget-text strong {
        font-size: 14px !important;
    }

    .widget-text span {
        font-size: 12px !important;
    }

    .widget-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 8px !important;
    }

    .widget-close {
        position: absolute !important;
        right: 8px !important;
        top: 6px !important;
    }

    img,
    iframe,
    video,
    canvas {
        max-width: 100% !important;
    }

}

@media (max-width: 480px) {

    .r9k3m {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .block-section {
        padding: 18px 10px !important;
    }

    .hero-text h1 {
        font-size: 22px !important;
    }

    .hero-text p {
        font-size: 13px !important;
    }

    .section-title {
        font-size: 20px !important;
    }

    .bonus-amount {
        font-size: 30px !important;
    }

    .tournament-prize,
    .bonus-value {
        font-size: 24px !important;
    }

    table {
        min-width: 600px !important;
    }

    .reel {
        width: 56px !important;
        height: 56px !important;
        font-size: 26px !important;
    }

}

@media (max-width: 768px) {

    .nxvfsfs {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 14px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 230, 0, .2);
        border-radius: 16px;
        background: #241428;
    }

    .nxvfsfs h1 {
        font-size: 28px !important;
        line-height: 1.2;
        margin: 0 0 20px;
    }

    .nxvfsfs h2 {
        font-size: 22px !important;
        line-height: 1.3;
        margin: 28px 0 16px;
    }

    .nxvfsfs h3 {
        font-size: 18px !important;
        line-height: 1.35;
        margin: 22px 0 12px;
    }

    .nxvfsfs p {
        font-size: 15px !important;
        line-height: 1.75;
        margin: 0 0 16px;
        word-break: break-word;
    }

    .nxvfsfs ul,
    .nxvfsfs ol {
        padding-left: 20px !important;
        margin: 0 0 18px;
    }

    .nxvfsfs li {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .nxvfsfs blockquote {
        padding: 16px;
        margin: 20px 0;
        border-left: 4px solid #FFE600;
        background: #311c38;
        border-radius: 10px;
        font-size: 15px;
    }

    .nxvfsfs img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
    }

    .nxvfsfs table {
        display: block;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        border-collapse: collapse;
        border-spacing: 0;
        margin: 20px 0;
        border: 1px solid #46304d;
        border-radius: 12px;
        background: #2a1a2e;
        -webkit-overflow-scrolling: touch;
    }

    .nxvfsfs tbody {
        display: table;
        width: 100%;
        min-width: 640px;
    }

    .nxvfsfs thead {
        display: table-header-group;
    }

    .nxvfsfs tr {
        display: table-row;
    }

    .nxvfsfs th {
        background: #3b2442;
        color: #FFE600;
        font-size: 13px;
        font-weight: 700;
        padding: 12px 14px;
        border: 1px solid #4d3554;
        white-space: nowrap;
    }

    .nxvfsfs td {
        background: #2a1a2e;
        color: #fff;
        font-size: 14px;
        padding: 12px 14px;
        border: 1px solid #433049;
        white-space: nowrap;
    }

    .nxvfsfs table::-webkit-scrollbar {
        height: 8px;
    }

    .nxvfsfs table::-webkit-scrollbar-thumb {
        background: #FFE600;
        border-radius: 20px;
    }

    .nxvfsfs a {
        word-break: break-word;
    }

}

@media (max-width: 480px) {

    .nxvfsfs {
        padding: 14px 10px !important;
    }

    .nxvfsfs h1 {
        font-size: 24px !important;
    }

    .nxvfsfs h2 {
        font-size: 20px !important;
    }

    .nxvfsfs h3 {
        font-size: 17px !important;
    }

    .nxvfsfs p,
    .nxvfsfs li {
        font-size: 14px !important;
    }

    .nxvfsfs tbody {
        min-width: 560px;
    }

    .nxvfsfs th,
    .nxvfsfs td {
        padding: 10px 12px;
        font-size: 13px;
    }

}

.nxvfsfs {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px;
    background: #2a1a2e;
    border: 1px solid #4a3550;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.nxvfsfs h1 {
    font-size: 46px;
    line-height: 1.15;
    margin: 0 0 28px;
    color: #FFE600;
}

.nxvfsfs h2 {
    font-size: 34px;
    line-height: 1.25;
    margin: 55px 0 22px;
    color: #FFE600;
}

.nxvfsfs h3 {
    font-size: 25px;
    line-height: 1.35;
    margin: 36px 0 16px;
    color: #fff;
}

.nxvfsfs p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.9;
    color: #ececec;
}

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

.nxvfsfs a {
    color: #FFE600;
    text-decoration: none;
}

.nxvfsfs a:hover {
    text-decoration: underline;
}

.nxvfsfs ul,
.nxvfsfs ol {
    padding-left: 28px;
    margin: 24px 0;
}

.nxvfsfs li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.8;
}

.nxvfsfs blockquote {
    margin: 35px 0;
    padding: 24px 30px;
    background: #321d36;
    border-left: 5px solid #FFE600;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
}

.nxvfsfs img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 30px auto;
}

.nxvfsfs table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #48344d;
    background: #251629;
}

.nxvfsfs thead {
    background: #3a2140;
}

.nxvfsfs th {
    padding: 18px 22px;
    color: #FFE600;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 2px solid #5a4260;
}

.nxvfsfs td {
    padding: 18px 22px;
    color: #f2f2f2;
    font-size: 16px;
    border-bottom: 1px solid #433048;
}

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

.nxvfsfs tbody tr:nth-child(even) {
    background: #2f1c33;
}

.nxvfsfs tbody tr:hover {
    background: #39223f;
}

.nxvfsfs table td:first-child,
.nxvfsfs table th:first-child {
    font-weight: 700;
}

.nxvfsfs hr {
    border: none;
    height: 1px;
    background: #47344d;
    margin: 50px 0;
}

.nxvfsfs iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.nxvfsfs .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    background: #FFE600;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

.nxvfsfs .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 230, 0, .25);
}

@media (max-width: 768px) {

    .nxvfsfs table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 14px !important;
    }

    .nxvfsfs table tbody {
        display: table !important;
        min-width: 720px !important;
        width: 720px !important;
    }

    .nxvfsfs table tr {
        display: table-row !important;
    }

    .nxvfsfs table th,
    .nxvfsfs table td {
        white-space: nowrap !important;
        min-width: 140px !important;
    }

    .nxvfsfs table::-webkit-scrollbar {
        height: 8px !important;
    }

    .nxvfsfs table::-webkit-scrollbar-track {
        background: #241428 !important;
    }

    .nxvfsfs table::-webkit-scrollbar-thumb {
        background: #FFE600 !important;
        border-radius: 20px !important;
    }

}