@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --clr-nav: #2d6e9a;
    --clr-nav-dark: #245d84;
    --clr-bg: #1f668d;
    --clr-bg-dark: #185272;
    --clr-btn-light: #f5f5f5;
    --clr-btn-gold: #ffaf08;
    --clr-btn-gold-hover: #e09900;
    --clr-text-light: #ffffff;
    --clr-text-muted: rgba(255, 255, 255, 0.75);
    --clr-text-dark: #1a2a35;
    --clr-card-bg: rgba(255, 255, 255, 0.07);
    --clr-card-border: rgba(255, 255, 255, 0.15);
    --clr-pro: #2ecc71;
    --clr-con: #e74c3c;
    --clr-star: #ffaf08;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.18);
    --transition: 0.25s ease;
}

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

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none
}

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

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

.xw9k2-row {
    display: grid;
    gap: 24px
}

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

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

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

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

.btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 175, 8, 0.45)
}

.btn--outline {
    background: transparent;
    color: var(--clr-text-light);
    border: 2px solid rgba(255, 255, 255, 0.5)
}

.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08)
}

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

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

.btn--full {
    width: 100%
}

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

.qz47a-star {
    color: var(--clr-star);
    font-size: 1.1rem
}

.qz47a-star.empty {
    color: rgba(255, 255, 255, 0.25)
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--clr-nav);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

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

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

.hdr-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px
}

.hdr-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff
}

.hdr-logo-text span {
    color: var(--clr-btn-gold)
}

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

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition);
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff
}

.hdr-nav a svg {
    width: 15px;
    height: 15px;
    opacity: 0.8
}

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

.hdr-review-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
}

.hdr-review-count strong {
    color: var(--clr-btn-gold)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--clr-nav-dark);
    overflow-y: auto;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.active {
    display: flex
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.14)
}

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

.mobile-nav-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.mobile-nav-btns .btn {
    flex: 1
}

.hero-section {
    padding: 60px 20px;
    overflow: hidden
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: start;
}

.hero-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.hero-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 102, 141, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.hero-banner-overlay h1 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    text-balance: balance
}

.hero-banner-overlay p {
    color: var(--clr-text-muted);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5
}

.hero-right {
    display: grid;
    gap: 16px
}

.qr5v3-summary-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.qr5v3-summary-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-text-muted);
    margin-bottom: 14px
}

.rating-dist {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.rating-dist-row {
    display: grid;
    grid-template-columns:60px 1fr 36px;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem
}

.rating-dist-row .stars-label {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--clr-text-muted)
}

.rating-bar-wrap {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    height: 7px;
    overflow: hidden
}

.rating-bar-fill {
    height: 100%;
    border-radius: 20px;
    background: var(--clr-btn-gold);
    transition: width 0.8s ease
}

.rating-dist-row .count {
    color: var(--clr-text-muted);
    text-align: right
}

.overall-score-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 175, 8, 0.1);
    border: 1px solid rgba(255, 175, 8, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
}

.overall-score-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
    line-height: 1;
    flex-shrink: 0
}

.overall-score-right {
    flex: 1
}

.overall-score-right .score-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 4px
}

.overall-score-right .score-stars {
    font-size: 1.3rem;
    margin-bottom: 8px
}

.param-scores {
    display: grid;
    gap: 5px
}

.param-score-row {
    display: grid;
    grid-template-columns:1fr auto;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem
}

.param-score-row .param-name {
    color: var(--clr-text-muted)
}

.param-bar-wrap {
    width: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 5px;
    overflow: hidden
}

.param-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--clr-btn-gold)
}

.param-score-val {
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    min-width: 24px;
    text-align: right
}

.bonuses-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.bonus-tile {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.bonus-tile-icon {
    font-size: 1.5rem;
    margin-bottom: 6px
}

.bonus-tile-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.bonus-tile-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px
}

.pros-cons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-top: 4px
}

.pros-block, .cons-block {
    border-radius: var(--radius-sm);
    padding: 16px
}

.pros-block {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25)
}

.cons-block {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.25)
}

.pros-block h4, .cons-block h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px
}

.pros-block h4 {
    color: var(--clr-pro)
}

.cons-block h4 {
    color: var(--clr-con)
}

.pros-block li, .cons-block li {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 6px
}

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

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

.pros-block li:last-child, .cons-block li:last-child {
    border-bottom: none
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

.leave-review-section {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.bonus-banner {
    display: grid;
    grid-template-columns:1fr auto;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 175, 8, 0.18) 0%, rgba(255, 175, 8, 0.06) 100%);
    border: 1px solid rgba(255, 175, 8, 0.4);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 28px;
}

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

.bonus-banner-text p {
    color: var(--clr-text-muted);
    font-size: 0.9rem
}

.rv-form {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.rv-form h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px
}

.rv-form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group.full {
    grid-column: 1/-1
}

.form-group label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--transition);
    resize: vertical;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35)
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--clr-btn-gold)
}

.param-rating-group {
    grid-column: 1/-1
}

.param-rating-group label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    display: block
}

.param-ratings-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px
}

.param-rating-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px
}

.param-rating-item .pr-name {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px
}

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

.star-select button {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color var(--transition);
    padding: 2px
}

.star-select button.active {
    color: var(--clr-btn-gold)
}

.star-select button:hover {
    color: var(--clr-btn-gold)
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-md);
}

.form-success.show {
    display: block
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 12px
}

.form-success h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px
}

.form-success p {
    color: var(--clr-text-muted);
    font-size: 0.9rem
}

.reviews-section {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.mb-reviews-container {
    display: grid;
    gap: 20px
}

.mb-review-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: border-color var(--transition);
}

.mb-review-card:hover {
    border-color: rgba(255, 255, 255, 0.28)
}

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

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

.mb-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 175, 8, 0.4);
    flex-shrink: 0
}

.mb-review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mb-review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff
}

.mb-review-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--clr-text-muted)
}

.mb-review-country img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px
}

.mb-review-date {
    font-size: 0.78rem;
    color: var(--clr-text-muted)
}

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

.mb-rating-display {
    display: flex;
    align-items: center;
    gap: 6px
}

.mb-rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
    background: rgba(255, 175, 8, 0.12);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.mb-stars {
    display: flex;
    gap: 2px;
    font-size: 1.05rem
}

.mb-star {
    color: rgba(255, 255, 255, 0.2)
}

.mb-star.mb-star-filled {
    color: var(--clr-btn-gold)
}

.mb-rating-details-btn {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3px 10px;
    transition: all var(--transition);
}

.mb-rating-details-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4)
}

.mb-rating-details {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 12px;
}

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

.mb-rating-details-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 6px
}

.rd-param {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    gap: 8px
}

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

.rd-param .stars {
    font-size: 0.75rem;
    color: var(--clr-btn-gold)
}

.mb-review-source {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.mb-review-source a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    text-underline-offset: 2px
}

.mb-review-source::before {
    content: '🔗';
    font-size: 0.72rem
}

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

.mb-review-body {
    position: relative
}

.mb-review-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    overflow: hidden;
}

.mb-review-text.collapsed {
    max-height: 5.6em
}

.mb-review-expand {
    font-size: 0.82rem;
    color: var(--clr-btn-gold);
    margin-top: 4px;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
}

.mb-review-expand:hover {
    opacity: 0.8
}

.mb-review-media {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mb-review-media img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition);
}

.mb-review-media img:hover {
    border-color: var(--clr-btn-gold)
}

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

.mb-review-pros, .mb-review-cons {
    border-radius: var(--radius-sm);
    padding: 12px
}

.mb-review-pros {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2)
}

.mb-review-cons {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2)
}

.mb-review-pros h5, .mb-review-cons h5 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 7px
}

.mb-review-pros h5 {
    color: var(--clr-pro)
}

.mb-review-cons h5 {
    color: var(--clr-con)
}

.mb-pro-item {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 5px
}

.mb-pro-item::before {
    content: '✓';
    color: var(--clr-pro);
    font-weight: 700;
    flex-shrink: 0
}

.mb-con-item {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 5px
}

.mb-con-item::before {
    content: '✗';
    color: var(--clr-con);
    font-weight: 700;
    flex-shrink: 0
}

.mb-review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

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

.mb-vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition);
}

.mb-vote-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4)
}

.mb-vote-btn.voted-like {
    color: var(--clr-pro);
    border-color: var(--clr-pro)
}

.mb-vote-btn.voted-dislike {
    color: var(--clr-con);
    border-color: var(--clr-con)
}

.mb-reply-btn {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 6px 14px;
    transition: all var(--transition);
}

.mb-reply-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35)
}

.mb-reply-form {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.mb-reply-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    resize: vertical;
    min-height: 80px;
}

.mb-reply-form textarea:focus {
    outline: none;
    border-color: var(--clr-btn-gold)
}

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

.mb-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition)
}

.mb-btn-primary {
    background: var(--clr-btn-gold);
    color: var(--clr-text-dark)
}

.mb-btn-primary:hover {
    background: var(--clr-btn-gold-hover)
}

.mb-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.mb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff
}

.faq-section {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.faq-list {
    display: grid;
    gap: 10px
}

.faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05)
}

.faq-question.open {
    background: rgba(255, 175, 8, 0.08)
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform var(--transition);
    color: rgba(255, 255, 255, 0.6);
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-btn-gold);
    color: var(--clr-btn-gold)
}

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

.faq-answer.open {
    max-height: 400px;
    padding: 0 20px 18px
}

.faq-answer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65
}

.comparison-section {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 0 auto
}

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

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.comparison-table th {
    background: var(--clr-nav);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th:first-child, .comparison-table td:first-child {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.83rem
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.85)
}

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

.comparison-table .highlight {
    background: rgba(255, 175, 8, 0.07)
}

.comparison-table .highlight td:nth-child(2) {
    color: var(--clr-btn-gold);
    font-weight: 600
}

.ct-stars {
    font-size: 0.9rem;
    color: var(--clr-btn-gold)
}

.content-section {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.content-inner {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 28px;
    border-left: 3px solid var(--clr-btn-gold);
}

.author-block img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.author-info-text {
    flex: 1
}

.author-info-text strong {
    display: block;
    font-size: 0.9rem;
    color: #fff
}

.author-info-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55)
}

.author-info-text a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.78rem
}

.content-placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    text-align: center;
    padding: 32px;
    font-size: 0.95rem
}

.content-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px
}

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

.content-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 14px 0 8px
}

.content-body p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 12px
}

.content-body ul, .content-body ol {
    padding-left: 20px;
    margin-bottom: 12px
}

.content-body li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 4px
}

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

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

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.content-body table th {
    background: var(--clr-nav);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem
}

.content-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8)
}

.content-body a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    text-underline-offset: 2px
}

.content-body strong {
    color: #fff
}

.content-body blockquote {
    border-left: 3px solid var(--clr-btn-gold);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7)
}

footer.site-footer {
    background: var(--clr-nav);
    padding: 40px 0 0
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 32px;
    align-items: start;
    padding-bottom: 28px
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff
}

.footer-logo-text span {
    color: var(--clr-btn-gold)
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 220px
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-nav h5 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition)
}

.footer-nav a:hover {
    color: #fff
}

.footer-trust h5 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.trust-badge {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4)
}

.footer-legal {
    line-height: 1.5
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--clr-nav-dark);
    border-top: 2px solid var(--clr-btn-gold);
    padding: 10px 20px;
}

.sticky-widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sw-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff
}

.sw-text span {
    color: var(--clr-btn-gold)
}

.sw-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: all var(--transition);
    flex-shrink: 0;
}

.sw-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff
}

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

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25)
}

body.has-widget {
    padding-bottom: 60px
}

.section-gap {
    padding: 4px 0 48px
}

.k8m2b-divider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.flag-img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    vertical-align: middle
}

.form-hidden {
    display: none
}

@keyframes rz7kf-fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.rz7kf-anim {
    animation: rz7kf-fadeIn 0.5s ease both
}

.rz7kf-anim:nth-child(2) {
    animation-delay: 0.08s
}

.rz7kf-anim:nth-child(3) {
    animation-delay: 0.16s
}

.rz7kf-anim:nth-child(4) {
    animation-delay: 0.24s
}

.rz7kf-anim:nth-child(5) {
    animation-delay: 0.32s
}

.b9tx3-pulse {
    animation: b9tx3-pulse 2.5s ease-in-out infinite
}

@keyframes b9tx3-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 175, 8, 0.3)
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 175, 8, 0)
    }
}

.h3r1n-shimmer {
    position: relative;
    overflow: hidden
}

.h3r1n-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    animation: h3r1n-shimmer 2.5s infinite
}

@keyframes h3r1n-shimmer {
    from {
        transform: translateX(-100%)
    }
    to {
        transform: translateX(100%)
    }
}

.p4qm7-hidden {
    display: none !important
}

.p4qm7-vh {
    visibility: hidden !important
}

.j6wz2-unused-block {
    background: rgba(255, 0, 0, 0.0001);
    height: 0;
    overflow: hidden;
    position: absolute;
    pointer-events: none
}

.wp-block-paragraph {
    display: block
}

.wp-block-heading {
    display: block
}

.entry-content {
    display: block
}

.elementor-widget-text-editor {
    display: block
}

.yoast-seo-score {
    display: none;
    height: 0;
    overflow: hidden
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns:1fr
    }

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

    .bonuses-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

    .hdr-nav {
        display: none
    }

    .burger {
        display: flex
    }

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

    .footer-trust {
        grid-column: 1/-1
    }
}

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

    .hdr-logo-text {
        font-size: 1.1rem
    }

    .hdr-review-count {
        display: none
    }

    .hero-banner img {
        height: 220px
    }

    .hero-banner-overlay h1 {
        font-size: 1.4rem
    }

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

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

    .mb-review-header {
        flex-direction: column;
        align-items: flex-start
    }

    .mb-review-rating {
        align-items: flex-start
    }

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

    .mb-review-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

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

    .sticky-widget-inner {
        flex-wrap: wrap;
        gap: 10px
    }

    .overall-score-block {
        flex-direction: column;
        text-align: center
    }

    .param-scores {
        width: 100%
    }

    .bonus-banner {
        grid-template-columns:1fr
    }

    .bonus-banner .btn {
        width: fit-content
    }

    .content-inner {
        padding: 20px
    }

    .hdr-actions .hdr-review-count {
        display: none
    }
}

.container.svfgs {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 16px 58px;
    background: rgba(12, 28, 40, .58);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
}

.container.svfgs h1,
.container.svfgs h2,
.container.svfgs h3 {
    color: #fff;
    line-height: 1.22;
    letter-spacing: .2px;
}

.container.svfgs h1 {
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    font-weight: 900;
    margin: 0 0 14px;
    text-wrap: balance;
}

.container.svfgs h2 {
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    font-weight: 850;
    margin: 26px 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.container.svfgs h3 {
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    font-weight: 850;
    margin: 18px 0 10px;
}

.container.svfgs p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .86);
    font-size: .95rem;
    line-height: 1.75;
}

.container.svfgs a {
    color: var(--clr-btn-gold, #ffaf08);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity .22s ease, color .22s ease, background .22s ease;
}

.container.svfgs a:hover {
    opacity: .9;
    color: #ffd27a
}

.container.svfgs ul,
.container.svfgs ol {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .86);
    font-size: .95rem;
}

.container.svfgs ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.container.svfgs ul > li {
    position: relative;
    padding: 14px 14px 14px 44px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    line-height: 1.6;
}

.container.svfgs ul > li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 7px;
    background: rgba(255, 175, 8, .18);
    border: 1px solid rgba(255, 175, 8, .35);
    box-shadow: 0 10px 22px rgba(255, 175, 8, .12);
}

.container.svfgs ul > li::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-btn-gold, #ffaf08);
}

.container.svfgs ol {
    list-style: none;
    padding-left: 0;
    counter-reset: svfgs_step;
    display: grid;
    gap: 10px;
}

.container.svfgs ol > li {
    counter-increment: svfgs_step;
    position: relative;
    padding: 14px 14px 14px 54px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    line-height: 1.6;
}

.container.svfgs ol > li::before {
    content: counter(svfgs_step);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 30px;
    height: 30px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .9rem;
    color: #0b1c28;
    background: var(--clr-btn-gold, #ffaf08);
    box-shadow: 0 12px 26px rgba(255, 175, 8, .18);
}

.container.svfgs blockquote {
    margin: 14px 0;
    padding: 12px 14px 12px 16px;
    border-left: 3px solid var(--clr-btn-gold, #ffaf08);
    background: rgba(255, 255, 255, .05);
    border-radius: 0 14px 14px 0;
    color: rgba(255, 255, 255, .82);
    font-style: italic;
}

.container.svfgs hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 18px 0;
}

.container.svfgs img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.container.svfgs table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(13, 30, 43, .45);
    border: 1px solid rgba(255, 255, 255, .12);
    margin: 14px 0 18px;
}

.container.svfgs table th {
    background: var(--clr-nav, #2d6e9a);
    color: #fff;
    font-weight: 800;
    text-align: left;
    padding: 12px 14px;
    font-size: .88rem;
}

.container.svfgs table td {
    padding: 11px 14px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .85);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.container.svfgs table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .04);
}

.container.svfgs p:has(img) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.container.svfgs p img {
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    width: auto;
    margin: 0;
    border-radius: 12px;
}

.container.svfgs p img[style] {
    height: auto;
}

.container.svfgs p:last-child {
    margin-bottom: 0
}

@media (max-width: 900px) {
    .container.svfgs {
        padding: 34px 14px 46px;
        border-radius: 18px;
    }

    .container.svfgs ul {
        gap: 9px
    }

    .container.svfgs ul > li {
        padding: 12px 12px 12px 40px;
    }

    .container.svfgs ol > li {
        padding: 12px 12px 12px 50px;
    }
}

@media (max-width: 640px) {
    .container.svfgs {
        padding: 22px 12px 34px;
        border-radius: 20px;
    }

    .container.svfgs h2 {
        margin-top: 22px
    }

    .container.svfgs p,
    .container.svfgs ul,
    .container.svfgs ol {
        font-size: .94rem;
    }

    .container.svfgs ul > li,
    .container.svfgs ol > li {
        border-radius: 16px;
    }

    .container.svfgs ul > li::before {
        top: 12px
    }

    .container.svfgs ul > li::after {
        top: 18px
    }

    .container.svfgs p img {
        height: 34px;
        border-radius: 12px;
    }

    .container.svfgs table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container.svfgs table th,
    .container.svfgs table td {
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .container.svfgs {
        padding: 18px 10px 28px;
    }

    .container.svfgs p img {
        height: 30px;
    }
}