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

:root {
    --c-bg: #090f1e;
    --c-header: #141b2e;
    --c-card: #0d1627;
    --c-card2: #111827;
    --c-btn-dark: #1f2841;
    --c-btn-green: #19ac5a;
    --c-btn-green-h: #15963f;
    --c-text: #e8eaf0;
    --c-text-muted: #8892a4;
    --c-text-dim: #5a6478;
    --c-border: #1e2d47;
    --c-border-light: #243352;
    --c-accent: #19ac5a;
    --c-gold: #f5c842;
    --c-red: #e53935;
    --c-star-empty: #2a3550;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .4);
    --shadow-btn: 0 4px 16px rgba(25, 172, 90, .25);
    --trans: all .25s ease;
    --font: 'Open Sans', sans-serif;
}

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font)
}

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

.xw3k1-flex {
    display: flex;
    align-items: center
}

.xw3k1-gap {
    gap: 16px
}

.xw3k1-col {
    flex-direction: column
}

.xw3k1-jc-between {
    justify-content: space-between
}

.xw3k1-jc-center {
    justify-content: center
}

.xw3k1-wrap-items {
    flex-wrap: wrap
}

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

.btn--dark {
    background: var(--c-btn-dark);
    color: #fff
}

.btn--dark:hover {
    background: #273356;
    transform: translateY(-1px)
}

.btn--green {
    background: var(--c-btn-green);
    color: #fff;
    box-shadow: var(--shadow-btn)
}

.btn--green:hover {
    background: var(--c-btn-green-h);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 172, 90, .4)
}

.btn--outline {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border-light)
}

.btn--outline:hover {
    border-color: var(--c-accent);
    color: var(--c-accent)
}

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

.btn--lg {
    padding: 13px 28px;
    font-size: 1rem
}

.a7f2-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border)
}

.a7f2-header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.a7f2-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

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

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

.a7f2-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 500;
    color: var(--c-text-muted);
    transition: var(--trans)
}

.a7f2-nav-link:hover, .a7f2-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.a7f2-nav-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

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

.a7f2-review-count {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(25, 172, 90, .1);
    border: 1px solid rgba(25, 172, 90, .2);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--c-accent)
}

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

.a7f2-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: var(--trans)
}

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

.a7f2-burger.open span:nth-child(2) {
    opacity: 0
}

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

.a7f2-mobile-nav {
    display: none;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 12px 20px
}

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

.a7f2-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px
}

.a7f2-mobile-nav-links .a7f2-nav-link {
    padding: 10px 12px;
    font-size: .9rem
}

.a7f2-mobile-nav-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.b3c9-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center
}

.b3c9-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/win-banner.png');
    background-size: cover;
    background-position: center
}

.b3c9-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 15, 30, .92) 0%, rgba(9, 15, 30, .75) 60%, rgba(9, 15, 30, .45) 100%)
}

.b3c9-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%
}

.b3c9-hero-text {
    max-width: 540px
}

.b3c9-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(25, 172, 90, .15);
    border: 1px solid rgba(25, 172, 90, .3);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--c-accent);
    margin-bottom: 18px
}

.b3c9-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #fff
}

.b3c9-hero-sub {
    font-size: 1rem;
    color: rgba(232, 234, 240, .8);
    margin-bottom: 28px;
    line-height: 1.7
}

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

.b3c9-casino-section {
    background: linear-gradient(180deg, rgba(9, 15, 30, 0) 0%, var(--c-bg) 100%);
    padding: 0 0 50px
}

.b3c9-cards-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -80px;
    position: relative;
    z-index: 2
}

.b3c9-casino-card {
    flex: 1;
    min-width: 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-card)
}

.b3c9-casino-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px
}

.b3c9-casino-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--c-border-light)
}

.b3c9-casino-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff
}

.b3c9-casino-info p {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.b3c9-overall-score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.b3c9-score-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-accent)
}

.b3c9-score-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    line-height: 1.4
}

.b3c9-progress-bar {
    height: 8px;
    background: var(--c-border);
    border-radius: 4px;
    overflow: hidden
}

.b3c9-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease
}

.b3c9-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #1b3a2a, #0f2219);
    border: 1px solid rgba(25, 172, 90, .3);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-accent);
    margin: 12px 0 16px
}

.b3c9-casino-card-btns {
    display: flex;
    gap: 8px;
    flex-direction: column
}

.b3c9-ratings-card {
    flex: 1.2;
    min-width: 300px
}

.b3c9-ratings-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

.b3c9-param-row {
    margin-bottom: 10px
}

.b3c9-param-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 4px
}

.b3c9-param-label span:last-child {
    color: var(--c-accent);
    font-weight: 600
}

.b3c9-param-bar {
    height: 6px;
    background: var(--c-border);
    border-radius: 3px;
    overflow: hidden
}

.b3c9-param-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.2s ease
}

.b3c9-bonuses-row {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.b3c9-bonus-tile {
    flex: 1;
    min-width: 160px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--trans)
}

.b3c9-bonus-tile:hover {
    border-color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 172, 90, .15)
}

.b3c9-bonus-icon {
    font-size: 1.8rem
}

.b3c9-bonus-label {
    font-size: .75rem;
    color: var(--c-text-muted)
}

.b3c9-bonus-value {
    font-size: .9rem;
    font-weight: 700;
    color: #fff
}

.d1e8-review-section {
    padding: 60px 0
}

.d1e8-section-header {
    text-align: center;
    margin-bottom: 40px
}

.d1e8-section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(25, 172, 90, .1);
    border: 1px solid rgba(25, 172, 90, .2);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--c-accent);
    margin-bottom: 10px
}

.d1e8-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.d1e8-section-sub {
    font-size: .9rem;
    color: var(--c-text-muted);
    max-width: 500px;
    margin: 0 auto
}

.d1e8-bonus-banner {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 20px
}

.d1e8-bonus-banner-inner {
    background: linear-gradient(135deg, #0f3320 0%, #0d2b1c 100%);
    border: 1px solid rgba(25, 172, 90, .3);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.d1e8-bonus-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.d1e8-bonus-banner-text p {
    font-size: .85rem;
    color: rgba(232, 234, 240, .7)
}

.d1e8-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px
}

.d1e8-review-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 32px
}

.d1e8-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.d1e8-form-group {
    margin-bottom: 18px
}

.d1e8-form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    letter-spacing: .02em
}

.d1e8-input, .d1e8-textarea {
    width: 100%;
    background: #0a1221;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: .9rem;
    color: var(--c-text);
    font-family: var(--font);
    transition: var(--trans);
    outline: none
}

.d1e8-input:focus, .d1e8-textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(25, 172, 90, .12)
}

.d1e8-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6
}

.d1e8-ratings-group {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-bottom: 20px
}

.d1e8-rating-row {
    background: #0a1221;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 12px
}

.d1e8-rating-row label {
    font-size: .78rem;
    color: var(--c-text-muted);
    display: block;
    margin-bottom: 6px
}

.d1e8-star-select {
    display: flex;
    gap: 3px
}

.d1e8-star-select input {
    display: none
}

.d1e8-star-select label {
    font-size: 1.3rem;
    color: var(--c-star-empty);
    cursor: pointer;
    transition: color .15s
}

.d1e8-star-select label:hover, .d1e8-star-select label:hover ~ label +, .d1e8-star-select input:checked ~ label {
    color: var(--c-gold)
}

.d1e8-form-row {
    display: flex;
    gap: 12px
}

.d1e8-form-row .d1e8-form-group {
    flex: 1
}

.d1e8-submit-btn {
    width: 100%;
    padding: 13px;
    font-size: .95rem
}

.d1e8-success-msg {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(25, 172, 90, .08);
    border: 1px solid rgba(25, 172, 90, .25);
    border-radius: var(--radius-md);
    margin-top: 16px
}

.d1e8-success-msg .d1e8-check {
    font-size: 2.5rem;
    margin-bottom: 8px
}

.d1e8-success-msg h4 {
    color: var(--c-accent);
    font-size: 1.1rem;
    margin-bottom: 4px
}

.d1e8-success-msg p {
    font-size: .85rem;
    color: var(--c-text-muted)
}

.e5f1-reviews-section {
    padding: 60px 0 40px
}

.e5f1-reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.e5f1-review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: var(--trans)
}

.e5f1-review-card:hover {
    border-color: var(--c-border-light);
    box-shadow: var(--shadow-card)
}

.e5f1-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px
}

.e5f1-author-info {
    display: flex;
    align-items: center;
    gap: 12px
}

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

.e5f1-author-meta strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px
}

.e5f1-author-meta time {
    font-size: .75rem;
    color: var(--c-text-muted)
}

.e5f1-country {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-left: 6px
}

.e5f1-country img {
    width: 16px;
    height: 12px;
    border-radius: 1px;
    object-fit: cover
}

.e5f1-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px
}

.e5f1-stars {
    display: flex;
    gap: 2px
}

.e5f1-star {
    font-size: 1rem;
    color: var(--c-star-empty)
}

.e5f1-star.filled {
    color: var(--c-gold)
}

.e5f1-rating-val {
    font-size: .8rem;
    font-weight: 700;
    color: var(--c-gold)
}

.e5f1-rating-toggle {
    font-size: .72rem;
    color: var(--c-accent);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline
}

.e5f1-rating-details {
    display: none;
    margin-top: 8px;
    background: #0a1221;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px;
    min-width: 200px
}

.e5f1-rating-details.open {
    display: block
}

.e5f1-rd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-bottom: 6px
}

.e5f1-rd-row:last-child {
    margin-bottom: 0
}

.e5f1-rd-bar {
    flex: 1;
    height: 4px;
    background: var(--c-border);
    border-radius: 2px;
    overflow: hidden
}

.e5f1-rd-fill {
    height: 100%;
    background: var(--c-accent);
    border-radius: 2px
}

.e5f1-review-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.e5f1-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: var(--c-text-muted);
    padding: 2px 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    margin-bottom: 10px
}

.e5f1-source-badge a {
    color: var(--c-accent);
    text-decoration: underline
}

.e5f1-review-body {
    font-size: .875rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 12px
}

.e5f1-review-body p {
    margin-bottom: 8px
}

.e5f1-review-text-short {
    display: block
}

.e5f1-review-text-full {
    display: none
}

.e5f1-expand-btn {
    background: none;
    border: none;
    color: var(--c-accent);
    font-size: .8rem;
    padding: 0;
    cursor: pointer;
    font-family: var(--font)
}

.e5f1-expand-btn:hover {
    text-decoration: underline
}

.e5f1-pros-cons {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.e5f1-pros, .e5f1-cons {
    flex: 1;
    min-width: 140px;
    padding: 10px 14px;
    border-radius: var(--radius-sm)
}

.e5f1-pros {
    background: rgba(25, 172, 90, .06);
    border: 1px solid rgba(25, 172, 90, .15)
}

.e5f1-cons {
    background: rgba(229, 57, 53, .06);
    border: 1px solid rgba(229, 57, 53, .15)
}

.e5f1-pros h5, .e5f1-cons h5 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px
}

.e5f1-pros h5 {
    color: var(--c-accent)
}

.e5f1-cons h5 {
    color: var(--c-red)
}

.e5f1-pros li, .e5f1-cons li {
    font-size: .8rem;
    color: var(--c-text);
    padding: 2px 0
}

.e5f1-pro-item::before {
    content: "+ ";
    color: var(--c-accent);
    font-weight: 700
}

.e5f1-con-item::before {
    content: "− ";
    color: var(--c-red);
    font-weight: 700
}

.e5f1-review-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border);
    flex-wrap: wrap
}

.e5f1-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #0a1221;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .8rem;
    color: var(--c-text-muted);
    transition: var(--trans)
}

.e5f1-vote-btn:hover {
    border-color: var(--c-accent);
    color: var(--c-text)
}

.e5f1-vote-btn.liked {
    border-color: var(--c-accent);
    color: var(--c-accent)
}

.e5f1-vote-btn.disliked {
    border-color: var(--c-red);
    color: var(--c-red)
}

.e5f1-reply-btn {
    margin-left: auto;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 14px;
    font-size: .78rem;
    color: var(--c-text-muted);
    transition: var(--trans)
}

.e5f1-reply-btn:hover {
    border-color: var(--c-accent);
    color: var(--c-text)
}

.e5f1-reply-form {
    display: none;
    margin-top: 16px;
    background: #0a1221;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 14px
}

.e5f1-reply-form.open {
    display: block
}

.e5f1-reply-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-size: .85rem;
    color: var(--c-text);
    font-family: var(--font);
    resize: vertical;
    min-height: 70px;
    outline: none
}

.e5f1-reply-form textarea:focus {
    border-color: var(--c-accent)
}

.e5f1-reply-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.f6a2-faq {
    padding: 50px 0
}

.f6a2-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px
}

.f6a2-faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    transition: var(--trans)
}

.f6a2-faq-item.open {
    border-color: var(--c-border-light)
}

.f6a2-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: var(--font)
}

.f6a2-faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-accent);
    transition: transform .3s ease
}

.f6a2-faq-item.open .f6a2-faq-q svg {
    transform: rotate(180deg)
}

.f6a2-faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.7
}

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

.g7b3-compare {
    padding: 50px 0
}

.g7b3-compare-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.g7b3-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 620px
}

.g7b3-compare-table th, .g7b3-compare-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .85rem
}

.g7b3-compare-table th {
    background: var(--c-card2);
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    position: sticky;
    top: 0;
    z-index: 1
}

.g7b3-compare-table th:first-child {
    border-radius: var(--radius-md) 0 0 0
}

.g7b3-compare-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0
}

.g7b3-compare-table tr:hover td {
    background: rgba(255, 255, 255, .015)
}

.g7b3-compare-table td {
    color: var(--c-text);
    background: var(--c-card)
}

.g7b3-compare-table td:first-child {
    font-weight: 600;
    color: #fff
}

.g7b3-compare-table .g7b3-highlight td {
    background: rgba(25, 172, 90, .05)
}

.g7b3-compare-table .g7b3-highlight td:first-child {
    color: var(--c-accent)
}

.g7b3-score-green {
    color: var(--c-accent);
    font-weight: 700
}

.g7b3-score-yellow {
    color: var(--c-gold);
    font-weight: 700
}

.g7b3-score-red {
    color: var(--c-red);
    font-weight: 700
}

.g7b3-compare-wrap::-webkit-scrollbar {
    height: 4px
}

.g7b3-compare-wrap::-webkit-scrollbar-track {
    background: var(--c-border)
}

.g7b3-compare-wrap::-webkit-scrollbar-thumb {
    background: var(--c-btn-dark);
    border-radius: 2px
}

.h8c4-content-section {
    padding: 60px 0
}

.h8c4-content-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px
}

.h8c4-content-body {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 36px
}

.h8c4-content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.h8c4-content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px
}

.h8c4-content-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 16px 0 8px
}

.h8c4-content-body p {
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 14px
}

.h8c4-content-body ul, .h8c4-content-body ol {
    margin: 0 0 14px 20px
}

.h8c4-content-body ul {
    list-style: disc
}

.h8c4-content-body ol {
    list-style: decimal
}

.h8c4-content-body li {
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 5px
}

.h8c4-content-body strong {
    color: var(--c-text);
    font-weight: 600
}

.h8c4-content-body a {
    color: var(--c-accent);
    text-decoration: underline
}

.h8c4-content-body a:hover {
    color: var(--c-btn-green-h)
}

.h8c4-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .85rem
}

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

.h8c4-content-body table th {
    background: var(--c-card2);
    color: var(--c-text-muted);
    font-weight: 600
}

.h8c4-content-body table td {
    color: var(--c-text)
}

.h8c4-content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.h8c4-content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 18px;
    margin: 14px 0;
    background: rgba(25, 172, 90, .04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0
}

.h8c4-content-body blockquote p {
    margin: 0;
    font-style: italic
}

.h8c4-content-body img {
    border-radius: var(--radius-sm);
    margin: 14px 0
}

.h8c4-author-card {
    margin-top: 32px;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap
}

.h8c4-author-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-border-light);
    flex-shrink: 0
}

.h8c4-author-details {
    flex: 1;
    min-width: 200px
}

.h8c4-author-label {
    font-size: .72rem;
    color: var(--c-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px
}

.h8c4-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.h8c4-author-bio {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 12px
}

.h8c4-author-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.h8c4-author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--c-text-muted);
    transition: var(--trans)
}

.h8c4-author-link:hover {
    color: #fff;
    border-color: var(--c-text-muted)
}

.h8c4-author-link svg {
    width: 14px;
    height: 14px
}

.i9d5-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0
}

.i9d5-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.i9d5-footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.i9d5-footer-brand {
    flex: 1.5;
    min-width: 220px
}

.i9d5-footer-logo {
    height: 36px;
    width: auto;
    border-radius: 4px;
    margin-bottom: 14px
}

.i9d5-footer-desc {
    font-size: .82rem;
    color: var(--c-text-dim);
    line-height: 1.7;
    max-width: 260px
}

.i9d5-footer-col {
    flex: 1;
    min-width: 140px
}

.i9d5-footer-col h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    margin-bottom: 14px
}

.i9d5-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.i9d5-footer-col ul li a {
    font-size: .82rem;
    color: var(--c-text-dim);
    transition: color .2s
}

.i9d5-footer-col ul li a:hover {
    color: var(--c-accent)
}

.i9d5-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px
}

.i9d5-trust-label {
    font-size: .75rem;
    color: var(--c-text-dim);
    width: 100%
}

.i9d5-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: .75rem;
    color: var(--c-text-muted);
    transition: var(--trans)
}

.i9d5-trust-badge:hover {
    border-color: var(--c-text-muted);
    color: var(--c-text)
}

.i9d5-trust-badge svg {
    width: 14px;
    height: 14px
}

.i9d5-footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 20px 0;
    text-align: center
}

.i9d5-copyright {
    font-size: .78rem;
    color: var(--c-text-dim);
    margin-bottom: 8px
}

.i9d5-legal {
    font-size: .72rem;
    color: var(--c-text-dim);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto
}

.j0e6-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0f3320 0%, #141b2e 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.j0e6-widget-text {
    font-size: .82rem;
    color: rgba(232, 234, 240, .8)
}

.j0e6-widget-text strong {
    color: #fff;
    font-size: .9rem
}

.j0e6-widget-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

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

.j0e6-widget-close:hover {
    color: #fff
}

.j0e6-widget-bonus {
    font-size: .8rem;
    color: rgba(232, 234, 240, .6)
}

body.widget-closed .j0e6-widget {
    display: none
}

body {
    padding-bottom: 60px
}

body.widget-closed {
    padding-bottom: 0
}

.kb7f-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0
}

@keyframes kb7f-fadein {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

@keyframes kb7f-pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .5
    }
}

@keyframes kb7f-spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes kb7f-float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px)
    }
}

.animate-fadein {
    animation: kb7f-fadein .6s ease both
}

.animate-fadein-1 {
    animation-delay: .1s
}

.animate-fadein-2 {
    animation-delay: .2s
}

.animate-fadein-3 {
    animation-delay: .3s
}

.lc8g-hidden {
    display: none !important
}

.lc8g-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.md9h-wp-dummy {
    display: none;
    visibility: hidden;
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    pointer-events: none
}

#wpadminbar {
    display: none
}

.wp-block-embed {
    display: none
}

.entry-meta {
    display: none
}

.wp-post-image {
    display: none
}

.wpb_wrapper {
    display: none
}

#elementor-loading {
    display: none
}

.wp-block-latest-posts {
    display: none
}

.jetpack_subscription_widget {
    display: none
}

@media (max-width: 900px) {
    .a7f2-nav {
        display: none
    }

    .a7f2-burger {
        display: flex
    }

    .b3c9-cards-row {
        margin-top: -40px
    }

    .d1e8-ratings-group {
        grid-template-columns:1fr
    }
}

@media (max-width: 700px) {
    .a7f2-header-inner {
        gap: 10px
    }

    .b3c9-hero {
        min-height: 380px
    }

    .b3c9-hero-btns {
        flex-direction: column
    }

    .b3c9-hero-btns .btn {
        width: 100%;
        justify-content: center
    }

    .b3c9-cards-row {
        margin-top: 20px;
        flex-direction: column
    }

    .b3c9-bonuses-row {
        flex-direction: column
    }

    .d1e8-bonus-banner-inner {
        flex-direction: column;
        text-align: center
    }

    .e5f1-review-header {
        flex-direction: column;
        gap: 8px
    }

    .e5f1-rating-wrap {
        align-items: flex-start
    }

    .e5f1-pros-cons {
        flex-direction: column
    }

    .h8c4-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .i9d5-footer-top {
        flex-direction: column
    }

    .j0e6-widget {
        padding: 8px 16px
    }

    .d1e8-form-row {
        flex-direction: column;
        gap: 0
    }

    .a7f2-header-actions .btn:not(.btn--green):not(.btn--dark) {
        display: none
    }
}

@media (max-width: 480px) {
    .b3c9-hero h1 {
        font-size: 1.3rem
    }

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

    .e5f1-review-card {
        padding: 16px
    }

    .h8c4-content-body {
        padding: 20px
    }
}

.nb1k-sticky-placeholder {
    height: 64px
}

.ob2l-progress-anim .b3c9-progress-fill, .ob2l-progress-anim .b3c9-param-fill, .ob2l-progress-anim .e5f1-rd-fill {
    width: 0 !important;
    transition: width 1.2s ease
}

.pb3m-range-wrap {
    position: relative
}

.pb3m-range-wrap input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--c-border);
    border-radius: 3px;
    outline: none
}

.pb3m-range-wrap input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--c-accent);
    border-radius: 50%;
    cursor: pointer
}

.pb3m-range-wrap input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--c-accent);
    border-radius: 50%;
    border: none;
    cursor: pointer
}

.qc4n-skeleton {
    background: linear-gradient(90deg, var(--c-border) 25%, var(--c-border-light) 50%, var(--c-border) 75%);
    background-size: 200% 100%;
    animation: kb7f-shimmer 1.5s infinite
}

.rc5o-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: .72rem;
    font-weight: 600
}

.rc5o-badge-green {
    background: rgba(25, 172, 90, .1);
    color: var(--c-accent);
    border: 1px solid rgba(25, 172, 90, .2)
}

.rc5o-badge-gold {
    background: rgba(245, 200, 66, .1);
    color: var(--c-gold);
    border: 1px solid rgba(245, 200, 66, .2)
}

.rc5o-badge-red {
    background: rgba(229, 57, 53, .1);
    color: var(--c-red);
    border: 1px solid rgba(229, 57, 53, .2)
}

.sc6p-spacer-sm {
    height: 24px
}

.sc6p-spacer-md {
    height: 40px
}

.sc6p-spacer-lg {
    height: 64px
}

.tc7q-text-center {
    text-align: center
}

.tc7q-text-muted {
    color: var(--c-text-muted)
}

.tc7q-text-accent {
    color: var(--c-accent)
}

.tc7q-text-white {
    color: #fff
}

.tc7q-fw-bold {
    font-weight: 700
}

.tc7q-fs-sm {
    font-size: .82rem
}

.tc7q-fs-xs {
    font-size: .72rem
}

.uc8r-inactive-block {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    width: 0
}

.zfar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 56px;
    font-family: var(--font-main);
    color: var(--color-text);
}

.zfar p {
    margin: 0 0 14px;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.zfar h2 {
    margin: 26px 0 12px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.zfar h3 {
    margin: 22px 0 10px;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.zfar h2 + p,
.zfar h3 + p {
    margin-top: 0;
}

.zfar ul,
.zfar ol {
    margin: 12px 0 18px;
    padding-left: 22px;
    color: var(--color-text-muted);
}

.zfar ul {
    list-style: disc;
}

.zfar ol {
    list-style: decimal;
}

.zfar li {
    margin: 8px 0;
    line-height: 1.75;
}

.zfar strong {
    color: var(--color-text);
    font-weight: 800;
}

.zfar a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .2s ease, opacity .2s ease;
    word-break: break-word;
}

.zfar a:hover {
    color: #fff;
    opacity: .95;
}

.zfar p:first-child {
    background: linear-gradient(135deg, rgba(25, 172, 90, .10), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 16px;
    color: var(--color-text-muted);
}

.zfar p:first-child a {
    text-decoration-thickness: 2px;
}

.zfar p + ul,
.zfar p + ol {
    margin-top: 6px;
}

.zfar ul li::marker,
.zfar ol li::marker {
    color: rgba(25, 172, 90, .9);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .zfar {
        padding: 22px 18px 48px;
    }

    .zfar h2 {
        font-size: 1.45rem;
        margin: 22px 0 10px;
    }

    .zfar h3 {
        font-size: 1.15rem;
        margin: 18px 0 10px;
    }
}

@media (max-width: 768px) {
    .zfar {
        padding: 18px 14px 44px;
    }

    .zfar p {
        font-size: .98rem;
        line-height: 1.9;
    }

    .zfar h2 {
        font-size: 1.32rem;
        margin: 20px 0 10px;
    }

    .zfar h3 {
        font-size: 1.08rem;
        margin: 16px 0 10px;
    }

    .zfar ul,
    .zfar ol {
        padding-left: 18px;
    }

    .zfar p:first-child {
        padding: 14px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .zfar {
        padding: 16px 12px 40px;
    }

    .zfar h2 {
        font-size: 1.22rem;
    }

    .zfar h3 {
        font-size: 1.02rem;
    }

    .zfar p {
        font-size: .96rem;
    }

    .zfar li {
        margin: 7px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zfar a {
        transition: none;
    }
}
