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

:root {
    --c-primary: #1f668d;
    --c-nav: #2d6e9a;
    --c-nav-dark: #1e5070;
    --c-btn-light: #f5f5f5;
    --c-btn-gold: #ffaf08;
    --c-btn-gold-hover: #e09c00;
    --c-bg: #1a5a7e;
    --c-bg-dark: #143f57;
    --c-surface: #1e6489;
    --c-surface-2: #17536e;
    --c-surface-3: #0f3c52;
    --c-border: rgba(255, 255, 255, 0.12);
    --c-text: #e8f4fd;
    --c-text-muted: #9ecfe8;
    --c-text-dark: #0d2e3f;
    --c-white: #ffffff;
    --c-star: #ffaf08;
    --c-green: #27ae60;
    --c-red: #e74c3c;
    --c-orange: #f39c12;
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    --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: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--c-btn-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-white);
}

ul {
    list-style: none;
}

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

.xv3k2 {
    display: none;
}

.wp-block-placeholder {
    display: none !important;
}

.elementor-hidden {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

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

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

.section-gap {
    padding: 60px 0;
}

.section-gap--sm {
    padding: 32px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
}

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

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

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

.btn--gold:hover {
    background: var(--c-btn-gold-hover);
    color: var(--c-text-dark);
    border-color: var(--c-btn-gold-hover);
}

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

.btn--light:hover {
    background: #e0e0e0;
    color: var(--c-text-dark);
    border-color: #e0e0e0;
}

.btn--outline {
    background: transparent;
    color: var(--c-btn-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.7);
}

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

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

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.star {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
}

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

/* HEADER */
.site-header {
    background: var(--c-nav);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

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

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

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

.hdr-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: -0.3px;
}

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

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

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
}

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

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

.hdr-review-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.hdr-review-count strong {
    color: var(--c-btn-gold);
    font-size: 0.95rem;
}

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

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--c-nav-dark);
    border-top: 1px solid var(--c-border);
    padding: 12px 16px 16px;
    gap: 8px;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
}

.mobile-menu a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--c-border);
    margin: 4px 0;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d2e3f 0%, #1f668d 50%, #0d3a52 100%);
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 46, 63, 0.88) 40%, rgba(13, 46, 63, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 40px 0;
}

.hero-grid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.hero-left {
    flex: 0 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 300px;
    box-shadow: var(--shadow);
}

.hero-card-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-card-logo img {
    height: 56px;
    width: auto;
    border-radius: 10px;
}

.hero-card-logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-white);
}

.hero-card-logo-provider {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.hero-card-score {
    margin-bottom: 16px;
}

.score-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1;
}

.score-max {
    font-size: 1rem;
    color: var(--c-text-muted);
}

.score-bar {
    margin-top: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--c-green);
    transition: width 1s ease;
}

.hero-card-bonus {
    background: rgba(255, 175, 8, 0.12);
    border: 1px solid rgba(255, 175, 8, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 16px;
}

.bonus-label {
    font-size: 0.75rem;
    color: var(--c-btn-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bonus-text {
    font-size: 0.9rem;
    color: var(--c-white);
    font-weight: 600;
    margin-top: 2px;
}

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

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

.hero-center {
    flex: 1;
    min-width: 0;
}

.rating-summary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.rating-summary-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 16px;
}

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

.rating-row:last-child {
    margin-bottom: 0;
}

.rating-score-num {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    width: 18px;
    text-align: right;
    flex-shrink: 0;
}

.rating-mini-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}

.rating-mini-stars .star {
    font-size: 0.75rem;
}

.rating-bar-wrap {
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-inner {
    height: 100%;
    border-radius: 4px;
    background: var(--c-star);
}

.rating-count-num {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    width: 24px;
    text-align: right;
    flex-shrink: 0;
}

.hero-right {
    flex: 0 0 340px;
}

.info-block {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-block-title {
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-block-title button {
    font-size: 0.78rem;
    color: var(--c-btn-gold);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.info-grid {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row-label {
    color: var(--c-text-muted);
    flex-shrink: 0;
    white-space: nowrap;
}

.info-row-value {
    color: var(--c-white);
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

.info-row-value a {
    color: var(--c-btn-gold);
}

.info-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.info-modal-backdrop.is-open {
    display: flex;
}

.info-modal {
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.info-modal-head {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-modal-head h3 {
    font-size: 1.1rem;
    color: var(--c-white);
    font-weight: 600;
}

.info-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition);
}

.info-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--c-white);
}

.info-modal-body {
    padding: 20px 24px;
}

.pros-cons {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 24px;
}

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

.pros-col, .cons-col {
    padding: 20px;
}

.pros-col {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-cons-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.pros-cons-head.pros {
    color: var(--c-green);
}

.pros-cons-head.cons {
    color: var(--c-red);
}

.pros-cons-head svg {
    width: 18px;
    height: 18px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--c-text);
    padding: 5px 0;
    line-height: 1.5;
}

.pros-cons-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.pros-col .pros-cons-list li::before {
    background: var(--c-green);
}

.cons-col .pros-cons-list li::before {
    background: var(--c-red);
}

/* TABLE OF CONTENTS */
.toc-section {
    background: var(--c-surface-3);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.toc-inner {
    padding: 20px 0;
}

.toc-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.6px;
    font-weight: 600;
    margin-bottom: 10px;
}

.toc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.toc-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all var(--transition);
}

.toc-tab:hover, .toc-tab:focus {
    background: var(--c-nav);
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.toc-tab svg {
    width: 14px;
    height: 14px;
}

/* REVIEW FORM SECTION */
.review-section {
    padding: 50px 0;
}

.bonus-banner {
    background: linear-gradient(135deg, rgba(255, 175, 8, 0.15), rgba(255, 175, 8, 0.05));
    border: 1px solid rgba(255, 175, 8, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.bonus-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-banner-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 4px;
}

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

.review-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.review-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px;
}

.review-form-subtitle {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    margin-bottom: 24px;
}

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

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

.form-field--full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--transition), background var(--transition);
    width: 100%;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: rgba(255, 175, 8, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

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

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
}

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

.rating-field-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

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

.star-picker .s-star {
    font-size: 1.4rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.2);
    transition: color var(--transition), transform var(--transition);
}

.star-picker .s-star:hover,
.star-picker .s-star.active {
    color: var(--c-star);
}

.star-picker .s-star:hover {
    transform: scale(1.15);
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-lg);
}

.form-success.is-visible {
    display: block;
}

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

.form-success h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px;
}

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

/* USER REVIEWS */
.reviews-section {
    padding: 0 0 50px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.reviews-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
}

.reviews-count-badge {
    background: rgba(255, 175, 8, 0.15);
    border: 1px solid rgba(255, 175, 8, 0.25);
    color: var(--c-btn-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.review-card-head {
    padding: 20px 24px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    background: var(--c-surface-2);
}

.review-avatar-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-nav);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    flex-shrink: 0;
}

.review-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-white);
}

.review-author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 3px;
}

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

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

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

.review-rating-block {
    text-align: right;
    flex-shrink: 0;
}

.review-rating-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1;
}

.review-rating-num span {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-weight: 400;
}

.review-stars {
    justify-content: flex-end;
    margin-top: 4px;
}

.review-rating-details-btn {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--c-btn-gold);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.review-rating-details-btn:hover {
    text-decoration: underline;
}

.review-rating-breakdown {
    display: none;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.review-rating-breakdown.is-open {
    display: block;
}

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

.rb-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rb-label {
    font-size: 0.72rem;
    color: var(--c-text-muted);
}

.rb-stars {
    display: flex;
    gap: 1px;
}

.rb-stars .star {
    font-size: 0.8rem;
}

.review-card-body {
    padding: 0 24px 18px;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.76rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.review-source a {
    color: var(--c-btn-gold);
    font-size: 0.76rem;
}

.review-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 10px;
}

.review-text-wrap {
    position: relative;
}

.review-text {
    font-size: 0.88rem;
    color: var(--c-text);
    line-height: 1.65;
}

.review-text.is-collapsed .review-full-part {
    display: none;
}

.review-text .review-ellipsis {
    display: none;
}

.review-text.is-collapsed .review-ellipsis {
    display: inline;
}

.review-expand-btn {
    font-size: 0.82rem;
    color: var(--c-btn-gold);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    margin-top: 4px;
    padding: 0;
    display: block;
}

.review-expand-btn:hover {
    text-decoration: underline;
}

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

.rpc-col {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.rpc-head {
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.rpc-head.pros {
    color: var(--c-green);
}

.rpc-head.cons {
    color: var(--c-red);
}

.rpc-list li {
    font-size: 0.82rem;
    color: var(--c-text);
    padding: 2px 0;
    display: flex;
    gap: 6px;
}

.rpc-list li::before {
    content: '—';
    color: var(--c-text-muted);
    flex-shrink: 0;
}

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

.review-media img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: opacity var(--transition);
}

.review-media img:hover {
    opacity: 0.8;
}

.review-card-foot {
    padding: 12px 24px;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vote-group {
    display: flex;
    gap: 8px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--c-text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.vote-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-white);
}

.vote-btn.voted-like {
    border-color: var(--c-green);
    color: var(--c-green);
    background: rgba(39, 174, 96, 0.1);
}

.vote-btn.voted-dislike {
    border-color: var(--c-red);
    color: var(--c-red);
    background: rgba(231, 76, 60, 0.1);
}

.reply-toggle-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--c-text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.reply-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-white);
}

.reply-toggle-btn svg {
    width: 14px;
    height: 14px;
}

.reply-form-wrap {
    display: none;
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--c-border);
}

.reply-form-wrap.is-open {
    display: block;
}

.reply-form-wrap textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.88rem;
    resize: vertical;
    min-height: 80px;
    transition: border-color var(--transition);
}

.reply-form-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.reply-form-wrap textarea:focus {
    outline: none;
    border-color: rgba(255, 175, 8, 0.4);
}

.reply-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    justify-content: flex-end;
}

/* SUPPLEMENTARY / CONTENT */
.supp-section {
    padding: 50px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--c-border);
}

.content-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.content-block h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-white);
    margin: 24px 0 10px;
}

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-white);
    margin: 20px 0 8px;
}

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

.content-block p {
    font-size: 0.9rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 14px;
}

.content-block ul, .content-block ol {
    margin: 0 0 14px 20px;
}

.content-block ul {
    list-style: disc;
}

.content-block ol {
    list-style: decimal;
}

.content-block li {
    font-size: 0.9rem;
    color: var(--c-text);
    line-height: 1.65;
    padding: 3px 0;
}

.content-block a {
    color: var(--c-btn-gold);
    text-decoration: underline;
}

.content-block strong, .content-block b {
    color: var(--c-white);
    font-weight: 600;
}

.content-block em, .content-block i {
    font-style: italic;
}

.content-block blockquote {
    border-left: 3px solid var(--c-btn-gold);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(255, 175, 8, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px auto;
    font-size: 0.88rem;
    overflow-x: auto;
    display: block;
}

.content-block table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--c-white);
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--c-border);
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--c-text);
    text-align: left;
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.content-block img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
}

.author-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 28px;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 175, 8, 0.3);
    flex-shrink: 0;
    background: var(--c-nav);
}

.author-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-btn-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px;
}

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

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

.author-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--c-text-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all var(--transition);
}

.author-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-white);
}

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

/* FOOTER */
.site-footer {
    background: var(--c-nav-dark);
    border-top: 1px solid var(--c-border);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo-block {
}

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

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

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-white);
}

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

.footer-desc {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.footer-nav-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

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

.footer-nav-list a {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--c-white);
}

.trust-logos-block {
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.trust-logo {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--c-text-muted);
    font-weight: 600;
}

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

.footer-copyright {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.footer-legal {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    margin-top: 8px;
}

/* STICKY WIDGET */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--c-nav-dark);
    border-top: 2px solid rgba(255, 175, 8, 0.4);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.widget-text {
    flex: 1;
    min-width: 0;
}

.widget-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-white);
}

.widget-subtitle {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.widget-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
    border: none;
    font-family: inherit;
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--c-white);
}

.sticky-widget.is-hidden {
    display: none;
}

.body-widget-pad {
    padding-bottom: 62px;
}

/* HERO BANNER TEXT */
.hero-text-block {
    margin-top: 32px;
}

.hero-h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.25;
    margin-bottom: 12px;
    text-balance: balance;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 560px;
}

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

/* SPOILERS */
.spoiler-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
    font-family: inherit;
    margin-top: 8px;
}

.spoiler-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.spoiler-btn svg {
    transition: transform var(--transition);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.spoiler-btn.is-open svg {
    transform: rotate(180deg);
}

.spoiler-content {
    display: none;
    padding: 12px 0 4px;
}

.spoiler-content.is-open {
    display: block;
}

/* LIGHTBOX */
.lightbox-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop.is-open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background var(--transition);
}

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

/* WP COMPAT INVISIBLE */
.wp-pagenavi, .wp-caption, .screen-reader-text {
    font-size: 0;
    height: 0;
    overflow: hidden;
}

input[name="_wp_http_referer"] {
    display: none !important;
}

.elementor-section {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-right {
        flex: 0 0 280px;
    }

    .hero-card {
        width: 260px;
    }

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

@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
    }

    .hero-card {
        width: 100%;
    }

    .hero-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-center {
        width: 100%;
    }

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

    .pros-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rb-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .hero-h1 {
        font-size: 1.5rem;
    }

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

    .review-card-head {
        flex-direction: column;
    }

    .review-rating-block {
        text-align: left;
    }

    .review-stars {
        justify-content: flex-start;
    }

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

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

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

    .author-links {
        justify-content: center;
    }

    .review-form-wrap {
        padding: 20px;
    }

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

    .toc-tabs {
        gap: 6px;
    }

    .toc-tab {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .section-gap {
        padding: 36px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 360px;
    }

    .hero-card {
        padding: 18px;
    }

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

    .rb-grid {
        grid-template-columns: 1fr;
    }

    .vote-group {
        flex-wrap: wrap;
    }

    .review-form-wrap {
        padding: 16px;
    }

    .widget-title {
        font-size: 0.82rem;
    }

    .info-row {
        flex-direction: column;
        gap: 2px;
    }

    .info-row-value {
        text-align: left;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 4vw, 56px) 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(900px 420px at 10% 25%, rgba(255, 175, 8, .20), transparent 60%),
    linear-gradient(135deg, rgba(13, 46, 63, .92) 0%, rgba(31, 102, 141, .74) 55%, rgba(13, 46, 63, .88) 100%);
}

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

.hero-layout {
    display: grid;
    grid-template-columns:minmax(0, 420px) minmax(0, 1fr);
    gap: clamp(14px, 2.2vw, 24px);
    align-items: start;
}

.hero-layout > * {
    min-width: 0
}

.game-tile, .hero-ratings-summary {
    min-width: 0;
    max-width: 100%
}

.game-tile,
.hero-ratings-summary {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.game-tile {
    padding: clamp(14px, 2.2vw, 22px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.game-tile-logo img {
    width: clamp(56px, 10vw, 80px);
    height: clamp(56px, 10vw, 80px);
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}

.game-tile-rating {
    display: grid;
    grid-template-columns:minmax(0, 1fr);
    gap: 12px;
}

.rating-score-block {
    display: grid;
    grid-template-columns:auto 1fr;
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
}

.rating-number {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap
}

.rating-big {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    line-height: 1;
    color: #fff
}

.rating-max {
    font-size: 14px;
    color: var(--c-text-muted)
}

.big-stars .star {
    font-size: 18px
}

.rating-count {
    grid-column: 1/-1;
    color: var(--c-text-muted);
    font-size: 14px
}

.progress-bar-rating {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 10px;
    align-items: center;
}

.pbr-label {
    grid-column: 1/-1;
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}

.pbr-bar-wrap {
    height: 10px;
    background: rgba(255, 255, 255, .10);
    border-radius: 999px;
    overflow: hidden;
}

.pbr-bar {
    height: 100%;
    border-radius: 999px
}

.pbr-val {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    white-space: nowrap
}

.game-tile-bonus {
    background: rgba(255, 175, 8, .12);
    border: 1px solid rgba(255, 175, 8, .26);
    border-radius: 14px;
    padding: 10px 12px;
}

.game-tile-bonus-text {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    font-size: 14px;
}

.game-tile-bonus-text svg {
    flex-shrink: 0;
    color: var(--c-btn-gold);
    margin-top: 1px
}

.game-tile-actions {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
}

.game-tile-actions .btn {
    width: 100%;
    justify-content: center
}

.hero-ratings-summary {
    padding: clamp(14px, 2.2vw, 22px)
}

.hrs-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.hrs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px
}

.hrs-row {
    display: grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1.2fr) auto;
    gap: 10px;
    align-items: center;
}

.hrs-label {
    font-size: 13px;
    color: #fff;
    opacity: .92
}

.hrs-bar-wrap {
    height: 8px;
    background: rgba(255, 255, 255, .10);
    border-radius: 999px;
    overflow: hidden;
}

.hrs-bar {
    height: 100%;
    border-radius: 999px
}

.hrs-num {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    min-width: 34px;
    text-align: right;
}

.rating-dist-block {
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 12px;
}

.rdb-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.rdb-rows {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.rdb-row {
    display: grid;
    grid-template-columns:70px 1fr 26px;
    gap: 10px;
    align-items: center;
}

.rdb-star {
    font-size: 12px;
    color: var(--c-text-muted);
    white-space: nowrap
}

.rdb-bar-wrap {
    height: 8px;
    background: rgba(255, 255, 255, .10);
    border-radius: 999px;
    overflow: hidden;
}

.rdb-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-btn-gold), rgba(255, 213, 90, 1));
}

.rdb-cnt {
    font-size: 12px;
    color: #fff;
    text-align: right;
    font-weight: 700
}

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

    .hero-ratings-summary {
        order: 2
    }

    .game-tile {
        order: 1
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 18px 0
    }

    .game-tile, .hero-ratings-summary {
        border-radius: 16px
    }

    .game-tile-actions {
        grid-template-columns:1fr
    }

    .rating-score-block {
        grid-template-columns:1fr;
        row-gap: 6px
    }

    .rating-number {
        justify-content: flex-start
    }

    .hrs-row {
        grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) auto
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 12px
    }

    .game-tile, .hero-ratings-summary {
        padding: 14px
    }

    .rdb-row {
        grid-template-columns:64px 1fr 24px
    }
}

#about-game {
    padding: clamp(14px, 2.8vw, 28px) 0
}

#about-game .info-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(12px, 2.2vw, 18px);
    align-items: start;
}

#about-game .info-card,
#about-game .pros-cons-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

#about-game .info-card {
    padding: 0
}

#about-game .info-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

#about-game .info-card-head svg {
    flex-shrink: 0;
    opacity: .95
}

#about-game .info-card-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 175, 8, .14);
    border: 1px solid rgba(255, 175, 8, .28);
    color: var(--c-btn-gold);
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

#about-game .info-card-expand-btn:hover {
    background: rgba(255, 175, 8, .20);
    border-color: rgba(255, 175, 8, .38);
    color: #ffd27a;
}

#about-game .info-params-grid {
    padding: 14px 16px 6px;
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

#about-game .info-param {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .08);
    min-width: 0;
}

#about-game .ip-label {
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

#about-game .ip-val {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#about-game .ip-val a {
    color: var(--c-btn-gold);
    text-decoration: none
}

#about-game .ip-val a:hover {
    color: #ffd27a
}

#about-game .ip-val--highlight {
    background: rgba(39, 174, 96, .14);
    border: 1px solid rgba(39, 174, 96, .26);
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

#about-game .info-card-extra {
    padding: 0 16px 14px
}

#about-game .info-sub-section {
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .08);
}

#about-game .info-sub-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

#about-game .risk-badges,
#about-game .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#about-game .badge,
#about-game .ftag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

#about-game .badge--green {
    border-color: rgba(39, 174, 96, .30);
    background: rgba(39, 174, 96, .14);
    color: #dff7ea
}

#about-game .badge--orange {
    border-color: rgba(243, 156, 18, .32);
    background: rgba(243, 156, 18, .14);
    color: #fff2d6
}

#about-game .badge--red {
    border-color: rgba(231, 76, 60, .32);
    background: rgba(231, 76, 60, .14);
    color: #ffe0dc
}

#about-game .modal-trigger-btn {
    width: 100%;
    margin: 12px 16px 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 175, 8, .14);
    border: 1px solid rgba(255, 175, 8, .28);
    color: var(--c-btn-gold);
    font-weight: 900;
    letter-spacing: .02em;
}

#about-game .modal-trigger-btn:hover {
    background: rgba(255, 175, 8, .20);
    border-color: rgba(255, 175, 8, .38);
    color: #ffd27a;
}

#about-game .pros-cons-card {
    display: grid;
    grid-template-columns:1fr 1fr
}

#about-game .pros-col,
#about-game .cons-col {
    padding: 14px 16px
}

#about-game .pros-col {
    border-right: 1px solid rgba(255, 255, 255, .10)
}

#about-game .pc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 10px;
}

#about-game .pc-head svg {
    flex-shrink: 0
}

#about-game .pc-head--pros {
    color: var(--c-green)
}

#about-game .pc-head--cons {
    color: var(--c-red)
}

#about-game .pc-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

#about-game .pc-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    line-height: 1.35;
    color: #fff;
}

#about-game .pc-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

#about-game .pc-item--pro::before {
    background: var(--c-green)
}

#about-game .pc-item--con::before {
    background: var(--c-red)
}

.toc-block {
    margin: clamp(12px, 2.4vw, 18px) 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
}

.toc-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.toc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.toc-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: var(--c-text);
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .10);
    text-decoration: none;
    max-width: 100%;
}

.toc-tab svg {
    flex-shrink: 0;
    opacity: .9
}

.toc-tab:hover {
    background: rgba(255, 175, 8, .14);
    border-color: rgba(255, 175, 8, .28);
    color: #fff;
}

.toc-tab--active {
    background: rgba(255, 175, 8, .20);
    border-color: rgba(255, 175, 8, .36);
    color: #fff;
}

#leave-review {
    padding: clamp(14px, 2.8vw, 28px) 0
}

#leave-review .bonus-banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(255, 175, 8, .16), rgba(255, 175, 8, .06));
    border: 1px solid rgba(255, 175, 8, .28);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

#leave-review .bbc-icon {
    flex-shrink: 0;
    color: var(--c-btn-gold)
}

#leave-review .bbc-text {
    min-width: 0
}

#leave-review .bbc-title {
    font-weight: 900;
    color: #fff;
    line-height: 1.2
}

#leave-review .bbc-desc {
    margin-top: 4px;
    color: var(--c-text-muted);
    font-size: 13px;
    line-height: 1.45
}

#leave-review .bbc-btn {
    flex-shrink: 0
}

#leave-review .review-form-card {
    margin-top: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

#leave-review .rfc-title {
    padding: 14px 16px;
    background: rgba(0, 0, 0, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    font-weight: 900;
    color: #fff;
}

#leave-review .review-form {
    padding: 14px 16px 16px
}

#leave-review .rform-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
}

#leave-review .rform-group {
    margin-bottom: 10px;
    min-width: 0
}

#leave-review .rform-label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

#leave-review .rform-input,
#leave-review .rform-textarea {
    width: 100%;
    background: rgba(0, 0, 0, .14);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    padding: 11px 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

#leave-review .rform-input::placeholder,
#leave-review .rform-textarea::placeholder {
    color: rgba(255, 255, 255, .40)
}

#leave-review .rform-input:focus,
#leave-review .rform-textarea:focus {
    border-color: rgba(255, 175, 8, .40);
    box-shadow: 0 0 0 3px rgba(255, 175, 8, .14);
}

#leave-review .rform-textarea {
    min-height: 110px;
    resize: vertical
}

#leave-review .rform-ratings-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px 12px;
    margin-top: 6px;
}

#leave-review .rform-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .08);
    min-width: 0;
}

#leave-review .rfrr-label {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#leave-review .star-rating-input {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

#leave-review .sri-star {
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, .22);
    cursor: pointer;
    user-select: none;
    transition: transform .15s ease, color .15s ease;
}

#leave-review .sri-star:hover {
    transform: scale(1.1);
    color: rgba(255, 175, 8, .85)
}

#leave-review .sri-star.is-active {
    color: var(--c-btn-gold)
}

#leave-review .rform-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

#leave-review .rform-success {
    margin-top: 12px;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .26);
    color: #dff7ea;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 980px) {
    #about-game .info-grid {
        grid-template-columns:1fr
    }

    #about-game .pros-cons-card {
        grid-template-columns:1fr
    }

    #about-game .pros-col {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10)
    }
}

@media (max-width: 640px) {
    #about-game .info-params-grid {
        grid-template-columns:1fr
    }

    #about-game .info-param {
        align-items: center
    }

    #about-game .ip-label {
        white-space: normal
    }

    #about-game .ip-val {
        text-align: right
    }

    .toc-tabs {
        gap: 6px
    }

    .toc-tab {
        padding: 7px 10px;
        font-size: 12px
    }

    #leave-review .bonus-banner-card {
        flex-direction: column;
        align-items: flex-start
    }

    #leave-review .bbc-btn {
        width: 100%
    }

    #leave-review .rform-row {
        grid-template-columns:1fr
    }

    #leave-review .rform-ratings-grid {
        grid-template-columns:1fr
    }

    #leave-review .rform-rating-row {
        gap: 8px
    }

    #leave-review .sri-star {
        font-size: 20px
    }
}

@media (max-width: 420px) {
    #about-game .info-card-head {
        flex-wrap: wrap
    }

    #about-game .info-card-expand-btn {
        margin-left: auto
    }
}