/* ============================================================
   Leon Betting — Main Stylesheet v1.7
   ============================================================ */

/* Unused classes for uniquization */
.q8r3v1 {
    display: none;
}

.m7k2x9 {
    visibility: hidden;
}

.p4n6w8 {
    opacity: 0;
    pointer-events: none;
}

:root {
    --clr-bg: #121212;
    --clr-header: #222222;
    --clr-accent: #F2C94C;
    --clr-accent-d: #d4a017;
    --clr-accent-l: #f5d97a;
    --clr-text: #e8e8e8;
    --clr-text-muted: #a0a0a0;
    --clr-text-dark: #111111;
    --clr-card: #1c1c1c;
    --clr-card-hover: #242424;
    --clr-border: #2e2e2e;
    --clr-border-l: #3a3a3a;
    --clr-success: #2eb85c;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --transition: 0.28s ease;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-accent: 0 4px 20px rgba(242, 201, 76, 0.22);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body.site-body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

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

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

.logo-img {
    height: 38px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

/* Nav links */
.nav-link-item {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.nav-link-item:hover,
.nav-link-item:focus {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

/* Online counter */
.online-counter {
    white-space: nowrap;
}

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

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 184, 92, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 184, 92, 0);
    }
}

.online-text {
    font-size: 13px;
    color: var(--clr-text-muted);
}

.online-num, .online-num-mobile {
    color: var(--clr-success);
    font-weight: 700;
}

/* Header buttons */
.btn-hdr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    border: none;
}

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

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

.btn-hdr--signup {
    background: var(--clr-accent);
    color: var(--clr-text-dark);
}

.btn-hdr--signup:hover {
    background: var(--clr-accent-l);
    color: var(--clr-text-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

/* Burger */
.burger {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1.5px solid var(--clr-border-l);
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
}

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

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

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile menu */
.mobile-menu {
    background: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--clr-border);
}

.mobile-menu.is-open {
    max-height: 480px;
}

.mobile-nav-list {
    margin-bottom: 0;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    color: #cccccc;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--clr-border);
    transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav-link:hover {
    color: var(--clr-accent);
    padding-left: 6px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.72) 60%, rgba(18, 18, 18, 0.85) 100%);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(242, 201, 76, 0.12);
    border: 1px solid rgba(242, 201, 76, 0.4);
    color: var(--clr-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #d0d0d0;
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.hero-bonus-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(242, 201, 76, 0.08);
    border: 1px solid rgba(242, 201, 76, 0.35);
    border-radius: var(--radius-md);
    padding: 16px 32px;
    gap: 4px;
}

.hero-bonus-label {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-bonus-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1.1;
}

.hero-bonus-sub {
    font-size: 13px;
    color: var(--clr-text-muted);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 13px 28px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: none;
}

.btn-hero--primary {
    background: var(--clr-accent);
    color: var(--clr-text-dark);
}

.btn-hero--primary:hover {
    background: var(--clr-accent-l);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(242, 201, 76, 0.4);
}

.btn-hero--secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.btn-hero--secondary:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateY(-2px);
}

/* ============================================================
   CONTENT BLOCKS
   ============================================================ */
.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    margin-left: 4px;
    margin-right: 4px;
    transition: box-shadow var(--transition);
}

.content-block:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.55);
}

.section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 6px;
    line-height: 1.3;
}

.section-sub {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============================================================
   INFO TABLE
   ============================================================ */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.info-table tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.info-table tbody tr:hover {
    background: rgba(242, 201, 76, 0.04);
}

.info-table tbody tr:last-child {
    border-bottom: none;
}

.param-cell {
    padding: 12px 14px;
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 38%;
    vertical-align: top;
}

.value-cell {
    padding: 12px 14px;
    color: var(--clr-text);
    vertical-align: top;
}

.tag-highlight {
    display: inline-block;
    background: rgba(242, 201, 76, 0.12);
    border: 1px solid rgba(242, 201, 76, 0.3);
    color: var(--clr-accent);
    border-radius: var(--radius-sm);
    padding: 2px 10px;
    font-size: 13px;
    font-weight: 600;
}

.rating-stars {
    color: var(--clr-accent);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

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

.winners-table thead tr {
    background: rgba(242, 201, 76, 0.08);
    border-bottom: 2px solid rgba(242, 201, 76, 0.3);
}

.winners-table thead th {
    padding: 12px 14px;
    text-align: left;
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.winner-row {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.winner-row:hover {
    background: rgba(242, 201, 76, 0.05);
}

.winner-row:last-child {
    border-bottom: none;
}

.winner-row td {
    padding: 10px 14px;
    color: var(--clr-text);
    vertical-align: middle;
}

.winner-row td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
}

.winner-top td {
    background: rgba(242, 201, 76, 0.06);
}

.winner-top td:first-child {
    color: var(--clr-accent);
    font-size: 1rem;
}

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

.winner-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-accent);
    margin-right: 6px;
    flex-shrink: 0;
    vertical-align: middle;
}

/* ============================================================
   APP BLOCK
   ============================================================ */
.app-download-block {
    padding: 8px 0;
}

.app-btn {
    background: var(--clr-card-hover);
    border: 1px solid var(--clr-border-l);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    padding: 14px 18px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    cursor: pointer;
}

.app-btn:hover {
    background: rgba(242, 201, 76, 0.08);
    border-color: var(--clr-accent);
    color: var(--clr-text);
    transform: translateX(4px);
}

.app-btn svg {
    flex-shrink: 0;
}

.app-btn small {
    display: block;
    font-size: 11px;
    color: var(--clr-text-muted);
    line-height: 1.2;
}

.app-btn strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1.4;
}

.app-btn--ios svg {
    color: #c8c8c8;
}

.app-btn--android svg {
    color: #a4c639;
}

.app-btn--apk svg {
    color: var(--clr-accent);
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

/* ============================================================
   WHEEL OF FORTUNE
   ============================================================ */
.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.wheel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 24px;
}

.wheel-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(242, 201, 76, 0.5));
}

.wheel-canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--clr-border), 0 0 0 9px rgba(242, 201, 76, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: box-shadow var(--transition);
    max-width: 100%;
    height: auto;
}

.btn-spin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-accent);
    color: var(--clr-text-dark);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 36px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-spin:hover {
    background: var(--clr-accent-l);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(242, 201, 76, 0.4);
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wheel-result {
    width: 100%;
    max-width: 440px;
    margin-top: 16px;
}

.wheel-result-inner {
    background: var(--clr-card-hover);
    border: 1.5px solid rgba(242, 201, 76, 0.4);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    animation: fade-in 0.4s ease;
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

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

.result-text {
    font-size: 1rem;
    color: var(--clr-text);
    margin-bottom: 18px;
}

.btn-result {
    display: inline-block;
    background: var(--clr-accent);
    color: var(--clr-text-dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 12px 28px;
    transition: background var(--transition), transform var(--transition);
}

.btn-result:hover {
    background: var(--clr-accent-l);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
}

/* ============================================================
   ARTICLE CONTENT (bare HTML tags styling)
   ============================================================ */
.content-article {
    font-size: 15px;
    line-height: 1.75;
}

.author-box {
    background: rgba(242, 201, 76, 0.05);
    border: 1px solid rgba(242, 201, 76, 0.2);
    border-radius: var(--radius-md);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(242, 201, 76, 0.4);
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--clr-text);
    font-size: 15px;
}

.author-name a {
    color: var(--clr-accent);
}

.author-name a:hover {
    color: var(--clr-accent-l);
}

.author-role {
    display: block;
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.article-h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
}

/* Bare-tag article body styles */
.article-body {
    color: var(--clr-text);
}

.article-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border);
}

.article-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 22px 0 10px;
}

.article-body p {
    margin-bottom: 16px;
    line-height: 1.75;
}

.article-body ul,
.article-body ol {
    margin: 0 0 16px 22px;
    padding: 0;
}

.article-body li {
    margin-bottom: 6px;
    line-height: 1.65;
}

.article-body strong {
    color: var(--clr-accent);
    font-weight: 700;
}

.article-body em {
    color: var(--clr-accent-l);
    font-style: italic;
}

.article-body a {
    color: var(--clr-accent);
}

.article-body a:hover {
    color: var(--clr-accent-l);
}

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

.article-body table thead tr {
    background: rgba(242, 201, 76, 0.08);
}

.article-body table th {
    padding: 10px 14px;
    text-align: left;
    color: var(--clr-accent);
    font-weight: 700;
    border: 1px solid var(--clr-border);
    font-size: 13px;
}

.article-body table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: top;
}

.article-body table tr:hover td {
    background: rgba(242, 201, 76, 0.03);
}

.article-body blockquote {
    border-left: 3px solid var(--clr-accent);
    margin: 20px 0;
    padding: 12px 18px;
    background: rgba(242, 201, 76, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #c8c8c8;
    font-style: italic;
}

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

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

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

.faq-item:hover {
    border-color: var(--clr-border-l);
}

.faq-question {
    margin: 0;
}

.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition);
}

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

.faq-btn::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--clr-accent);
    line-height: 1;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-btn:not(.collapsed)::after {
    transform: rotate(45deg);
}

.faq-collapse {
}

.faq-answer {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
    background: var(--clr-card-hover);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    border-color: rgba(242, 201, 76, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(242, 201, 76, 0.3);
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-weight: 700;
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.3;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.star {
    width: 15px;
    height: 15px;
    fill: var(--clr-accent);
}

.star--empty {
    fill: var(--clr-border-l);
}

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

/* ---- Review Form ---- */
.review-form-block {
    background: var(--clr-card-hover);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.form-sub {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.form-label-custom {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

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

.form-input-custom {
    display: block;
    width: 100%;
    background: var(--clr-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input-custom::placeholder {
    color: #555;
}

.form-input-custom:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.12);
}

.form-textarea-custom {
    resize: vertical;
    min-height: 110px;
}

/* Interactive star rating */
.star-rating {
    display: flex;
    gap: 6px;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform var(--transition);
}

.star-btn:hover, .star-btn:focus {
    transform: scale(1.15);
}

.star-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--clr-border-l);
    transition: fill var(--transition);
}

.star-btn.is-active svg,
.star-btn.is-hover svg {
    fill: var(--clr-accent);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-accent);
    color: var(--clr-text-dark);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 28px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    margin-top: 4px;
}

.btn-submit:hover {
    background: var(--clr-accent-l);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(46, 184, 92, 0.1);
    border: 1px solid rgba(46, 184, 92, 0.35);
    border-radius: var(--radius-sm);
    color: var(--clr-success);
    font-size: 14px;
    font-weight: 600;
}

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

.footer-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
}

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

.footer-license {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-legal {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: rgba(242, 201, 76, 0.1);
    border: 1px solid rgba(242, 201, 76, 0.25);
    color: var(--clr-accent);
    border-radius: 4px;
    padding: 2px 8px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-link {
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-link:hover {
    color: var(--clr-accent);
    padding-left: 3px;
}

.footer-payments, .footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge, .provider-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    border-radius: var(--radius-sm);
    padding: 3px 10px;
}

.footer-legal {
    font-size: 11px;
    color: #555;
    line-height: 1.6;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(242, 201, 76, 0.1);
    border: 1.5px solid var(--clr-accent);
    border-radius: 50%;
    color: var(--clr-accent);
    font-size: 12px;
    font-weight: 800;
}

/* ============================================================
   BOTTOM WIDGET
   ============================================================ */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1a1a1a;
    border-top: 2px solid var(--clr-accent);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform var(--transition);
}

.bottom-widget.is-hidden {
    transform: translateY(100%);
}

.bw-inner {
    flex-wrap: wrap;
}

.bw-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.bw-bonus-label {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bw-bonus-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-accent);
    white-space: nowrap;
}

.bw-btn {
    display: inline-flex;
    align-items: center;
    background: var(--clr-accent);
    color: var(--clr-text-dark);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 10px 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.bw-btn:hover {
    background: var(--clr-accent-l);
    color: var(--clr-text-dark);
    transform: translateY(-1px);
}

.bw-close {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color var(--transition);
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in 0.5s ease both;
}

/* Unused elements for uniquization */
.ep7x3n {
    background: transparent;
    width: 0;
    height: 0;
    overflow: hidden;
}

.q1w2e3r {
    display: none;
}

div.wp-caption {
    display: none;
}

div.wp-block {
    display: none;
}

.elementor-section {
    display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .content-block {
        padding: 20px 16px;
    }

    .hero-content {
        padding: 60px 16px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-bonus-amount {
        font-size: 1.4rem;
    }

    .btn-hero {
        font-size: 14px;
        padding: 11px 20px;
    }
}

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

    .logo-img {
        height: 32px;
    }

    .hero-section {
        min-height: 380px;
    }

    .hero-content {
        padding: 48px 12px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .param-cell {
        width: 44%;
    }

    .content-block {
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-md);
    }

    .bw-inner {
        padding: 10px 16px;
    }

    .bw-bonus-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-hdr {
        font-size: 12px;
        padding: 6px 10px;
    }

    .param-cell {
        font-size: 12px;
    }

    .value-cell {
        font-size: 12px;
    }

    .winners-table thead th,
    .winner-row td {
        font-size: 12px;
        padding: 8px 8px;
    }
}

.vctrshs {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 20px 72px;
    color: #e7e7e7;
    font: 400 17px/1.75 Arial, sans-serif;
}

.vctrshs h1,
.vctrshs h2,
.vctrshs h3 {
    margin: 0;
    line-height: 1.25;
    font-weight: 800;
}

.vctrshs h1 {
    margin-bottom: 24px;
    font-size: clamp(32px, 4.6vw, 48px);
    color: #ffffff;
}

.vctrshs h2 {
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: clamp(24px, 3vw, 32px);
    color: #f2c94c;
}

.vctrshs h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: clamp(20px, 2.4vw, 24px);
    color: #ffffff;
}

.vctrshs p,
.vctrshs ul,
.vctrshs ol,
.vctrshs table,
.vctrshs blockquote {
    margin: 0 0 20px;
}

.vctrshs p {
    color: #dddddd;
}

.vctrshs a {
    color: #f2c94c;
    text-decoration: none;
    word-break: break-word;
    transition: color .2s ease, opacity .2s ease;
}

.vctrshs a:hover {
    color: #ffd96a;
}

.vctrshs ul,
.vctrshs ol {
    padding-left: 24px;
}

.vctrshs li {
    margin-bottom: 10px;
}

.vctrshs li::marker {
    color: #f2c94c;
}

.vctrshs strong {
    color: #ffffff;
    font-weight: 700;
}

.vctrshs table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid #2c2c2c;
    border-radius: 16px;
    background: #181818;
    display: block;
    overflow-x: auto;
}

.vctrshs thead {
    background: #232323;
}

.vctrshs th,
.vctrshs td {
    padding: 14px 16px;
    border: 1px solid #2c2c2c;
    text-align: left;
    vertical-align: top;
    min-width: 180px;
}

.vctrshs th {
    color: #f2c94c;
    font-size: 14px;
    font-weight: 700;
}

.vctrshs td {
    color: #dddddd;
    font-size: 15px;
}

.vctrshs blockquote {
    padding: 18px 20px;
    border-left: 4px solid #f2c94c;
    border-radius: 12px;
    background: #1b1b1b;
    color: #f0f0f0;
}

.vctrshs blockquote p:last-child {
    margin-bottom: 0;
}

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

.vctrshs > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .vctrshs {
        padding: 40px 18px 60px;
        font-size: 16px;
    }

    .vctrshs h2 {
        margin-top: 32px;
    }

    .vctrshs th,
    .vctrshs td {
        padding: 13px 14px;
    }
}

@media (max-width: 767px) {
    .vctrshs {
        padding: 28px 16px 48px;
        font-size: 15px;
        line-height: 1.7;
    }

    .vctrshs h1 {
        margin-bottom: 18px;
    }

    .vctrshs h2 {
        margin-top: 28px;
        margin-bottom: 14px;
    }

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

    .vctrshs p,
    .vctrshs ul,
    .vctrshs ol,
    .vctrshs table,
    .vctrshs blockquote {
        margin-bottom: 16px;
    }

    .vctrshs ul,
    .vctrshs ol {
        padding-left: 20px;
    }

    .vctrshs li {
        margin-bottom: 8px;
    }

    .vctrshs table {
        border-radius: 12px;
    }

    .vctrshs th,
    .vctrshs td {
        min-width: 160px;
        padding: 12px;
        font-size: 14px;
    }

    .vctrshs blockquote {
        padding: 16px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .vctrshs {
        padding: 24px 14px 40px;
        font-size: 14px;
    }

    .vctrshs h1 {
        font-size: 28px;
    }

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

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

    .vctrshs th,
    .vctrshs td {
        min-width: 140px;
        padding: 10px;
        font-size: 13px;
    }

    .vctrshs blockquote {
        padding: 14px;
    }
}