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

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

:root {
    --clr-bg: #F8F9F9;
    --clr-white: #FFFFFF;
    --clr-dark: #2B2A28;
    --clr-accent: #FDE94E;
    --clr-accent-hover: #f5dc2a;
    --clr-muted: #6b7280;
    --clr-border: #e5e7eb;
    --clr-card: #FFFFFF;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(43, 42, 40, .08);
    --shadow-md: 0 8px 32px rgba(43, 42, 40, .13);
    --font: 'Nunito', Arial, Tahoma, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

.x9f2a {
    display: none;
}

.wp81k {
    visibility: hidden;
    position: absolute;
}

/* HEADER */
.site-header {
    background: var(--clr-white);
    box-shadow: 0 2px 16px rgba(43, 42, 40, .07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: nowrap;
}

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

.header-logo img {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
}

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

.header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-dark);
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none !important;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--dark {
    background: var(--clr-dark);
    color: var(--clr-white);
}

.btn--dark:hover {
    background: #3d3c39;
}

.btn--yellow {
    background: var(--clr-accent);
    color: var(--clr-dark);
}

.btn--yellow:hover {
    background: var(--clr-accent-hover);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
}

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

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

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

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

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

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

/* HERO */
.hero {
    background: var(--clr-dark);
    color: var(--clr-white);
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .3;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--clr-white);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.55;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    transition: transform .5s ease;
}

.hero-slide {
    min-width: 100%;
}

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

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

.hero-slider-dot.active {
    background: var(--clr-accent);
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, .4);
}

.hero-slider-btn--prev {
    left: 16px;
}

.hero-slider-btn--next {
    right: 16px;
}

/* SECTIONS */
.section {
    padding: 64px 0;
}

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

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--clr-dark);
}

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

.section-head {
    margin-bottom: 36px;
}

/* CARDS GRID */
.cards-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cards-grid--3 > * {
    flex: 1 1 calc(33.33% - 14px);
    min-width: 240px;
}

.cards-grid--6 > * {
    flex: 1 1 calc(16.66% - 17px);
    min-width: 140px;
}

.card {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: transform .25s, box-shadow .25s;
}

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

/* TOURNAMENT CARD */
.tournament-card {
    background: var(--clr-dark);
    color: var(--clr-white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: transform .25s;
}

.tournament-card:hover {
    transform: translateY(-4px);
}

.tournament-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--clr-accent);
}

.tournament-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
}

.tournament-card__prize {
    font-size: 22px;
    font-weight: 900;
    color: var(--clr-accent);
}

.tournament-card__timer {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.timer-val {
    display: inline-flex;
    gap: 4px;
    font-weight: 800;
    color: var(--clr-white);
}

.timer-unit {
    background: rgba(255, 255, 255, .1);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 13px;
}

/* BONUS CARD */
.bonus-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s, box-shadow .25s;
    border-top: 4px solid var(--clr-accent);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bonus-card__icon {
    font-size: 36px;
}

.bonus-card__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--clr-dark);
}

.bonus-card__amount {
    font-size: 26px;
    font-weight: 900;
    color: var(--clr-dark);
}

.bonus-card__desc {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.5;
}

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

/* GAME CARD */
.game-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 12px;
    transition: transform .25s;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-card__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--clr-bg);
}

.game-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-dark);
}

/* VIDEO BLOCK */
.video-block {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
}

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

/* PROMO CODE SECTION */
.promo-section {
    background: var(--clr-dark);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.promo-section__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.promo-section__title {
    font-size: 24px;
    font-weight: 900;
    color: var(--clr-white);
    margin-bottom: 8px;
}

.promo-section__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border: 2px dashed var(--clr-accent);
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 220px;
}

.promo-code-val {
    font-size: 24px;
    font-weight: 900;
    color: var(--clr-accent);
    letter-spacing: 2px;
}

.promo-copy-btn {
    background: var(--clr-accent);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: var(--clr-dark);
    transition: background .2s, transform .2s;
    font-family: var(--font);
}

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

/* TABLE */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tbl {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: var(--clr-card);
}

.tbl th {
    background: var(--clr-dark);
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    padding: 14px 18px;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--clr-accent);
}

.tbl td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--clr-dark);
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: top;
}

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

.tbl tr:hover td {
    background: #f3f4f6;
}

.tbl td strong {
    font-weight: 800;
    color: var(--clr-dark);
}

/* CASINO INFO TABLE */
.info-table td:first-child {
    font-weight: 700;
    width: 40%;
    color: var(--clr-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.info-table td:last-child {
    font-weight: 600;
}

/* WHEEL GAME */
.wheel-section {
    background: var(--clr-dark);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    color: var(--clr-white);
}

.wheel-section h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.wheel-section p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 32px;
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 48px rgba(253, 233, 78, .3);
    max-width: 280px;
    width: 100%;
    height: auto;
}

.wheel-pointer {
    font-size: 32px;
    line-height: 1;
    color: var(--clr-accent);
    margin-bottom: -16px;
}

.wheel-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.wheel-result-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-accent);
    opacity: 0;
    transition: opacity .4s;
}

.wheel-result-text.visible {
    opacity: 1;
}

/* AUTHOR BLOCK */
.author-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.author-block__name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.author-block__bio {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.author-block__socials {
    display: flex;
    gap: 10px;
}

.author-block__socials a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-dark);
    background: var(--clr-bg);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--clr-border);
    transition: background .2s;
}

.author-block__socials a:hover {
    background: var(--clr-accent);
}

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

.faq-item {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .2s;
}

.faq-q:hover {
    background: #f9fafb;
}

.faq-q::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--clr-muted);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}

.faq-item.active .faq-a {
    max-height: 500px;
}

.faq-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.65;
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 14px 0;
    font-size: 13px;
    color: var(--clr-muted);
}

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

.breadcrumbs span {
    color: var(--clr-dark);
    font-weight: 600;
}

.bc-sep {
    margin: 0 6px;
}

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

.screenshots-slides {
    display: flex;
    transition: transform .5s ease;
}

.screenshots-slide {
    min-width: 100%;
}

.screenshots-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* FEATURES GRID */
.features-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1 1 calc(33.33% - 11px);
    min-width: 160px;
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 20px;
    text-align: center;
    transition: transform .25s;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-item__name {
    font-size: 14px;
    font-weight: 800;
    color: var(--clr-dark);
}

/* RTP TABLE ROW HIGHLIGHT */
.rtp-high {
    color: #16a34a;
    font-weight: 700;
}

.rtp-mid {
    color: #ca8a04;
    font-weight: 700;
}

/* REGISTRATION METHODS */
.reg-methods {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.reg-method {
    flex: 1 1 calc(25% - 12px);
    min-width: 160px;
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 20px;
    text-align: center;
    transition: transform .25s;
}

.reg-method:hover {
    transform: translateY(-4px);
}

.reg-method__icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.reg-method__title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
}

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

/* BONUS REG BLOCK */
.bonus-reg-block {
    background: var(--clr-accent);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bonus-reg-block h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--clr-dark);
    margin-bottom: 8px;
}

.bonus-reg-block p {
    font-size: 15px;
    color: var(--clr-dark);
    opacity: .8;
}

/* DOWNLOAD BUTTONS */
.download-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-dark);
    color: var(--clr-white);
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none !important;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.download-btn--apk {
    background: var(--clr-accent);
    color: var(--clr-dark);
}

.download-btn__icon {
    font-size: 28px;
}

.download-btn__sub {
    font-size: 11px;
    font-weight: 400;
    opacity: .7;
    display: block;
}

.download-btn__name {
    font-size: 16px;
    font-weight: 800;
    display: block;
}

/* STICKY WIDGET */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    box-shadow: 0 -4px 24px rgba(43, 42, 40, .18);
}

.sticky-widget__text {
    color: var(--clr-white);
    font-size: 15px;
    font-weight: 700;
}

.sticky-widget__text span {
    color: var(--clr-accent);
}

.sticky-widget__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
    font-family: var(--font);
}

.sticky-widget__close:hover {
    color: var(--clr-white);
}

/* FOOTER */
.site-footer {
    background: var(--clr-dark);
    color: var(--clr-white);
    margin-top: auto;
    padding: 48px 0 28px;
}

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

.footer-col {
    flex: 1 1 180px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    transition: color .2s;
}

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

.footer-payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.footer-payments .pay-badge {
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .5px;
}

.footer-providers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-providers .prov-badge {
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
    max-width: 600px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

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

/* PAGE CONTENT BODY ({{ content }}) */
.review-content {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    line-height: 1.7;
}

.review-content h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--clr-dark);
}

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--clr-dark);
}

.review-content p {
    margin-bottom: 14px;
    color: var(--clr-dark);
}

.review-content ul, .review-content ol {
    margin: 12px 0 16px 24px;
    color: var(--clr-dark);
}

.review-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

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

.review-content th {
    background: var(--clr-dark);
    color: var(--clr-accent);
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    border-bottom: 2px solid var(--clr-accent);
}

.review-content td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
}

.review-content a {
    color: var(--clr-dark);
    text-decoration: underline;
    font-weight: 600;
}

/* TECHNICAL PAGE */
.tech-content {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    line-height: 1.75;
}

.tech-content h1 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.tech-content h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--clr-dark);
}

.tech-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 18px 0 8px;
}

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

.tech-content ul, .tech-content ol {
    margin: 12px 0 16px 24px;
}

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

/* SLIDER MOBILE */
.mobile-slider {
    position: relative;
}

.mobile-slider-inner {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

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

.mobile-slider-inner > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* MAIN CONTENT SPACING */
.main-content {
    flex: 1;
    padding-bottom: 80px;
}

.section + .section {
    padding-top: 0;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: var(--clr-border);
    margin: 48px 0;
}

/* BADGE / TAG */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .3px;
}

.badge--dark {
    background: var(--clr-dark);
    color: var(--clr-accent);
}

/* UNUSED STUBS */
.z8q1m {
    display: none;
}

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

.wp-caption {
    display: none;
}

.wp-block-spacer {
    display: none;
}

.elementor-hidden {
    display: none;
}

/* WP-STYLE FAKE ELEMENTS */
.wp-post-image {
    max-width: 100%;
}

.entry-meta {
    display: none;
}

.wp-content-area {
    display: none;
}

.hentry {
    display: none;
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-dark);
        z-index: 1050;
        padding: 80px 24px 24px;
        gap: 8px;
        overflow-y: auto;
    }

    .header-nav.active a {
        color: var(--clr-white);
        font-size: 18px;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .header-nav.active a:hover {
        background: rgba(255, 255, 255, .08);
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .cards-grid--3 > * {
        flex: 1 1 100%;
    }

    .cards-grid--6 > * {
        flex: 1 1 calc(50% - 10px);
    }

    .promo-section {
        flex-direction: column;
    }

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

    .promo-code-box {
        width: 100%;
        justify-content: center;
    }

    .bonus-reg-block {
        flex-direction: column;
        text-align: center;
    }

    .reg-methods > * {
        flex: 1 1 calc(50% - 8px);
    }

    .features-grid > * {
        flex: 1 1 calc(50% - 8px);
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px;
    }

    .sticky-widget {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .author-block {
        flex-direction: column;
    }

    .hero-inner {
        padding: 56px 0;
    }

    .download-btns {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-buttons .btn--dark {
        padding: 8px 12px;
        font-size: 12px;
    }

    .header-buttons .btn--yellow {
        padding: 8px 12px;
        font-size: 12px;
    }

    .cards-grid--6 > * {
        flex: 1 1 100%;
    }

    .reg-methods > * {
        flex: 1 1 100%;
    }

    .features-grid > * {
        flex: 1 1 100%;
    }

    .tbl th, .tbl td {
        padding: 10px 12px;
    }

    .wheel-section {
        padding: 32px 20px;
    }

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

    .tech-content {
        padding: 28px 18px;
    }
}

.hero-slide {
    min-width: 100%;
    position: relative;
    min-height: 480px;
    flex-shrink: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slides {
    display: flex;
    width: 100%;
}