:root {
    --clr-bg: #1C1C1C;
    --clr-header: #000000;
    --clr-accent: #FFDD00;
    --clr-accent-dark: #e6c800;
    --clr-text: #f0f0f0;
    --clr-text-muted: #aaaaaa;
    --clr-card: #242424;
    --clr-card2: #2a2a2a;
    --clr-border: #333333;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-main: 'Open Sans', 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

/* === UTILITY === */
.x7f2a {
    display: none;
}

.q9z1m {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.k3p8n {
    font-size: 0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

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

.section-wrap {
    padding: 60px 0;
}

.section-wrap + .section-wrap {
    border-top: 1px solid var(--clr-border);
}

/* === HEADER === */
#wr-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--clr-accent);
    box-shadow: 0 2px 20px rgba(255, 221, 0, 0.08);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    gap: 12px;
    max-width: 1320px;
    margin: 0 auto;
}

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

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

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

.hdr-nav ul li a {
    color: var(--clr-text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.hdr-nav ul li a:hover {
    background: rgba(255, 221, 0, 0.12);
    color: var(--clr-accent);
}

.hdr-online {
    font-size: 0.78rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

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

.btn-login {
    background: transparent;
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-signup {
    background: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    color: #000;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background: var(--clr-accent-dark);
    color: #000;
    box-shadow: 0 0 16px rgba(255, 221, 0, 0.4);
}

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

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

.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: #111;
    border-top: 1px solid var(--clr-border);
    padding: 16px;
}

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

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav ul li a {
    display: block;
    color: var(--clr-text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: background 0.2s;
}

.mobile-nav ul li a:hover {
    background: rgba(255, 221, 0, 0.1);
    color: var(--clr-accent);
}

/* === HERO SLIDER === */
#wr-hero {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 48px;
    animation: fadeInUp 0.6s ease both;
}

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

.hero-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(255, 221, 0, 0.35);
}

.hero-cta:hover {
    background: var(--clr-accent-dark);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 221, 0, 0.5);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 221, 0, 0.3);
    color: var(--clr-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    transition: background 0.2s;
}

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

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

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

/* === JACKPOTS === */
.jackpot-wrap {
    background: linear-gradient(135deg, #1a1a00 0%, #1C1C1C 100%);
    border: 1px solid rgba(255, 221, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 0 12px;
}

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

.jackpot-card {
    flex: 1 1 220px;
    background: #0d0d00;
    border: 1px solid rgba(255, 221, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
}

.jackpot-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.jackpot-card.grand .jackpot-tier {
    color: #f59e0b;
}

.jackpot-card.major .jackpot-tier {
    color: var(--clr-accent);
}

.jackpot-amount {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}

.jackpot-card.grand .jackpot-amount {
    color: #f59e0b;
    font-size: clamp(2rem, 4vw, 3rem);
}

.jackpot-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

/* === TOURNAMENTS === */
.tournament-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tournament-card {
    flex: 1 1 280px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.tournament-header {
    background: linear-gradient(135deg, #1a1500, #2a2200);
    border-bottom: 2px solid var(--clr-accent);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tournament-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.tournament-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--clr-text);
}

.tournament-body {
    padding: 18px 20px;
}

.tournament-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.tournament-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tournament-prize {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.tournament-timer {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.tournament-timer strong {
    color: #f87171;
    font-variant-numeric: tabular-nums;
    display: block;
    font-size: 1rem;
}

.btn-tournament {
    display: block;
    text-align: center;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px;
    margin: 14px 20px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s;
}

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

/* === BONUSES === */
.bonus-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    flex: 1 1 280px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.bonus-badge {
    background: var(--clr-accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    display: inline-block;
    border-radius: 0 0 var(--radius-sm) 0;
    position: absolute;
    top: 0;
    left: 0;
}

.bonus-top {
    background: linear-gradient(135deg, #1a1500 0%, #2d2500 100%);
    border-bottom: 2px solid var(--clr-accent);
    padding: 32px 20px 20px;
    position: relative;
    text-align: center;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.bonus-subtitle {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.bonus-body {
    padding: 16px 20px;
    flex: 1;
}

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

.bonus-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.bonus-conditions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.bonus-tag {
    background: rgba(255, 221, 0, 0.1);
    border: 1px solid rgba(255, 221, 0, 0.25);
    color: var(--clr-accent);
    font-size: 0.75rem;
    padding: 3px 9px;
    border-radius: 20px;
}

.btn-bonus {
    display: block;
    text-align: center;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    margin: 0 20px 20px;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-bonus:hover {
    background: var(--clr-accent-dark);
    color: #000;
    box-shadow: 0 0 14px rgba(255, 221, 0, 0.35);
}

/* === LIVE GAMES === */
.games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.game-card {
    flex: 1 1 160px;
    max-width: 220px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.game-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    background: #111;
    overflow: hidden;
    position: relative;
}

.game-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-img-wrap img {
    transform: scale(1.06);
}

.game-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.game-body {
    padding: 12px;
    width: 100%;
}

.game-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 10px;
}

.btn-game {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s;
}

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

/* === WHEEL OF FORTUNE === */
.wheel-section {
    background: linear-gradient(135deg, #111100 0%, #1C1C1C 100%);
    border: 1px solid rgba(255, 221, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    margin: 0 12px;
}

.wheel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wheel-canvas-wrap {
    position: relative;
    display: inline-block;
}

#wheelCanvas {
    display: block;
    filter: drop-shadow(0 0 24px rgba(255, 221, 0, 0.25));
}

.wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--clr-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.wheel-info {
    max-width: 300px;
    text-align: left;
}

.wheel-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.wheel-info p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-spin {
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(255, 221, 0, 0.3);
}

.btn-spin:hover:not(:disabled) {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 221, 0, 0.45);
}

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

.wheel-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 221, 0, 0.08);
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-md);
    display: none;
    animation: fadeInUp 0.4s ease both;
}

.wheel-result.show {
    display: block;
}

.wheel-result-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.wheel-result-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.btn-claim {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

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

/* === CONTENT BLOCK === */
.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
    margin: 0 12px;
}

/* Bare tag styling for injected content */
.content-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 1.5em 0 0.6em;
}

.content-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 1.3em 0 0.5em;
}

.content-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 1.1em 0 0.4em;
}

.content-block p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1em;
}

.content-block ul, .content-block ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

.content-block ul li {
    list-style: disc;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 4px;
}

.content-block ol li {
    list-style: decimal;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 4px;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    overflow-x: auto;
    display: block;
}

.content-block table th, .content-block table td {
    border: 1px solid var(--clr-border);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.9rem;
}

.content-block table th {
    background: rgba(255, 221, 0, 0.1);
    color: var(--clr-accent);
    font-weight: 700;
}

.content-block table td {
    color: var(--clr-text-muted);
}

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

.content-block strong {
    color: var(--clr-text);
    font-weight: 700;
}

.content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 8px 16px;
    background: rgba(255, 221, 0, 0.05);
    margin: 1em 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

/* === AUTHOR === */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 28px 12px 0;
}

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

.author-info {
    flex: 1;
}

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

.author-role {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin: 4px 0 8px;
    line-height: 1.5;
}

.author-link {
    font-size: 0.82rem;
    color: var(--clr-accent);
}

/* === REVIEWS === */
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1 1 260px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
}

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

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

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text);
}

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

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

.review-stars svg {
    color: #f59e0b;
}

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

/* === REVIEW FORM === */
.review-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 28px 24px;
    max-width: 560px;
    margin-top: 28px;
}

.review-form-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.form-field {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.form-field input, .form-field textarea {
    background: #111;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: border-color 0.2s;
    width: 100%;
    outline: none;
}

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

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

.btn-submit-review {
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit-review:hover {
    background: var(--clr-accent-dark);
}

.form-success {
    display: none;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    color: #4ade80;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-top: 12px;
}

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

/* === FOOTER === */
#wr-footer {
    background: var(--clr-header);
    border-top: 2px solid rgba(255, 221, 0, 0.2);
    margin-top: 40px;
}

.ftr-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px 24px;
}

.ftr-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.ftr-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.ftr-nav ul li a {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    transition: color 0.2s;
}

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

.ftr-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.ftr-payments, .ftr-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ftr-payment-badge, .ftr-provider-badge {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.ftr-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
    text-align: center;
}

.ftr-legal {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.ftr-copyright {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 10px;
}

/* === STICKY WIDGET === */
#wr-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1a1500 0%, #000 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(255, 221, 0, 0.12);
}

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

.widget-text span {
    color: var(--clr-accent);
    font-weight: 700;
}

.btn-widget {
    background: var(--clr-accent);
    color: #000 !important;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 9px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(255, 221, 0, 0.3);
}

.btn-widget:hover {
    background: var(--clr-accent-dark);
    color: #000 !important;
    transform: scale(1.03);
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px;
    margin-left: 4px;
}

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

body {
    padding-bottom: 70px;
}

/* === FAQ === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-item.open {
    border-color: rgba(255, 221, 0, 0.4);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text);
    user-select: none;
    gap: 12px;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s, border-color 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

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

/* === SLIDER MOBILE === */
.slider-mobile-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.slider-mobile-wrap::-webkit-scrollbar {
    display: none;
}

.slider-mobile-inner {
    display: flex;
    gap: 16px;
    min-width: min-content;
    padding: 4px 2px;
}

.slider-mobile-inner > * {
    flex-shrink: 0;
    width: 280px;
}

/* === BREADCRUMBS === */
.breadcrumbs {
    padding: 12px 0 0;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

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

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

.breadcrumbs span {
    margin: 0 6px;
}

/* === WP FAKE ELEMENTS === */
.wp-block-spacer {
    display: block;
}

.entry-content, .post-content {
}

.wp-block-group {
}

.elementor-widget {
}

/* unused: .site-footer-credits .wp-caption .alignleft .alignright */

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hdr-nav {
        display: none;
    }

    .hdr-online {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

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

    .games-grid .game-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hdr-inner {
        height: 56px;
    }

    .section-wrap {
        padding: 40px 0;
    }

    .jackpot-wrap, .wheel-section {
        margin: 0;
        padding: 24px 16px;
    }

    .content-block {
        padding: 20px 16px;
        margin: 0;
    }

    .author-box {
        margin: 20px 0 0;
        flex-direction: column;
    }

    .review-form-wrap {
        padding: 20px 16px;
    }

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

    .wheel-info h3 {
        font-size: 1.2rem;
    }

    .wheel-wrap {
        gap: 24px;
    }

    #wheelCanvas {
        width: 240px !important;
        height: 240px !important;
    }

    .ftr-top {
        flex-direction: column;
        gap: 24px;
    }

    .hdr-btns .btn-login, .hdr-btns .btn-signup {
        padding: 5px 10px;
        font-size: 0.78rem;
    }

    .tournament-grid, .bonus-grid, .games-grid, .reviews-grid {
        display: none;
    }

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

    .widget-text {
        display: none;
    }
}

@media (min-width: 768px) {
    .slider-mobile-wrap {
        display: none;
    }
}

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

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

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

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

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

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

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

.lire > p:first-of-type {
    font-size: 1.06rem;
}

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

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

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

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

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

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

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

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

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

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

.lire 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);
    display: table;
}

.lire thead tr {
    background: rgba(255, 221, 0, 0.08);
}

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

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

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

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

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

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

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

.lire .table-wrap table {
    margin: 0;
    min-width: 720px;
}

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

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

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

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

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

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

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

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

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

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

    .lire thead {
        display: none;
    }

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

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

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

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

    .lire 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) {
    .lire {
        padding-left: 14px;
        padding-right: 14px;
    }

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

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

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

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