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

:root {
    --clr-bg: #1E101E;
    --clr-header: #05071A;
    --clr-btn-primary: #FFE600;
    --clr-btn-secondary: #26293A;
    --clr-text: #E8E8F0;
    --clr-text-muted: #9999BB;
    --clr-accent: #FFE600;
    --clr-surface: #160D1F;
    --clr-surface2: #22163A;
    --clr-border: #2E2448;
    --clr-gold: #FFE600;
    --clr-danger: #FF4455;
    --clr-success: #22D68A;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 24px rgba(255, 230, 0, .18);
    --transition: .22s ease;
}

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

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

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

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

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

a:hover {
    opacity: .82
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit
}

input, textarea, select {
    font-family: inherit
}

.xq7r2-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.b4k9w-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.p3z1v-container-fluid {
    width: 100%;
    padding: 0
}

/* ====== HEADER ====== */
.a8m5n-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px
}

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

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

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

.header-nav a {
    color: var(--clr-text);
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.header-nav a:hover {
    background: rgba(255, 230, 0, .08);
    color: var(--clr-gold)
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

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

.header-online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: blink 1.6s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap
}

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

.btn-primary:hover {
    background: #fff176;
    box-shadow: var(--shadow-glow);
    opacity: 1
}

.btn-secondary {
    background: var(--clr-btn-secondary);
    color: var(--clr-text)
}

.btn-secondary:hover {
    background: #363a50;
    opacity: 1
}

.btn-sm {
    padding: 7px 14px;
    font-size: .82rem
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem
}

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

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

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all .3s
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--clr-header);
    z-index: 999;
    padding: 80px 20px 24px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: var(--clr-text);
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--clr-border)
}

.mobile-menu a:hover {
    background: rgba(255, 230, 0, .06);
    color: var(--clr-gold)
}

.mobile-menu-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px
}

.mobile-menu-actions .btn {
    flex: 1
}

/* ====== HERO ====== */
.v9d3k-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-surface)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hellspin-baner.png');
    background-size: cover;
    background-position: center top
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 6, 24, .95) 0%, rgba(14, 6, 24, .7) 50%, rgba(14, 6, 24, .2) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 230, 0, .12);
    border: 1px solid rgba(255, 230, 0, .3);
    color: var(--clr-gold);
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff
}

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

.hero-sub {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.hero-meta {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.hero-meta-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1.1
}

.hero-meta-label {
    font-size: .76rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ====== SECTIONS ====== */
.f2p8r-section {
    padding: 56px 0
}

.f2p8r-section:nth-child(even) {
    background: var(--clr-surface)
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff
}

.section-sub {
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    font-size: .95rem
}

.section-header {
    margin-bottom: 32px
}

.section-header .section-title {
    margin-bottom: 4px
}

/* ====== TABLE GENERAL INFO ====== */
.casino-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface2);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border)
}

.casino-info-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
    vertical-align: middle
}

.casino-info-table tr:last-child td {
    border-bottom: none
}

.casino-info-table tr:hover td {
    background: rgba(255, 230, 0, .04)
}

.cit-param {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text-muted);
    width: 240px;
    font-weight: 500
}

.cit-param svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-gold)
}

.cit-value {
    color: var(--clr-text);
    font-weight: 500
}

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

.table-scroll::-webkit-scrollbar {
    height: 4px
}

.table-scroll::-webkit-scrollbar-track {
    background: var(--clr-surface)
}

.table-scroll::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 2px
}

/* ====== JACKPOTS ====== */
.jackpot-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px
}

.jackpot-card {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden
}

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

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

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    line-height: 1
}

.jackpot-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--clr-gold);
    font-variant-numeric: tabular-nums;
    transition: color .3s
}

.jackpot-currency {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-top: 4px
}

/* ====== MIRRORS ====== */
.mirrors-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px
}

.mirrors-time svg {
    width: 16px;
    height: 16px;
    color: var(--clr-success)
}

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface2);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border)
}

.mirrors-table th {
    background: rgba(255, 230, 0, .06);
    color: var(--clr-text-muted);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border)
}

.mirrors-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(46, 36, 72, .6);
    font-size: .9rem;
    vertical-align: middle
}

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

.mirrors-table tr:hover td {
    background: rgba(255, 230, 0, .03)
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--clr-success)
}

.mirror-status-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: blink 2s infinite
}

.mirror-link {
    color: var(--clr-gold);
    font-weight: 600;
    font-size: .88rem
}

/* ====== VIDEO ====== */
.video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/9;
    width: 100%
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

/* ====== WHEEL ====== */
.wheel-section-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: center
}

.wheel-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 230, 0, .2);
    display: block
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 22px solid var(--clr-gold);
    filter: drop-shadow(0 2px 6px rgba(255, 230, 0, .5))
}

.wheel-center-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.wheel-spin-btn {
    background: var(--clr-gold);
    color: #05071A;
    font-weight: 900;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 230, 0, .4);
    transition: transform .15s, box-shadow .15s;
    pointer-events: all
}

.wheel-spin-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 28px rgba(255, 230, 0, .55)
}

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

.wheel-info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.wheel-result {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    transition: all .3s
}

.wheel-result.win {
    border-color: var(--clr-gold);
    background: rgba(255, 230, 0, .07)
}

.wheel-result.lose {
    border-color: var(--clr-danger);
    background: rgba(255, 68, 85, .07)
}

.wheel-result-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff
}

.wheel-result-sub {
    font-size: .9rem;
    color: var(--clr-text-muted)
}

.wheel-result.win .wheel-result-title {
    color: var(--clr-gold)
}

.wheel-result.lose .wheel-result-title {
    color: var(--clr-danger)
}

/* ====== CONTENT REVIEW ====== */
.m7x4q-review-content {
    background: var(--clr-surface2);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--clr-border)
}

.m7x4q-review-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px
}

.m7x4q-review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px
}

.m7x4q-review-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin: 18px 0 8px
}

.m7x4q-review-content p {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: .95rem
}

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

.m7x4q-review-content ul {
    list-style: disc
}

.m7x4q-review-content ol {
    list-style: decimal
}

.m7x4q-review-content li {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: .93rem
}

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

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

.m7x4q-review-content em {
    font-style: italic;
    color: var(--clr-text-muted)
}

.m7x4q-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.m7x4q-review-content table th {
    background: rgba(255, 230, 0, .07);
    padding: 10px 14px;
    text-align: left;
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--clr-border)
}

.m7x4q-review-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(46, 36, 72, .5);
    font-size: .9rem
}

.m7x4q-review-content table tr:last-child td {
    border-bottom: none
}

.m7x4q-review-content blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 12px 20px;
    background: rgba(255, 230, 0, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 16px;
    color: var(--clr-text-muted);
    font-style: italic
}

.m7x4q-review-content img {
    border-radius: var(--radius-md);
    margin: 16px 0
}

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

/* ====== AUTHOR ====== */
.author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 32px
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-btn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--clr-gold);
    flex-shrink: 0
}

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

.author-title {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px
}

.author-bio {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.55
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 8px
}

.author-links a {
    font-size: .8rem;
    color: var(--clr-gold);
    display: flex;
    align-items: center;
    gap: 4px
}

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

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

.faq-item.open {
    border-color: rgba(255, 230, 0, .25)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--clr-text);
    font-size: .95rem;
    font-weight: 600;
    transition: color var(--transition)
}

.faq-question:hover {
    color: var(--clr-gold)
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-text-muted);
    transition: transform .3s
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--clr-gold)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease
}

.faq-item.open .faq-answer {
    max-height: 400px
}

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

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

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

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

.footer-brand-text {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--clr-btn-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition)
}

.footer-social a:hover {
    background: rgba(255, 230, 0, .15)
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: var(--clr-text-muted)
}

.footer-col-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px
}

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

.footer-links a {
    font-size: .87rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--clr-gold)
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px
}

.footer-logo-chip {
    background: var(--clr-btn-secondary);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.footer-legal {
    font-size: .75rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 680px
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline
}

.footer-copy {
    font-size: .8rem;
    color: #666;
    white-space: nowrap
}

/* ====== STICKY WIDGET ====== */
.k3n7x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #05071A 0%, #0e0525 100%);
    border-top: 2px solid var(--clr-gold);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.widget-promo {
    display: flex;
    align-items: center;
    gap: 12px
}

.widget-badge {
    background: var(--clr-gold);
    color: #05071A;
    font-size: .72rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
    flex-shrink: 0
}

.widget-text {
    font-size: .88rem;
    color: #fff;
    font-weight: 600
}

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

.widget-code {
    display: flex;
    align-items: center;
    gap: 8px
}

.widget-code-box {
    background: var(--clr-btn-secondary);
    border: 1px dashed rgba(255, 230, 0, .4);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: .1em
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    padding: 4px;
    cursor: pointer;
    margin-left: 6px;
    display: flex;
    align-items: center
}

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

@media (max-width: 640px) {
    .widget-code {
        display: none
    }
}

/* ====== UTILS ====== */
.text-gold {
    color: var(--clr-gold)
}

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

.text-center {
    text-align: center
}

.mt1 {
    margin-top: 8px
}

.mt2 {
    margin-top: 16px
}

.mt3 {
    margin-top: 24px
}

.mt4 {
    margin-top: 32px
}

.mb1 {
    margin-bottom: 8px
}

.mb2 {
    margin-bottom: 16px
}

.mb3 {
    margin-bottom: 24px
}

.gap-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 230, 0, .1);
    color: var(--clr-gold);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 40px 0
}

/* ====== INFO PAGE ====== */
.info-content {
    background: var(--clr-surface2);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--clr-border);
    margin: 40px 0
}

.info-content h1 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff
}

.info-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 10px
}

.info-content p {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: .93rem
}

.info-content ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 14px
}

.info-content li {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: .9rem
}

.info-content a {
    color: var(--clr-gold);
    text-decoration: underline
}

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

.wp-block-spacer {
    height: 32px
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 0
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: absolute;
    left: -9999px
}

.skip-link:focus {
    left: 6px;
    top: 6px
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns:1fr 1fr
    }

    .wheel-section-inner {
        grid-template-columns:1fr;
        text-align: center
    }

    .wheel-wrap {
        width: 280px;
        height: 280px
    }
}

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

    .burger-btn {
        display: flex
    }

    .hero-title {
        font-size: 2rem
    }

    .section-title {
        font-size: 1.4rem
    }

    .f2p8r-section {
        padding: 40px 0
    }

    .m7x4q-review-content {
        padding: 24px
    }

    .info-content {
        padding: 24px
    }

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

    .footer-bottom {
        flex-direction: column
    }

    .cit-param {
        width: 160px;
        font-size: .82rem
    }

    .casino-info-table td {
        padding: 11px 12px
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

    .hero-actions .btn {
        justify-content: center
    }

    .b4k9w-container {
        padding: 0 14px
    }

    .jackpot-grid {
        grid-template-columns:1fr 1fr
    }

    .k3n7x-widget {
        flex-wrap: wrap
    }
}

.xgq7-unused-block {
    display: none;
    opacity: 0;
    pointer-events: none
}

.f9k2m-shadow-layer {
    position: absolute;
    z-index: -1;
    pointer-events: none
}

.p4d8r-overlay {
    background: transparent;
    display: none
}

[data-wpc-id] {
    opacity: 1
}

[data-elementor-type] {
    display: block
}
