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

:root {
    --bg: #1C1F27;
    --bg2: #222630;
    --bg3: #272c38;
    --green: #A3F322;
    --green-dark: #7dc415;
    --text: #e8eaf0;
    --text-muted: #8b92a8;
    --border: #313848;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

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

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

a {
    color: var(--green);
    text-decoration: none;
    transition: color .2s;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

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

.tb-section {
    padding: 64px 0;
}

.tb-section--sm {
    padding: 40px 0;
}

.tb-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.tb-heading span {
    color: var(--green);
}

.tb-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

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

.btn--login {
    background: var(--bg3);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--login:hover {
    background: var(--bg2);
    color: var(--text);
}

.btn--reg {
    background: var(--green);
    color: #0e1017;
    font-weight: 700;
}

.btn--reg:hover {
    background: var(--green-dark);
    color: #0e1017;
    box-shadow: 0 6px 20px rgba(163, 243, 34, .3);
}

.btn--hero {
    background: var(--green);
    color: #0e1017;
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 800;
}

.btn--hero:hover {
    background: var(--green-dark);
    color: #0e1017;
    box-shadow: 0 8px 28px rgba(163, 243, 34, .35);
}

/* ---- HEADER ---- */
.a3f7b2-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1a1d24;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.a3f7b2-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.a3f7b2-logo img {
    height: 44px;
    width: auto;
}

.a3f7b2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.a3f7b2-nav__link {
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.a3f7b2-nav__link:hover {
    color: var(--text);
    background: var(--bg3);
}

.a3f7b2-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.a3f7b2-online__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}

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

.a3f7b2-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.a3f7b2-burger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

.a3f7b2-burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

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

.xd92k1-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/turbo-banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.xd92k1-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 31, 39, .92) 0%, rgba(28, 31, 39, .6) 60%, rgba(28, 31, 39, .1) 100%);
    z-index: 1;
}

.xd92k1-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.xd92k1-hero__badge {
    display: inline-block;
    background: rgba(163, 243, 34, .15);
    border: 1px solid rgba(163, 243, 34, .4);
    color: var(--green);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.xd92k1-hero__title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    max-width: 580px;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.xd92k1-hero__title em {
    color: var(--green);
    font-style: normal;
}

.xd92k1-hero__sub {
    font-size: 1.05rem;
    color: rgba(232, 234, 240, .85);
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.xd92k1-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.xd92k1-hero__trust {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.xd92k1-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    color: rgba(232, 234, 240, .75);
}

.xd92k1-hero__trust-icon {
    color: var(--green);
    font-size: 1rem;
}

/* ---- BREADCRUMBS ---- */
.p8m3c5-breadcrumbs {
    background: var(--bg2);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.p8m3c5-breadcrumbs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: .82rem;
}

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

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

.p8m3c5-breadcrumbs__item a:hover {
    color: var(--green);
}

.p8m3c5-breadcrumbs__sep {
    color: var(--border);
}

.p8m3c5-breadcrumbs__item--current {
    color: var(--green);
    font-weight: 500;
}

/* ---- TABLE INFO ---- */
.q7t2r9-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.q7t2r9-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.q7t2r9-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: .92rem;
    vertical-align: middle;
}

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

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

.q7t2r9-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 42%;
    white-space: nowrap;
}

.q7t2r9-table td:last-child {
    color: var(--text);
    font-weight: 400;
}

.q7t2r9-table .td-val--green {
    color: var(--green);
    font-weight: 600;
}

/* ---- JACKPOTS ---- */
.k5j8n4-jackpots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.k5j8n4-jackpot {
    background: linear-gradient(135deg, #22263050 0%, #1a1d2460 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.k5j8n4-jackpot::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 243, 34, .12) 0%, transparent 70%);
}

.k5j8n4-jackpot:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.k5j8n4-jackpot__label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.k5j8n4-jackpot__amount {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--green);
    letter-spacing: -.02em;
}

.k5j8n4-jackpot__game {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ---- SCREENSHOTS ---- */
.f3b6x7-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.f3b6x7-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.f3b6x7-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: transform .3s;
}

.f3b6x7-slide img:hover {
    transform: scale(1.03);
}

/* ---- BONUSES ---- */
.m2p4w8-bonuses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.m2p4w8-bonus {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}

.m2p4w8-bonus:hover {
    transform: translateY(-4px);
    border-color: rgba(163, 243, 34, .4);
}

.m2p4w8-bonus__icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    background: rgba(163, 243, 34, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m2p4w8-bonus__tag {
    display: inline-block;
    font-size: .72rem;
    background: rgba(163, 243, 34, .15);
    color: var(--green);
    border-radius: 4px;
    padding: 2px 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    align-self: flex-start;
}

.m2p4w8-bonus__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.m2p4w8-bonus__amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
}

.m2p4w8-bonus__desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.m2p4w8-bonus__btn {
    margin-top: auto;
    width: 100%;
    padding: 11px;
    text-align: center;
}

/* ---- SLOT GAME ---- */
.h6s1q3-slot {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.h6s1q3-slot__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.h6s1q3-slot__sub {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 30px;
}

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

.h6s1q3-reel {
    width: 80px;
    height: 90px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
    transition: border-color .3s;
}

.h6s1q3-reel.spinning {
    animation: reel-spin .12s linear infinite;
    border-color: var(--green);
}

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

.h6s1q3-reel.win {
    border-color: var(--green);
    box-shadow: 0 0 16px rgba(163, 243, 34, .35);
}

.h6s1q3-spin-btn {
    background: var(--green);
    color: #0e1017;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 44px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.h6s1q3-spin-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 243, 34, .35);
}

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

.h6s1q3-result {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 600;
    display: none;
}

.h6s1q3-result.win-result {
    display: block;
    background: rgba(163, 243, 34, .12);
    border: 1px solid rgba(163, 243, 34, .4);
    color: var(--green);
}

.h6s1q3-result.lose-result {
    display: block;
    background: rgba(255, 90, 90, .1);
    border: 1px solid rgba(255, 90, 90, .25);
    color: #ff6b6b;
}

.h6s1q3-win-actions {
    margin-top: 14px;
}

/* ---- REVIEW CONTENT ---- */
.n4v7d2-review-content {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px;
}

.n4v7d2-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.n4v7d2-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
}

.n4v7d2-author__name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.n4v7d2-author__bio {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.4;
}

.n4v7d2-author__link {
    color: var(--green);
    font-size: .8rem;
}

.n4v7d2-content-area {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--text);
}

.n4v7d2-content-area h2, .n4v7d2-content-area h3, .n4v7d2-content-area h4 {
    color: #fff;
    margin: 24px 0 12px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.n4v7d2-content-area h2 {
    font-size: 1.4rem;
}

.n4v7d2-content-area h3 {
    font-size: 1.15rem;
}

.n4v7d2-content-area p {
    margin-bottom: 14px;
}

.n4v7d2-content-area ul, .n4v7d2-content-area ol {
    margin: 12px 0 16px 22px;
}

.n4v7d2-content-area li {
    margin-bottom: 6px;
}

.n4v7d2-content-area a {
    color: var(--green);
}

.n4v7d2-content-area strong {
    color: #fff;
    font-weight: 600;
}

.n4v7d2-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.n4v7d2-content-area table th,
.n4v7d2-content-area table td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
}

.n4v7d2-content-area table th {
    background: var(--bg3);
    color: #fff;
    font-weight: 600;
}

.n4v7d2-content-area blockquote {
    border-left: 3px solid var(--green);
    padding: 10px 18px;
    margin: 16px 0;
    background: rgba(163, 243, 34, .06);
    border-radius: 0 6px 6px 0;
    color: var(--text-muted);
}

/* ---- REVIEWS ---- */
.c9e5f1-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.c9e5f1-review {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s;
}

.c9e5f1-review:hover {
    border-color: rgba(163, 243, 34, .35);
}

.c9e5f1-review__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.c9e5f1-review__name {
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
}

.c9e5f1-review__date {
    font-size: .75rem;
    color: var(--text-muted);
}

.c9e5f1-review__stars {
    display: flex;
    gap: 3px;
}

.c9e5f1-review__stars svg {
    width: 16px;
    height: 16px;
}

.c9e5f1-review__text {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- REVIEW FORM ---- */
.c9e5f1-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px;
    max-width: 640px;
    margin: 0 auto;
}

.c9e5f1-form__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.tb-field label {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tb-field input,
.tb-field textarea {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 11px 14px;
    font-size: .92rem;
    font-family: 'Inter', Arial, sans-serif;
    transition: border-color .2s;
    width: 100%;
}

.tb-field input:focus,
.tb-field textarea:focus {
    outline: none;
    border-color: rgba(163, 243, 34, .5);
}

.tb-field textarea {
    resize: vertical;
    min-height: 100px;
}

.c9e5f1-form__success {
    display: none;
    background: rgba(163, 243, 34, .12);
    border: 1px solid rgba(163, 243, 34, .4);
    color: var(--green);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    margin-top: 14px;
}

/* ---- FOOTER ---- */
.r5k8m2-footer {
    background: #191c23;
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.r5k8m2-footer__grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.r5k8m2-footer__logo img {
    height: 40px;
    margin-bottom: 14px;
}

.r5k8m2-footer__logo p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.r5k8m2-footer__nav h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

.r5k8m2-footer__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.r5k8m2-footer__nav ul li a {
    font-size: .88rem;
    color: var(--text-muted);
    transition: color .2s;
}

.r5k8m2-footer__nav ul li a:hover {
    color: var(--green);
}

.r5k8m2-footer__logos h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

.r5k8m2-footer__payment-logos,
.r5k8m2-footer__provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.r5k8m2-logo-badge {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.r5k8m2-footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    text-align: center;
}

.r5k8m2-footer__copyright {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.r5k8m2-footer__legal {
    font-size: .73rem;
    color: #5a6278;
    margin-top: 8px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- STICKY WIDGET ---- */
.w8j6c4-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1a1d24 0%, #1C1F27 100%);
    border-top: 2px solid var(--green);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4);
}

.w8j6c4-widget__text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.w8j6c4-widget__icon {
    font-size: 1.6rem;
}

.w8j6c4-widget__title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.w8j6c4-widget__sub {
    font-size: .78rem;
    color: var(--text-muted);
}

.w8j6c4-widget__close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}

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

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

.anim-fadeup {
    opacity: 0;
    animation: fadeInUp .5s ease forwards;
}

.anim-fadeup--d1 {
    animation-delay: .1s;
}

.anim-fadeup--d2 {
    animation-delay: .2s;
}

.anim-fadeup--d3 {
    animation-delay: .3s;
}

/* ---- MOBILE NAV OVERLAY ---- */
.a3f7b2-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #1a1d24;
    z-index: 998;
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 8px;
    animation: fadeInUp .2s ease;
}

.a3f7b2-mobile-nav.is-open {
    display: flex;
}

.a3f7b2-mobile-nav__link {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.a3f7b2-mobile-nav__link:hover {
    background: var(--bg3);
    color: var(--text);
}

/* Unused utility classes for layout uniqueness */
.tb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tb-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

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

.tb-badge {
    display: inline-block;
    background: rgba(163, 243, 34, .15);
    color: var(--green);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .78rem;
    font-weight: 600;
}

.tb-mt1 {
    margin-top: 8px;
}

.tb-mt2 {
    margin-top: 16px;
}

.tb-mt3 {
    margin-top: 24px;
}

.tb-mb1 {
    margin-bottom: 8px;
}

.tb-mb2 {
    margin-bottom: 16px;
}

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

.tb-text-green {
    color: var(--green);
}

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

.tb-hidden {
    display: none;
}

.tb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .a3f7b2-nav {
        display: none;
    }

    .a3f7b2-burger {
        display: flex;
    }

    .a3f7b2-header__inner {
        grid-template-columns: auto 1fr;
    }

    .k5j8n4-jackpots {
        grid-template-columns: 1fr 1fr;
    }

    .f3b6x7-track {
        grid-template-columns: 1fr;
    }

    .m2p4w8-bonuses {
        grid-template-columns: 1fr;
    }

    .c9e5f1-reviews {
        grid-template-columns: 1fr 1fr;
    }

    .r5k8m2-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .n4v7d2-review-content {
        padding: 24px 20px;
    }

    .c9e5f1-form {
        padding: 24px 20px;
    }
}

@media (max-width: 640px) {
    .k5j8n4-jackpots {
        grid-template-columns: 1fr;
    }

    .c9e5f1-reviews {
        grid-template-columns: 1fr;
    }

    .r5k8m2-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .xd92k1-hero {
        min-height: 440px;
    }

    .xd92k1-hero__actions {
        flex-direction: column;
    }

    .w8j6c4-widget {
        flex-wrap: wrap;
    }

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

    .h6s1q3-reel {
        width: 68px;
        height: 78px;
        font-size: 2rem;
    }
}

/* Unused hidden elements for layout fingerprint */
.wp-compat-layer {
    display: none !important;
}

.elementor-widget-placeholder {
    display: none !important;
}

.yoast-seo-meta-block {
    display: none !important;
}
