
:root {
    --clr-bg: #1C1C1C;
    --clr-surface: #242424;
    --clr-card: #2a2a2a;
    --clr-header: #000000;
    --clr-footer: #000000;
    --clr-accent: #FFDD00;
    --clr-accent2: #FFE633;
    --clr-text: #EDEDED;
    --clr-muted: #A0A0A0;
    --clr-green: #3DD68C;
    --clr-red: #FF5555;
    --clr-border: #363636;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-sans: 'Open Sans', 'Roboto', sans-serif;
    --transition: 0.25s ease;
}

/* --- Reset / Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--clr-accent2);
}

/* --- Unused style elements for uniqueness --- */
.xq7r2-placeholder {
    display: none;
    color: transparent;
    font-size: 0;
}

.xm4t9-unused {
    visibility: hidden;
    position: absolute;
}

.za8b1-ghost {
    pointer-events: none;
    opacity: 0;
}

#xc3n0-hidden {
    display: none !important;
}

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

.hdr-wrap {
    width: 100%;
}

.hdr-inner {
    height: 64px;
    gap: 12px;
}

/* Logo */
.hdr-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Nav links */
.hdr-nav__link {
    color: var(--clr-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.hdr-nav__link:hover {
    color: var(--clr-accent);
    border-bottom-color: var(--clr-accent);
}

/* Online counter */
.hdr-online {
    font-size: 12px;
    color: var(--clr-muted);
}

.hdr-online__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse-dot 1.8s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 214, 140, .7);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(61, 214, 140, 0);
    }
}

/* Buttons (global) */
.btn-login,
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-login {
    background: transparent;
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
}

.btn-login:hover {
    background: var(--clr-accent);
    color: #000;
    transform: translateY(-1px);
}

.btn-register {
    background: var(--clr-accent);
    color: #000;
    border: 2px solid var(--clr-accent);
}

.btn-register:hover {
    background: var(--clr-accent2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 221, 0, .4);
}

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

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

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

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

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

/* Mobile nav */
.hdr-mobile-nav {
    background: #0a0a0a;
    border-top: 1px solid var(--clr-border);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.hdr-mobile-nav.open {
    max-height: 400px;
    padding: 16px;
}

.hdr-mobile-nav__link {
    display: block;
    padding: 10px 0;
    color: var(--clr-text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid var(--clr-border);
    transition: color var(--transition);
}

.hdr-mobile-nav__link:hover {
    color: var(--clr-accent);
}

.hdr-mobile-nav__link:last-child {
    border-bottom: none;
}


.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 480px;
}

.hero-slider {
    position: relative;
    min-height: 480px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .1) 100%);
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 32px;
    max-width: 540px;
}

.btn-hero-main {
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-hero-main:hover {
    background: var(--clr-accent2);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 221, 0, .45);
    color: #000;
}

.btn-hero-sec {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, .5);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-hero-sec:hover {
    border-color: var(--clr-accent);
    background: rgba(255, 221, 0, .08);
    color: var(--clr-accent);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.hero-arrow:hover {
    background: rgba(255, 221, 0, .3);
}

.hero-arrow--prev {
    left: 16px;
}

.hero-arrow--next {
    right: 16px;
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--clr-accent);
    transform: scale(1.25);
}

.content-wrap {
    background: var(--clr-bg);
}

.page-h1 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-text);
    line-height: 1.25;
}

.block-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-left: 4px;
    margin-right: 4px;
    animation: fadeInUp 0.5s ease both;
}

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

.block-card__header {
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 14px;
    margin-bottom: 4px;
}

.block-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-text);
    margin: 0;
}

.block-card__subtitle {
    font-size: 13px;
    color: var(--clr-muted);
    display: block;
    margin-top: 4px;
}

/* ================================================================
   PROS & CONS
   ================================================================ */
.pros-block, .cons-block {
    border-radius: var(--radius-md);
    padding: 20px;
    height: 100%;
}

.pros-block {
    background: rgba(61, 214, 140, .07);
    border: 1px solid rgba(61, 214, 140, .25);
}

.cons-block {
    background: rgba(255, 85, 85, .07);
    border: 1px solid rgba(255, 85, 85, .22);
}

.pros-block__head, .cons-block__head {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 14px;
}

.pros-block__head {
    color: var(--clr-green);
}

.cons-block__head {
    color: var(--clr-red);
}

.pros-icon {
    font-weight: 900;
    font-size: 18px;
}

.cons-icon {
    font-weight: 900;
    font-size: 18px;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 14px;
    color: var(--clr-text);
    position: relative;
    line-height: 1.5;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: '✓';
    color: var(--clr-green);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.cons-list li::before {
    content: '✗';
    color: var(--clr-red);
    position: absolute;
    left: 0;
    font-weight: 700;
}

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

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
}

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

.screenshot-caption {
    padding: 10px 12px;
    font-size: 13px;
    color: var(--clr-muted);
    font-weight: 600;
}

/* Screenshot slider (mobile) */
.screenshots-slider {
    position: relative;
}

.scr-slide {
    display: none;
}

.scr-slide.active {
    display: block;
}

.scr-slide img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.scr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.scr-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.scr-dot.active {
    background: var(--clr-accent);
}

/* ================================================================
   WINNERS TABLE
   ================================================================ */
.winners-table {
    border-collapse: collapse;
    font-size: 14px;
}

.winners-table th {
    background: var(--clr-surface);
    color: var(--clr-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

.winners-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: middle;
}

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

.winners-table tbody tr:nth-child(1) td {
    color: #FFD700;
    font-weight: 700;
}

.winners-table tbody tr:nth-child(2) td {
    color: #C0C0C0;
    font-weight: 700;
}

.winners-table tbody tr:nth-child(3) td {
    color: #CD7F32;
    font-weight: 700;
}

.win-amount {
    color: var(--clr-accent);
    font-weight: 700;
}

/* ================================================================
   APP TABLE
   ================================================================ */
.app-table {
    border-collapse: collapse;
    font-size: 14px;
}

.app-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    vertical-align: top;
}

.app-table td:first-child {
    color: var(--clr-muted);
    font-weight: 600;
    width: 42%;
    white-space: nowrap;
}

.app-table td:last-child {
    color: var(--clr-text);
}

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

/* Download buttons */
.btn-dl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--clr-accent);
    background: transparent;
    color: var(--clr-text);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-dl:hover {
    background: var(--clr-accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, .35);
}

.btn-dl__icon {
    font-size: 22px;
}

.btn-dl__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-dl__text small {
    font-size: 10px;
    font-weight: 400;
    opacity: .7;
}

.btn-dl__text strong {
    font-size: 14px;
}

/* ================================================================
   SLOT MINI-GAME
   ================================================================ */
.slot-game {
    text-align: center;
    padding: 20px 0 8px;
    position: relative;
}

.slot-reels {
    display: inline-flex;
    gap: 10px;
    background: #111;
    border: 3px solid var(--clr-accent);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    margin-bottom: 24px;
    box-shadow: 0 0 28px rgba(255, 221, 0, .18);
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: var(--clr-surface);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
    position: relative;
}

.slot-symbol {
    transition: transform 0.15s linear;
    line-height: 1;
}

.slot-reel.spinning .slot-symbol {
    animation: spin-symbol 0.1s linear infinite;
}

@keyframes spin-symbol {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-controls {
    margin-top: 8px;
}

.btn-spin {
    background: var(--clr-accent);
    color: #000;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .12em;
    padding: 14px 48px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-spin:hover {
    background: var(--clr-accent2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, .4);
}

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

.slot-result {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-muted);
    margin-bottom: 12px;
    min-height: 24px;
}

/* Win popup */
.slot-win-popup {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: fadeIn .3s ease;
}

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

.slot-win-popup__inner {
    text-align: center;
    padding: 32px 24px;
}

.slot-win-popup__title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.slot-win-popup__bonus {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.slot-win-popup__text {
    font-size: 14px;
    color: var(--clr-muted);
    margin-bottom: 20px;
}

.btn-win-claim {
    background: var(--clr-accent);
    color: #000;
    font-weight: 900;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition), transform var(--transition);
}

.btn-win-claim:hover {
    background: var(--clr-accent2);
    transform: scale(1.04);
    color: #000;
}

/* ================================================================
   REVIEW CONTENT (голые теги без классов)
   ================================================================ */
.review-content h1, .review-content h2, .review-content h3,
.review-content h4, .review-content h5, .review-content h6 {
    color: var(--clr-text);
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-content h2 {
    font-size: 1.35rem;
    border-left: 3px solid var(--clr-accent);
    padding-left: 12px;
}

.review-content h3 {
    font-size: 1.1rem;
    color: var(--clr-accent);
}

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

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

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

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

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

.review-content em, .review-content i {
    font-style: italic;
}

.review-content blockquote {
    border-left: 4px solid var(--clr-accent);
    padding: 12px 20px;
    background: rgba(255, 221, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--clr-muted);
    font-style: italic;
}

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

.review-content table th {
    background: var(--clr-surface);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    color: var(--clr-muted);
    font-size: 12px;
    text-transform: uppercase;
}

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

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

.review-content img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
    margin: 16px 0;
}

/* ================================================================
   BONUSES
   ================================================================ */
.bonus-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: border-color var(--transition), transform var(--transition);
}

.bonus-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-3px);
}

.bonus-card__icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.bonus-card__title {
    font-size: 13px;
    color: var(--clr-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.bonus-card__value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.bonus-card__desc {
    font-size: 12px;
    color: var(--clr-muted);
}

/* ================================================================
   AUTHOR
   ================================================================ */
.author-block {
    align-items: flex-start;
}

.author-photo-wrap {
    flex-shrink: 0;
}

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

.author-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-text);
}

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

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

.author-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    transition: border-color var(--transition), color var(--transition);
}

.author-social:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.author-social--li svg {
    fill: currentColor;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--clr-text);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--clr-accent);
}

.faq-arrow {
    font-size: 22px;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--clr-muted);
}

.faq-q[aria-expanded="true"] .faq-arrow {
    transform: rotate(90deg);
    color: var(--clr-accent);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.faq-a.open {
    max-height: 300px;
}

.faq-a > div {
    padding: 0 0 16px;
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.7;
}

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

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

.ftr-logo img {
    height: 34px;
    width: auto;
}

.ftr-desc {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.65;
}

.ftr-heading {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-muted);
    margin-bottom: 12px;
}

.ftr-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-nav a {
    font-size: 13px;
    color: var(--clr-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.ftr-pay-badge, .ftr-prov-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    color: var(--clr-muted);
    background: var(--clr-surface);
}

.ftr-bottom {
    padding: 20px 0;
}

.ftr-legal {
    font-size: 12px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.ftr-legal a {
    color: var(--clr-muted);
}

.ftr-age-badge {
    display: inline-block;
    background: var(--clr-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.ftr-license-badge {
    display: inline-block;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}

/* ================================================================
   BOTTOM WIDGET
   ================================================================ */
.btm-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #0a0a0a;
    border-top: 2px solid var(--clr-accent);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.btm-widget.visible {
    transform: translateY(0);
}

.btm-widget__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    flex-wrap: wrap;
}

.btm-widget__text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 600;
}

.btm-widget__badge {
    font-size: 20px;
}

.btm-widget__text strong {
    color: var(--clr-accent);
}

.btm-widget__btn {
    background: var(--clr-accent);
    color: #000;
    font-weight: 900;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btm-widget__btn:hover {
    background: var(--clr-accent2);
    transform: scale(1.03);
    color: #000;
}

.btm-widget__close {
    background: none;
    border: none;
    color: var(--clr-muted);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--transition);
}

.btm-widget__close:hover {
    color: var(--clr-text);
}

@media (max-width: 767px) {
    .block-card {
        padding: 18px 14px;
    }

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

    .hdr-inner {
        height: 58px;
    }

    .screenshots-grid {
        display: none !important;
    }

    .app-table td:first-child {
        width: 48%;
    }

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

    .slot-reels {
        padding: 14px 18px;
        gap: 8px;
    }

    .btn-spin {
        padding: 12px 36px;
        font-size: 15px;
    }

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

    .btm-widget__inner {
        gap: 10px;
        padding: 10px 14px;
    }

    .ftr-wrap {
        padding-top: 32px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-hero-main, .btn-hero-sec {
        padding: 11px 18px;
        font-size: 13px;
    }
}

.bfgw {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: var(--clr-text);
}

.bfgw h1,
.bfgw h2,
.bfgw h3,
.bfgw h4,
.bfgw h5,
.bfgw h6 {
    color: var(--clr-text);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bfgw h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.bfgw h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-top: 48px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--clr-border);
}

.bfgw h3 {
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--clr-accent);
}

.bfgw h4 {
    font-size: 1.04rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.bfgw p {
    margin-bottom: 16px;
    color: var(--clr-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.bfgw > p:first-of-type {
    font-size: 1.06rem;
    color: var(--clr-text);
}

.bfgw a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--transition), opacity var(--transition);
}

.bfgw a:hover {
    color: var(--clr-accent2);
}

.bfgw strong,
.bfgw b {
    color: var(--clr-text);
    font-weight: 700;
}

.bfgw em,
.bfgw i {
    font-style: italic;
}

.bfgw ul,
.bfgw ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.bfgw ul li,
.bfgw ol li {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.bfgw ul li::marker,
.bfgw ol li::marker {
    color: var(--clr-accent);
    font-weight: 700;
}

.bfgw li p {
    margin-bottom: 0;
}

.bfgw blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--clr-accent);
    background: linear-gradient(135deg, rgba(255, 221, 0, .08), rgba(255, 221, 0, .03));
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.bfgw blockquote p {
    margin: 0;
    color: var(--clr-text);
}

.bfgw table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}

.bfgw thead tr {
    background: rgba(255, 221, 0, .08);
}

.bfgw th,
.bfgw td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--clr-border);
}

.bfgw th {
    color: var(--clr-accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.bfgw td {
    color: var(--clr-text);
    font-size: 0.95rem;
}

.bfgw tbody tr:last-child td {
    border-bottom: 0;
}

.bfgw hr {
    border: 0;
    border-top: 1px solid var(--clr-border);
    margin: 32px 0;
}

.bfgw img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.bfgw .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
}

.bfgw .table-wrap table {
    margin: 0;
    min-width: 680px;
}

@media (max-width: 767px) {
    .bfgw {
        padding: 24px 16px 64px;
    }

    .bfgw h1 {
        margin-bottom: 20px;
    }

    .bfgw h2 {
        margin-top: 36px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .bfgw h3 {
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .bfgw p {
        font-size: 0.96rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .bfgw ul,
    .bfgw ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .bfgw ul li,
    .bfgw ol li {
        margin-bottom: 8px;
    }

    .bfgw blockquote {
        margin: 22px 0;
        padding: 16px;
    }

    .bfgw table,
    .bfgw thead,
    .bfgw tbody,
    .bfgw th,
    .bfgw td,
    .bfgw tr {
        display: block;
        width: 100%;
    }

    .bfgw table {
        border: 0;
        background: transparent;
    }

    .bfgw thead {
        display: none;
    }

    .bfgw tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .bfgw tbody tr {
        background: var(--clr-card);
        border: 1px solid var(--clr-border);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    .bfgw td {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
        border-bottom: 1px solid var(--clr-border);
    }

    .bfgw td:last-child {
        border-bottom: 0;
    }

    .bfgw td::before {
        content: attr(data-label);
        color: var(--clr-accent);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 479px) {
    .bfgw {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bfgw h1 {
        font-size: 1.8rem;
    }

    .bfgw h2 {
        font-size: 1.28rem;
    }

    .bfgw h3 {
        font-size: 1.08rem;
    }

    .bfgw p,
    .bfgw td,
    .bfgw ul li,
    .bfgw ol li {
        font-size: 0.93rem;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
    min-height: 420px;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

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