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

.elementor-widget-wrap, .wp-block-group, .entry-content, .wp-caption, .alignleft, .alignright, .aligncenter, .screen-reader-text, .skip-link, .widget, .sidebar-widget, .wpcf7-form, .woocommerce-page, .woocommerce, .wc-block-grid, .et_pb_section, .et_pb_row, .et_pb_column {
    display: inherit;
}

#masthead, #colophon, #primary, #secondary, #site-header, #site-footer {
    display: inherit;
}

.page-template-default, .single-post, .category, .tag, .search-results, .archive {
    display: inherit;
}

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

:root {
    --color-bg: #1C1C1C;
    --color-bg-card: #242424;
    --color-bg-dark: #0d0d0d;
    --color-header: #000000;
    --color-accent: #FFDD00;
    --color-accent-hover: #f5ce00;
    --color-text: #e8e8e8;
    --color-text-muted: #aaaaaa;
    --color-border: #333333;
    --color-success: #2ecc71;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.25;
    font-weight: 700;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--color-accent);
    color: #000 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 221, 0, 0.35);
    color: #000 !important;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-accent) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--radius);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #000 !important;
    transform: translateY(-2px);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
}

.header-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

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

.header-nav a {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

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

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

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

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

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

.btn-login {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

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

.btn-signup {
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    color: #000 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-signup:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 221, 0, 0.4);
    color: #000 !important;
}

/* BURGER */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

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

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 16px 20px;
}

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

.mobile-menu a {
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
    transition: color var(--transition);
}

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

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ===== HERO ===== */
.hero-section {
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/casino-b.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    text-wrap: balance;
}

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

.hero-content p {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 28px;
    max-width: 480px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-badge {
    background: rgba(255, 221, 0, 0.12);
    border: 1px solid rgba(255, 221, 0, 0.3);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* PROMO CARD */
.promo-card {
    flex-shrink: 0;
    width: 320px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 8px 40px rgba(255, 221, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.1) 0%, transparent 70%);
}

.promo-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-weight: 600;
}

.promo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.promo-code-box {
    background: #0d0d0d;
    border: 1px dashed var(--color-accent);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.promo-code-val {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.promo-copy-btn {
    background: var(--color-accent);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 7px 13px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.promo-copy-btn:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

.promo-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--color-success);
    font-weight: 600;
    margin-bottom: 14px;
}

.promo-status::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-success);
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #ff9500;
    font-weight: 600;
    margin-bottom: 18px;
}

.promo-activate-btn {
    width: 100%;
    background: var(--color-accent);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    display: block;
    text-decoration: none !important;
}

.promo-activate-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.4);
    color: #000 !important;
}

/* ===== SECTION COMMON ===== */
.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 40px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 12px auto 36px;
    border-radius: 2px;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.adv-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.adv-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(255, 221, 0, 0.12);
}

.adv-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.adv-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== JACKPOT ===== */
.jackpot-section {
    background: var(--color-bg-dark);
}

.jackpot-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.jackpot-card {
    background: linear-gradient(135deg, #1a1a0a 0%, #0d0d00 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 221, 0, 0.25);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.15) 0%, transparent 70%);
}

.jackpot-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 600;
}

.jackpot-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: 4px;
    transition: all 0.5s ease;
}

.jackpot-currency {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== WINNERS ===== */
.winners-table-wrap {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 0.9rem;
}

.winners-table th {
    background: #0d0d0d;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
}

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

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

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

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.8rem;
    background: var(--color-border);
    color: #fff;
}

.rank-badge.gold {
    background: var(--color-accent);
    color: #000;
}

.rank-badge.silver {
    background: #aaa;
    color: #000;
}

.rank-badge.bronze {
    background: #cd7f32;
    color: #fff;
}

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

/* ===== LIVE GAMES ===== */
.live-games-section {
    background: var(--color-bg-dark);
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.game-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1;
    min-width: 180px;
    max-width: 210px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.game-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(255, 221, 0, 0.15);
}

.game-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: #111;
}

.game-card-body {
    padding: 16px 12px;
}

.game-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.game-live-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 12px;
}

/* Games slider on mobile */
.games-slider-wrap {
    position: relative;
}

@media (max-width: 767px) {
    .games-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        justify-content: flex-start;
    }

    .games-grid::-webkit-scrollbar {
        height: 4px;
    }

    .games-grid::-webkit-scrollbar-track {
        background: #1a1a1a;
    }

    .games-grid::-webkit-scrollbar-thumb {
        background: var(--color-accent);
        border-radius: 2px;
    }

    .game-card {
        flex: 0 0 170px;
        min-width: 170px;
        scroll-snap-align: start;
    }
}

/* ===== SLOT MINI GAME ===== */
.slot-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0d0d0d 100%);
}

.slot-machine {
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111 0%, #0d0d0d 100%);
    border: 3px solid var(--color-accent);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 0 60px rgba(255, 221, 0, 0.15), inset 0 0 40px rgba(255, 221, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.slot-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

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

.slot-reel {
    width: 80px;
    height: 80px;
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    transition: all 0.15s;
    position: relative;
    overflow: hidden;
}

.slot-reel.spinning {
    animation: reelSpin 0.1s infinite;
}

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

.slot-spin-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--color-accent);
    color: #000;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all var(--transition);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.slot-spin-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.4);
}

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

.slot-result {
    display: none;
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 8px;
}

.slot-result.win {
    display: block;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.slot-result.lose {
    display: block;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.slot-result .win-text {
    color: var(--color-success);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.slot-result .lose-text {
    color: #ff6666;
    font-weight: 600;
    font-size: 0.95rem;
}

.slot-credits {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* ===== CONTENT REVIEW BLOCK ===== */
.content-section {
    background: var(--color-bg);
}

.content-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 900px;
    margin: 0 auto;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

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

.author-info .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.author-info .author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.author-info a {
    font-size: 0.8rem;
    color: var(--color-accent);
}

/* Content (голые теги) стилизация */
.content-body h1, .content-body h2, .content-body h3, .content-body h4, .content-body h5, .content-body h6 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 1.5em 0 0.6em;
    line-height: 1.3;
}

.content-body h2 {
    font-size: 1.4rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
}

.content-body h3 {
    font-size: 1.15rem;
    color: var(--color-accent);
}

.content-body p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.1em;
}

.content-body a {
    color: var(--color-accent);
    border-bottom: 1px solid rgba(255, 221, 0, 0.3);
}

.content-body a:hover {
    border-bottom-color: var(--color-accent);
}

.content-body ul, .content-body ol {
    padding-left: 24px;
    margin-bottom: 1.2em;
}

.content-body ul {
    list-style: disc;
}

.content-body ol {
    list-style: decimal;
}

.content-body li {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 6px;
}

.content-body ul li::marker {
    color: var(--color-accent);
}

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

.content-body em, .content-body i {
    color: var(--color-text-muted);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-size: 0.9rem;
}

.content-body table th {
    background: #0d0d0d;
    color: var(--color-accent);
    font-weight: 700;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    text-align: left;
}

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

.content-body table tr:hover td {
    background: rgba(255, 221, 0, 0.04);
}

.content-body blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 12px 20px;
    background: rgba(255, 221, 0, 0.05);
    margin: 1.5em 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.content-body blockquote p {
    color: #ddd;
    font-style: italic;
    margin: 0;
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2em 0;
}

.content-body img {
    border-radius: var(--radius);
    max-width: 100%;
    margin: 1em 0;
}

.content-body pre, .content-body code {
    background: #0d0d0d;
    color: var(--color-accent);
    font-family: monospace;
    font-size: 0.88rem;
    border-radius: 6px;
}

.content-body pre {
    padding: 16px;
    overflow-x: auto;
    margin-bottom: 1em;
}

.content-body code {
    padding: 2px 6px;
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: var(--color-bg-dark);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
    border-color: rgba(255, 221, 0, 0.4);
    transform: translateY(-3px);
}

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

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

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

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

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

/* REVIEW FORM */
.review-form-wrap {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
}

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

.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    color: var(--color-success);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-header);
    border-top: 1px solid #1a1a1a;
    padding: 48px 0 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-logo-col {
    flex: 0 0 200px;
}

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

.footer-logo-col p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

.footer-nav-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

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

.footer-nav-col ul li a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

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

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

.footer-payments h4, .footer-providers h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

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

.payment-logo, .provider-logo {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--color-text-muted);
    border-bottom: 1px solid #333;
}

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

.footer-copy {
    margin-bottom: 6px;
    color: #666;
    font-size: 0.75rem;
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #0d0d0d 0%, #1a1500 50%, #0d0d0d 100%);
    border-top: 2px solid var(--color-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(255, 221, 0, 0.2);
}

.widget-text {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

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

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}

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

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

    .burger-btn {
        display: flex;
    }

    .promo-card {
        width: 100%;
        max-width: 380px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-badges {
        justify-content: center;
    }

    .footer-top {
        gap: 28px;
    }

    .footer-logo-col {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .section-wrap {
        padding: 40px 16px;
    }

    .adv-card {
        min-width: 150px;
        max-width: 180px;
    }

    .jackpot-card {
        min-width: 180px;
    }

    .game-card {
        min-width: 160px;
    }

    .review-card {
        min-width: 280px;
    }

    .content-block {
        padding: 24px 18px;
    }

    .review-form-wrap {
        padding: 24px 18px;
    }

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

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

    .bottom-widget {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 40px 10px 16px;
    }

    .widget-text {
        font-size: 0.78rem;
    }

    .footer-nav-col {
        min-width: 120px;
    }

    .winners-table {
        font-size: 0.8rem;
    }

    .winners-table th, .winners-table td {
        padding: 10px 10px;
    }

    body {
        padding-bottom: 80px;
    }
}

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

    .jackpot-amount {
        font-size: 1.5rem;
    }

    .adv-card {
        min-width: 140px;
        max-width: 160px;
        padding: 20px 14px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.wp-pagenavi, .comment-respond, .post-navigation, .breadcrumb-trail, .wpcf7-response-output,
#respond, .comments-area, .entry-footer, .post-thumbnail, .wp-post-image {
    display: none !important;
}

#wpadminbar {
    display: none !important;
}

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

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

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

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.d-none-wp, .wp-hidden-x9q2r {
    display: none !important;
}

.elementor-section-x7r2j, .elementor-row-x7r2j {
    display: inherit;
}

.yhf {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    color: #ececec;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

.yhf > *:first-child {
    margin-top: 0;
}

.yhf h1,
.yhf h2,
.yhf h3,
.yhf h4 {
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.yhf h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #ffffff;
}

.yhf h2 {
    margin: 46px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
}

.yhf h3 {
    margin: 28px 0 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
}

.yhf h4 {
    margin: 22px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #e4e4e4;
}

.yhf p {
    margin: 0 0 18px;
    color: #d9d9d9;
}

.yhf > h1 + p {
    font-size: 18px;
    color: #f0f0f0;
}

.yhf a {
    color: #ffdd00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.yhf a:hover {
    color: #ffe766;
    opacity: 1;
}

.yhf strong,
.yhf b {
    color: #ffffff;
    font-weight: 700;
}

.yhf ul,
.yhf ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.yhf li {
    margin-bottom: 10px;
    color: #d9d9d9;
}

.yhf li::marker {
    color: #ffdd00;
}

.yhf table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1d1d1d;
    border: 1px solid #363636;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.yhf tr:first-child {
    background: #101010;
}

.yhf th,
.yhf td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #363636;
}

.yhf th {
    font-size: 13px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.yhf td {
    font-size: 15px;
    color: #ececec;
}

.yhf tr:nth-child(even) td {
    background: #242424;
}

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

.yhf blockquote {
    margin: 26px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-left: 4px solid #ffdd00;
    border-radius: 0 16px 16px 0;
}

.yhf blockquote p {
    margin-bottom: 0;
    color: #f3f3f3;
}

.yhf hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

.yhf img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

@media (max-width: 991px) {
    .yhf {
        padding: 34px 18px 56px;
        border-radius: 18px;
        font-size: 15px;
    }

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

    .yhf h2 {
        margin-top: 40px;
    }

    .yhf table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .yhf {
        padding: 26px 14px 46px;
        border-radius: 16px;
        line-height: 1.66;
    }

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

    .yhf h2 {
        font-size: 24px;
        margin-top: 34px;
        margin-bottom: 14px;
    }

    .yhf h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .yhf p,
    .yhf li,
    .yhf td {
        font-size: 15px;
    }

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

    .yhf blockquote {
        padding: 16px 16px 16px 18px;
        margin: 22px 0;
        border-radius: 0 12px 12px 0;
    }

    .yhf th,
    .yhf td {
        padding: 12px 14px;
    }
}

@media (max-width: 560px) {
    .yhf {
        padding: 22px 12px 40px;
        font-size: 14px;
        border-radius: 14px;
    }

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

    .yhf > h1 + p {
        font-size: 16px;
    }

    .yhf h2 {
        font-size: 22px;
        margin-top: 30px;
    }

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

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

    .yhf table {
        white-space: normal;
        overflow: hidden;
        border-radius: 14px;
    }

    .yhf tr:first-child {
        display: none;
    }

    .yhf tbody tr,
    .yhf table tr {
        padding: 12px;
        border-bottom: 1px solid #363636;
    }

    .yhf tbody tr:last-child,
    .yhf table tr:last-child {
        border-bottom: 0;
    }

    .yhf td {
        padding: 0;
        border: 0;
        white-space: normal;
    }

    .yhf td:first-child {
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        color: #ffdd00;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .yhf td:last-child {
        font-size: 14px;
        color: #ededed;
    }

    .yhf blockquote {
        padding: 14px 14px 14px 16px;
    }
}

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

    .yhf h2 {
        font-size: 20px;
    }

    .yhf h3 {
        font-size: 17px;
    }

    .yhf p,
    .yhf li,
    .yhf td:last-child {
        font-size: 13px;
    }

    .yhf tbody tr,
    .yhf table tr {
        padding: 10px;
    }
}