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

:root {
    --clr-bg: #0d1117;
    --clr-surface: #161c26;
    --clr-surface2: #1e2736;
    --clr-border: #2a3447;
    --clr-primary: #f0a500;
    --clr-primary-dark: #c8880a;
    --clr-accent: #1a8cff;
    --clr-accent-dark: #0070e0;
    --clr-green: #22c55e;
    --clr-red: #ef4444;
    --clr-text: #e8eaf0;
    --clr-text-muted: #8b95a8;
    --clr-text-dim: #5a6478;
    --clr-header: #0a0f18;
    --clr-footer: #080c14;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .65);
    --transition: 0.25s ease;
}

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

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

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

a:hover {
    color: var(--clr-primary-dark)
}

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

ul {
    list-style: none
}

.x3f7a-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.x3f7a-section {
    padding: 64px 0
}

.x3f7a-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--clr-text)
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4)
}

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

.btn--primary:hover {
    background: var(--clr-primary-dark);
    color: #000
}

.btn--accent {
    background: var(--clr-accent);
    color: #fff
}

.btn--accent:hover {
    background: var(--clr-accent-dark);
    color: #fff
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary)
}

.btn--outline:hover {
    background: var(--clr-primary);
    color: #000
}

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

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

/* HEADER */
.hdr-9kx2 {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm)
}

.hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
    height: 68px
}

.hdr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.hdr-logo img {
    height: 36px;
    width: auto
}

.hdr-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -.5px
}

.hdr-reviews-count {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-top: -2px
}

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

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: .88rem;
    font-weight: 500;
    transition: all var(--transition)
}

.hdr-nav a:hover, .hdr-nav a.active {
    color: var(--clr-text);
    background: var(--clr-surface2)
}

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

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: none;
    border: none
}

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

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

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

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

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

.hdr-mobile-nav.open {
    display: flex
}

.hdr-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--clr-text-muted);
    font-size: .95rem;
    font-weight: 500;
    transition: all var(--transition);
    border: 1px solid transparent
}

.hdr-mobile-nav a:hover {
    background: var(--clr-surface2);
    color: var(--clr-text);
    border-color: var(--clr-border)
}

.hdr-mobile-nav svg {
    width: 18px;
    height: 18px
}

.hdr-mobile-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap
}

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

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease;
    opacity: 0
}

.hero-slide.active {
    opacity: 1
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 24, .88) 0%, rgba(10, 15, 24, .55) 60%, rgba(10, 15, 24, .3) 100%)
}

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

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: all var(--transition);
    border: none
}

.hero-dot.active {
    background: var(--clr-primary);
    width: 24px;
    border-radius: 4px
}

.hero-slide-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    margin-bottom: 12px;
    line-height: 1.2
}

.hero-slide-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 24px;
    max-width: 480px
}

/* HERO OVERVIEW */
.hero-overview-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-top: 28px;
    align-items: start
}

.hero-main-tile {
    background: rgba(22, 28, 38, .92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg)
}

.hero-tile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px
}

.hero-tile-logo {
    width: 80px;
    height: 30px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--clr-primary)
}

.hero-tile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text)
}

.hero-tile-license {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-top: 2px
}

.score-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.score-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary)
}

.score-bar-wrap {
    flex: 1
}

.score-bar-track {
    height: 8px;
    background: var(--clr-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px
}

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

.score-label {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.hero-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240, 165, 0, .15);
    border: 1px solid rgba(240, 165, 0, .35);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .82rem;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 18px
}

.hero-tile-btns {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hero-rating-summary {
    background: rgba(22, 28, 38, .92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg)
}

.rating-sum-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--clr-text)
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.rating-bar-label {
    font-size: .8rem;
    color: var(--clr-text-muted);
    width: 28px;
    text-align: right;
    flex-shrink: 0
}

.rating-bar-track {
    flex: 1;
    height: 6px;
    background: var(--clr-border);
    border-radius: 3px;
    overflow: hidden
}

.rating-bar-fill {
    height: 100%;
    background: var(--clr-primary);
    border-radius: 3px
}

.rating-bar-count {
    font-size: .8rem;
    color: var(--clr-text-muted);
    width: 24px;
    flex-shrink: 0
}

/* BONUS TILES */
.bonus-tiles-row {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 28px
}

.bonus-tile {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all var(--transition)
}

.bonus-tile:hover {
    border-color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.bonus-tile-tag {
    font-size: .7rem;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600
}

.bonus-tile-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary)
}

.bonus-tile-desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.4
}

/* PROS CONS */
.pros-cons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-top: 8px
}

.pros-col, .cons-col {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px
}

.pros-col {
    border-top: 3px solid var(--clr-green)
}

.cons-col {
    border-top: 3px solid var(--clr-red)
}

.pc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px
}

.pc-title svg {
    width: 18px;
    height: 18px
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: .88rem;
    color: var(--clr-text-muted)
}

.pc-item:last-child {
    border-bottom: none
}

.pc-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px
}

/* LEAVE REVIEW BANNER */
.review-cta-banner {
    background: linear-gradient(135deg, rgba(240, 165, 0, .12), rgba(26, 140, 255, .08));
    border: 1px solid rgba(240, 165, 0, .3);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px
}

.rcb-text {
    flex: 1
}

.rcb-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 4px
}

.rcb-sub {
    font-size: .88rem;
    color: var(--clr-text-muted)
}

/* REVIEW FORM */
.review-form-wrap {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md)
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--clr-text)
}

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

.form-label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-text-muted)
}

.form-input, .form-textarea {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-size: .9rem;
    width: 100%;
    font-family: inherit;
    transition: border-color var(--transition)
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, .15)
}

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

.form-ratings-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px
}

.form-rating-item {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px
}

.fri-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.star-rating {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.star-rating input {
    display: none
}

.star-rating label {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--clr-border);
    transition: color var(--transition)
}

.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label {
    color: var(--clr-primary)
}

.form-success {
    display: none;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .35);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    color: var(--clr-green);
    font-weight: 600;
    text-align: center;
    margin-top: 16px
}

.form-success.visible {
    display: block
}

/* USER REVIEWS */
.reviews-grid {
    display: grid;
    gap: 20px
}

.rv-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    position: relative
}

.rv-card:hover {
    border-color: rgba(240, 165, 0, .35);
    box-shadow: var(--shadow-md)
}

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

.rv-author-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.rv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
    flex-shrink: 0
}

.rv-author-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--clr-text)
}

.rv-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-top: 2px
}

.rv-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px
}

.rv-date {
    font-size: .78rem;
    color: var(--clr-text-dim);
    margin-top: 3px
}

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

.rv-stars {
    display: flex;
    gap: 2px;
    font-size: 1rem
}

.rv-star {
    color: var(--clr-border)
}

.rv-star.filled {
    color: var(--clr-primary)
}

.rv-score-num {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-primary)
}

.rv-details-btn {
    font-size: .75rem;
    color: var(--clr-text-muted);
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 3px 8px;
    cursor: pointer;
    transition: all var(--transition)
}

.rv-details-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary)
}

.rv-rating-details {
    display: none;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-top: 8px
}

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

.rv-rd-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: .8rem
}

.rv-rd-label {
    color: var(--clr-text-muted);
    width: 150px;
    flex-shrink: 0
}

.rv-rd-track {
    flex: 1;
    height: 4px;
    background: var(--clr-border);
    border-radius: 2px;
    overflow: hidden
}

.rv-rd-fill {
    height: 100%;
    background: var(--clr-primary);
    border-radius: 2px
}

.rv-rd-val {
    color: var(--clr-text-muted);
    width: 16px;
    text-align: right;
    flex-shrink: 0
}

.rv-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 10px
}

.rv-source {
    font-size: .78rem;
    color: var(--clr-text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px
}

.rv-source a {
    color: var(--clr-accent);
    font-weight: 500
}

.rv-source a:hover {
    color: var(--clr-accent-dark)
}

.rv-body {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.65
}

.rv-body-text {
    overflow: hidden
}

.rv-body-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.rv-expand-btn {
    background: none;
    border: none;
    color: var(--clr-accent);
    font-size: .85rem;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    font-family: inherit;
    transition: color var(--transition)
}

.rv-expand-btn:hover {
    color: var(--clr-accent-dark)
}

.rv-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-top: 14px
}

.rv-pros, .rv-cons {
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: .82rem
}

.rv-pros {
    background: rgba(34, 197, 94, .07);
    border: 1px solid rgba(34, 197, 94, .2)
}

.rv-cons {
    background: rgba(239, 68, 68, .07);
    border: 1px solid rgba(239, 68, 68, .2)
}

.rv-pros h5 {
    color: var(--clr-green);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.rv-cons h5 {
    color: var(--clr-red);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.rv-pros li, .rv-cons li {
    color: var(--clr-text-muted);
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4
}

.rv-pros li::before {
    content: '✓';
    color: var(--clr-green);
    flex-shrink: 0;
    font-weight: 700
}

.rv-cons li::before {
    content: '✗';
    color: var(--clr-red);
    flex-shrink: 0;
    font-weight: 700
}

.rv-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--clr-border);
    gap: 12px
}

.rv-votes {
    display: flex;
    gap: 8px
}

.rv-vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .82rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--transition)
}

.rv-vote-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-text)
}

.rv-vote-btn.liked {
    border-color: var(--clr-green);
    color: var(--clr-green)
}

.rv-vote-btn.disliked {
    border-color: var(--clr-red);
    color: var(--clr-red)
}

.rv-reply-btn {
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .82rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit
}

.rv-reply-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.rv-reply-form {
    display: none;
    margin-top: 14px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px
}

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

.rv-reply-form textarea {
    width: 100%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--clr-text);
    font-size: .88rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px;
    transition: border-color var(--transition)
}

.rv-reply-form textarea:focus {
    outline: none;
    border-color: var(--clr-primary)
}

.rv-reply-actions {
    display: flex;
    gap: 8px
}

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

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

.faq-item.open {
    border-color: rgba(240, 165, 0, .4)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--clr-text);
    gap: 12px;
    user-select: none
}

.faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-primary);
    transition: transform var(--transition)
}

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

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

.faq-item.open .faq-a {
    max-height: 600px
}

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

/* COMPARISON TABLE */
.comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border)
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

.comparison-table th, .comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: .88rem
}

.comparison-table th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700
}

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

.comparison-table td:first-child {
    color: var(--clr-text);
    font-weight: 600
}

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

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.ct-casino-name {
    font-weight: 700;
    color: var(--clr-text)
}

.ct-score {
    color: var(--clr-primary);
    font-weight: 700
}

.ct-best {
    background: rgba(240, 165, 0, .06)
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: var(--clr-primary);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all var(--transition)
}

.ct-btn:hover {
    background: var(--clr-primary-dark);
    color: #000;
    transform: translateY(-1px)
}

/* CONTENT BLOCK */
.content-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px
}

.content-author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px
}

.content-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-primary);
    flex-shrink: 0
}

.content-author-name {
    font-weight: 700;
    color: var(--clr-text);
    font-size: .95rem
}

.content-author-bio {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
    line-height: 1.4
}

.content-author-link {
    font-size: .8rem;
    color: var(--clr-accent);
    margin-top: 3px;
    display: inline-block
}

.content-body h1, .content-body h2, .content-body h3, .content-body h4, .content-body h5, .content-body h6 {
    color: var(--clr-text);
    font-weight: 700;
    margin: 1.5em 0 .6em;
    line-height: 1.3
}

.content-body h1 {
    font-size: 1.8rem
}

.content-body h2 {
    font-size: 1.4rem
}

.content-body h3 {
    font-size: 1.15rem
}

.content-body p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1em;
    font-size: .95rem
}

.content-body ul, .content-body ol {
    padding-left: 20px;
    margin-bottom: 1em;
    color: var(--clr-text-muted);
    font-size: .95rem
}

.content-body ul li {
    list-style: disc;
    margin-bottom: .4em
}

.content-body ol li {
    list-style: decimal;
    margin-bottom: .4em
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: .88rem
}

.content-body table th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-weight: 700
}

.content-body table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted)
}

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

.content-body a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-decoration-color: rgba(26, 140, 255, .4)
}

.content-body a:hover {
    color: var(--clr-accent-dark)
}

.content-body strong, .content-body b {
    color: var(--clr-text);
    font-weight: 700
}

.content-body blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 18px;
    background: rgba(240, 165, 0, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    font-style: italic;
    color: var(--clr-text-muted)
}

.content-body img {
    border-radius: var(--radius-md);
    max-width: 100%;
    height: auto;
    margin: 1em 0
}

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

/* FOOTER */
.ftr-a2w9 {
    background: var(--clr-footer);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px
}

.ftr-top {
    display: grid;
    grid-template-columns:220px 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 36px
}

.ftr-logo-col {
}

.ftr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none
}

.ftr-logo img {
    height: 32px;
    width: auto
}

.ftr-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-primary)
}

.ftr-tagline {
    font-size: .8rem;
    color: var(--clr-text-dim);
    line-height: 1.5;
    margin-bottom: 16px
}

.ftr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center
}

.ftr-nav a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--transition)
}

.ftr-nav a:hover {
    color: var(--clr-primary)
}

.ftr-trust {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.ftr-trust-title {
    font-size: .72rem;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    text-align: right
}

.ftr-trust-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end
}

.ftr-trust-logo {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap
}

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

.ftr-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.ftr-copyright {
    font-size: .78rem;
    color: var(--clr-text-dim);
    line-height: 1.5
}

.ftr-legal {
    font-size: .75rem;
    color: var(--clr-text-dim);
    max-width: 600px;
    line-height: 1.5;
    text-align: right
}

/* WIDGET */
.widget-q9r4 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0a0f18 0%, #161c26 100%);
    border-top: 1px solid rgba(240, 165, 0, .3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6)
}

.widget-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.widget-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--clr-text)
}

.widget-bonus {
    font-size: .78rem;
    color: var(--clr-primary);
    font-weight: 600
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-dim);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0
}

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

.widget-q9r4 .btn {
    text-decoration: none
}

/* WP COMPAT ELEMENTS (invisible) */
.wp-block-spacer {
    display: none
}

.wpcf7 {
    display: none
}

.elementor-hidden {
    display: none !important
}

.post-type-archive {
    display: none
}

/* MISCELLANEOUS UNUSED */
.x9b2-placeholder {
    display: none
}

.zv44-noop {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.u7wx-invisible {
    opacity: 0;
    height: 0;
    overflow: hidden
}

/* STARS DISPLAY */
.stars-display {
    display: flex;
    gap: 3px
}

.star-icon {
    font-size: 1rem
}

.star-icon.on {
    color: var(--clr-primary)
}

.star-icon.off {
    color: var(--clr-border)
}

.star-icon.half {
    color: var(--clr-primary);
    opacity: .6
}

/* SECTION HEADERS */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240, 165, 0, .1);
    border: 1px solid rgba(240, 165, 0, .25);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.section-heading {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 8px;
    line-height: 1.2
}

/* PROGRESS BAR */
@keyframes barin {
    from {
        width: 0
    }
    to {
        width: var(--w)
    }
}

.animate-bar {
    animation: barin 1s ease forwards
}

/* MOBILE */
@media (max-width: 1024px) {
    .ftr-top {
        grid-template-columns:1fr 1fr
    }

    .ftr-trust {
        grid-column: 1/-1;
        align-items: flex-start
    }

    .ftr-trust-logos {
        justify-content: flex-start
    }

    .ftr-trust-title {
        text-align: left
    }
}

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

    .hdr-burger {
        display: flex
    }

    .hero-overview-row {
        grid-template-columns:1fr
    }

    .pros-cons-grid {
        grid-template-columns:1fr
    }

    .bonus-tiles-row {
        grid-template-columns:1fr 1fr
    }

    .rv-pros-cons {
        grid-template-columns:1fr
    }

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

    .ftr-trust {
        align-items: flex-start
    }

    .ftr-trust-logos {
        justify-content: flex-start
    }

    .ftr-trust-title {
        text-align: left
    }

    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .ftr-legal {
        text-align: left
    }

    .review-cta-banner {
        flex-direction: column
    }

    .form-ratings-grid {
        grid-template-columns:1fr 1fr
    }

    .x3f7a-section {
        padding: 44px 0
    }

    .widget-q9r4 {
        padding: 10px 14px;
        gap: 10px
    }
}

@media (max-width: 480px) {
    .hdr-inner {
        grid-template-columns:auto 1fr auto;
        padding: 0 14px
    }

    .hdr-actions .btn {
        padding: 7px 10px;
        font-size: .78rem
    }

    .bonus-tiles-row {
        grid-template-columns:1fr
    }

    .form-ratings-grid {
        grid-template-columns:1fr
    }

    .rv-header {
        flex-direction: column
    }

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

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

.avsnnd {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--clr-surface, #161c26);
    border: 1px solid var(--clr-border, #2a3447);
    border-radius: 20px;
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, .5));
    color: var(--clr-text, #e8eaf0);
}

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

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

.avsnnd h1,
.avsnnd h2,
.avsnnd h3,
.avsnnd h4,
.avsnnd h5,
.avsnnd h6 {
    margin: 32px 0 16px;
    color: var(--clr-text, #e8eaf0);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.02em;
}

.avsnnd h1 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.avsnnd h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.avsnnd h3 {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.avsnnd p,
.avsnnd li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--clr-text-muted, #8b95a8);
}

.avsnnd p {
    margin: 0 0 18px;
}

.avsnnd a {
    color: var(--clr-accent, #1a8cff);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: var(--transition, .25s ease);
}

.avsnnd a:hover {
    color: var(--clr-accent-dark, #0070e0);
}

.avsnnd strong,
.avsnnd b {
    color: var(--clr-text, #e8eaf0);
    font-weight: 700;
}

.avsnnd ul,
.avsnnd ol {
    margin: 0 0 24px;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.avsnnd ul {
    list-style: none;
}

.avsnnd ul li {
    position: relative;
    padding-left: 24px;
}

.avsnnd ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-primary, #f0a500);
    box-shadow: 0 0 0 4px rgba(240, 165, 0, .14);
}

.avsnnd ol {
    counter-reset: avsnnd-counter;
    list-style: none;
}

.avsnnd ol li {
    position: relative;
    padding-left: 58px;
    min-height: 40px;
}

.avsnnd ol li::before {
    counter-increment: avsnnd-counter;
    content: counter(avsnnd-counter);
    position: absolute;
    top: 2px;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary, #f0a500), var(--clr-primary-dark, #c8880a));
    color: #000;
    font-size: .95rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(240, 165, 0, .22);
}

.avsnnd li + li {
    margin-top: 2px;
}

.avsnnd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--clr-primary, #f0a500);
    background: rgba(240, 165, 0, .08);
    border-radius: 0 14px 14px 0;
    color: var(--clr-text, #e8eaf0);
}

.avsnnd hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 32px 0;
}

.avsnnd img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 16px;
}

.avsnnd table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    background: var(--clr-bg, #0d1117);
    border: 1px solid var(--clr-border, #2a3447);
    border-radius: 16px;
}

.avsnnd thead {
    background: rgba(255, 255, 255, .04);
}

.avsnnd th,
.avsnnd td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
}

.avsnnd th {
    color: var(--clr-text, #e8eaf0);
    font-size: .9rem;
    font-weight: 700;
}

.avsnnd td {
    color: var(--clr-text-muted, #8b95a8);
    font-size: .95rem;
}

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

.avsnnd code {
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--clr-primary, #f0a500);
    font-size: .9em;
}

.avsnnd pre {
    margin: 24px 0;
    padding: 18px;
    border-radius: 16px;
    overflow-x: auto;
    background: #0a0f18;
    border: 1px solid var(--clr-border, #2a3447);
}

.avsnnd pre code {
    padding: 0;
    background: transparent;
    color: var(--clr-text, #e8eaf0);
}

.avsnnd h1 + p {
    font-size: 1.08rem;
    color: var(--clr-text, #e8eaf0);
    opacity: .9;
}

.avsnnd h2 + p,
.avsnnd h3 + p {
    margin-top: -2px;
}

.avsnnd p + h2,
.avsnnd ul + h2,
.avsnnd ol + h2,
.avsnnd section + h2 {
    margin-top: 40px;
}

.avsnnd section {
    margin-top: 28px;
}

@media (max-width: 768px) {
    .avsnnd {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .avsnnd h1 {
        font-size: 1.8rem;
    }

    .avsnnd h2 {
        font-size: 1.35rem;
    }

    .avsnnd h3 {
        font-size: 1.1rem;
    }

    .avsnnd p,
    .avsnnd li {
        font-size: .96rem;
        line-height: 1.7;
    }

    .avsnnd ol li {
        padding-left: 50px;
    }

    .avsnnd ol li::before {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: .85rem;
    }

    .avsnnd th,
    .avsnnd td {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .avsnnd {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .avsnnd h1 {
        font-size: 1.55rem;
    }

    .avsnnd h2 {
        font-size: 1.2rem;
    }

    .avsnnd h3 {
        font-size: 1rem;
    }

    .avsnnd p,
    .avsnnd li {
        font-size: .93rem;
        line-height: 1.65;
    }

    .avsnnd ul li {
        padding-left: 18px;
    }

    .avsnnd ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

    .avsnnd ol li {
        padding-left: 42px;
        min-height: 34px;
    }

    .avsnnd ol li::before {
        width: 28px;
        height: 28px;
        font-size: .8rem;
    }

    .avsnnd blockquote,
    .avsnnd pre,
    .avsnnd table {
        border-radius: 12px;
    }

    .avsnnd th,
    .avsnnd td {
        padding: 10px 12px;
        font-size: .88rem;
    }
}

.hdr-mobile-btns .btn {
    color: #fff !important;
}

.hdr-mobile-btns .btn--primary {
    color: #fff !important;
}

.hdr-mobile-btns .btn--accent {
    color: #fff !important;
}