:root {
    --c-nav: #2d6e9a;
    --c-nav-dark: #1a4f73;
    --c-bg: #1f668d;
    --c-bg-deep: #163f58;
    --c-btn-light: #f5f5f5;
    --c-btn-gold: #ffaf08;
    --c-white: #ffffff;
    --c-text: #e8f4fd;
    --c-text-muted: #a8cfe0;
    --c-card: #1b5a7a;
    --c-card-border: rgba(255, 255, 255, .10);
    --c-pro: #27ae60;
    --c-con: #e74c3c;
    --c-star: #ffaf08;
    --c-progress-low: #e74c3c;
    --c-progress-mid: #f39c12;
    --c-progress-high: #27ae60;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .25);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .18);
    --transition: .22s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover {
    opacity: .8;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.xw9k2 {
    display: none !important;
}

.pq7m3a {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

.a3z8b {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: -9999px;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    border: none;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    opacity: 1;
}

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

.btn--light {
    background: var(--c-btn-light);
    color: #1a3a4f;
}

.btn--gold {
    background: var(--c-btn-gold);
    color: #1a3a4f;
}

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

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

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

.site-header {
    background: var(--c-nav);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.header-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: .03em;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c-text);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--c-white);
    opacity: 1;
}

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

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

.header-review-count {
    font-size: .78rem;
    color: var(--c-text-muted);
    background: rgba(0, 0, 0, .2);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-nav-dark);
    z-index: 99;
    padding: 80px 24px 32px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

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

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

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .1);
    opacity: 1;
}

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

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    padding: 16px 0 8px;
    flex-wrap: wrap;
}

.mobile-review-count {
    font-size: .82rem;
    color: var(--c-text-muted);
    text-align: center;
    padding: 8px 0;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0e3a52 0%, #1f668d 50%, #2d6e9a 100%);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 58, 82, .85) 40%, rgba(14, 58, 82, .3));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 0;
}

.hero-tile {
    background: rgba(27, 90, 122, .75);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(8px);
    max-width: 480px;
}

.hero-tile-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-game-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    flex-shrink: 0;
}

.hero-game-info {
    flex: 1;
}

.hero-game-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.2;
}

.hero-game-subtitle {
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.hero-stars span {
    font-size: 1.2rem;
    color: var(--c-text-muted);
}

.hero-stars span.active {
    color: var(--c-star);
}

.hero-rating-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
}

.hero-rating-count {
    font-size: .8rem;
    color: var(--c-text-muted);
}

.hero-bonus-badge {
    background: linear-gradient(135deg, var(--c-btn-gold), #e89e00);
    color: #1a3a4f;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.3;
}

.hero-bonus-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .7;
}

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

.hero-score-tile {
    background: rgba(27, 90, 122, .75);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    backdrop-filter: blur(8px);
    max-width: 480px;
}

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

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

.score-bar-wrap {
    flex: 2;
    background: rgba(0, 0, 0, .25);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    border-radius: 20px;
    transition: width .8s ease;
}

.score-val {
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-white);
    min-width: 24px;
    text-align: right;
}

.info-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 0 0 20px;
}

.info-block-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .15);
    border-radius: 8px;
}

.info-item-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--c-text-muted);
    font-weight: 600;
}

.info-item-value {
    font-size: .92rem;
    color: var(--c-white);
    font-weight: 500;
}

.info-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.info-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .7;
    transition: opacity var(--transition);
}

.info-logo-img:hover {
    opacity: 1;
}

.spoiler-btn {
    background: none;
    border: none;
    color: var(--c-btn-gold);
    font-size: .88rem;
    font-weight: 600;
    padding: 0;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity var(--transition);
}

.spoiler-btn:hover {
    opacity: .75;
}

.spoiler-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}

.spoiler-content.open {
    max-height: 2000px;
}

.bonus-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.bonus-tile {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-tile-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--c-text-muted);
    font-weight: 600;
}

.bonus-tile-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.3;
}

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

.pros-block, .cons-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.pros-block-title, .cons-block-title {
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pros-block-title {
    color: var(--c-pro);
}

.cons-block-title {
    color: var(--c-con);
}

.pros-list li, .cons-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pros-list li::before {
    content: '+';
    color: var(--c-pro);
    font-weight: 700;
    flex-shrink: 0;
}

.cons-list li::before {
    content: '−';
    color: var(--c-con);
    font-weight: 700;
    flex-shrink: 0;
}

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

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.bonus-banner {
    background: linear-gradient(135deg, var(--c-nav-dark), var(--c-nav));
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.bonus-banner-text {
    flex: 1;
}

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

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

.review-form-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 32px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-group input, .form-group textarea {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--c-white);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color var(--transition);
}

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

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

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

.ratings-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

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

.rating-item label {
    font-size: .82rem;
    color: var(--c-text-muted);
    font-weight: 600;
}

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

.star-input input {
    display: none;
}

.star-input label {
    font-size: 1.4rem;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: color .15s;
}

.star-input input:checked ~ label, .star-input label:hover, .star-input label:hover ~ label {
    color: var(--c-star);
}

.form-success {
    display: none;
    background: rgba(39, 174, 96, .15);
    border: 1px solid var(--c-pro);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    color: var(--c-pro);
    font-weight: 600;
}

.form-success.show {
    display: block;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.review-card {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: box-shadow var(--transition);
}

.review-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .3);
}

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

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

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

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

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

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

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

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

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

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

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

.review-stars span {
    font-size: 1rem;
    color: var(--c-text-muted);
}

.review-stars span.active {
    color: var(--c-star);
}

.review-rating-num {
    font-size: .82rem;
    color: var(--c-text-muted);
}

.review-rating-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--c-text-muted);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    cursor: pointer;
    transition: all var(--transition);
}

.review-rating-toggle:hover {
    border-color: var(--c-btn-gold);
    color: var(--c-btn-gold);
}

.review-rating-details {
    display: none;
    background: rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.review-rating-details.open {
    display: block;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

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

.detail-label {
    font-size: .78rem;
    color: var(--c-text-muted);
    flex: 1;
}

.detail-bar-wrap {
    flex: 2;
    background: rgba(0, 0, 0, .25);
    border-radius: 20px;
    height: 6px;
    overflow: hidden;
}

.detail-bar {
    height: 100%;
    border-radius: 20px;
    background: var(--c-star);
}

.detail-val {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-white);
    min-width: 18px;
    text-align: right;
}

.review-source {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-source-badge {
    background: rgba(255, 175, 8, .15);
    border: 1px solid rgba(255, 175, 8, .3);
    color: var(--c-btn-gold);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
}

.review-source a {
    color: var(--c-btn-gold);
    font-weight: 600;
}

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

.review-body {
    position: relative;
}

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

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

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

.review-expand-btn {
    background: none;
    border: none;
    color: var(--c-btn-gold);
    font-size: .85rem;
    font-weight: 600;
    padding: 4px 0 0;
    cursor: pointer;
    transition: opacity var(--transition);
}

.review-expand-btn:hover {
    opacity: .75;
}

.review-pros-cons {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.review-pros, .review-cons {
    flex: 1 1 160px;
    background: rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 10px 12px;
}

.review-pros-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--c-pro);
    margin-bottom: 6px;
}

.review-cons-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--c-con);
    margin-bottom: 6px;
}

.review-pros ul li, .review-cons ul li {
    font-size: .82rem;
    color: var(--c-text);
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.review-pros ul li::before {
    content: '+';
    color: var(--c-pro);
    font-weight: 700;
    flex-shrink: 0;
}

.review-cons ul li::before {
    content: '−';
    color: var(--c-con);
    font-weight: 700;
    flex-shrink: 0;
}

.review-media {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.review-media-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform var(--transition);
}

.review-media-thumb:hover {
    transform: scale(1.05);
}

.review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

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

.vote-btn {
    background: rgba(0, 0, 0, .15);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--c-text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .83rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

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

.vote-btn.liked {
    background: rgba(39, 174, 96, .2);
    border-color: var(--c-pro);
    color: var(--c-pro);
}

.vote-btn.disliked {
    background: rgba(231, 76, 60, .2);
    border-color: var(--c-con);
    color: var(--c-con);
}

.reply-toggle-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--c-text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .83rem;
    transition: all var(--transition);
}

.reply-toggle-btn:hover {
    border-color: var(--c-btn-gold);
    color: var(--c-btn-gold);
}

.reply-form {
    display: none;
    margin-top: 12px;
    background: rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 14px;
}

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

.reply-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--c-white);
    font-family: inherit;
    font-size: .88rem;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px;
}

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

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

.supplementary {
    padding: 40px 0;
}

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 24px;
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5, .content-block h6 {
    color: var(--c-white);
    margin: 20px 0 10px;
    line-height: 1.35;
}

.content-block h1 {
    font-size: 1.6rem;
}

.content-block h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 8px;
}

.content-block h3 {
    font-size: 1.2rem;
}

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

.content-block ul, .content-block ol {
    margin: 10px 0 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.content-block ul li {
    list-style: disc;
    font-size: .93rem;
    line-height: 1.6;
    color: var(--c-text);
}

.content-block ol li {
    list-style: decimal;
    font-size: .93rem;
    line-height: 1.6;
    color: var(--c-text);
}

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

.content-block table th, .content-block table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: .88rem;
}

.content-block table th {
    background: rgba(0, 0, 0, .25);
    color: var(--c-white);
    font-weight: 700;
}

.content-block table td {
    color: var(--c-text);
}

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

.content-block blockquote {
    border-left: 4px solid var(--c-btn-gold);
    padding: 10px 16px;
    margin: 12px 0;
    background: rgba(255, 175, 8, .06);
    border-radius: 0 8px 8px 0;
}

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

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

.content-block em {
    font-style: italic;
    color: var(--c-text-muted);
}

.content-block hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 20px 0;
}

.faq-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--c-white);
    text-align: left;
    padding: 16px 20px;
    font-size: .95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: background var(--transition);
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--c-btn-gold);
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 20px 16px;
    font-size: .9rem;
    color: var(--c-text);
    line-height: 1.65;
}

.author-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, .15);
}

.author-info {
    flex: 1;
}

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

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

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, .2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .82rem;
    color: var(--c-text-muted);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all var(--transition);
}

.author-link:hover {
    border-color: var(--c-btn-gold);
    color: var(--c-btn-gold);
    opacity: 1;
}

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

.site-footer {
    background: var(--c-nav-dark);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 40px 0 20px;
    margin-top: 40px;
}

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

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

.footer-nav-col {
}

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

.footer-nav a {
    color: var(--c-text-muted);
    font-size: .85rem;
    padding: 4px 0;
    transition: color var(--transition);
}

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

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-trust-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--c-text-muted);
    font-weight: 600;
}

.footer-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-trust-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .45;
    transition: opacity var(--transition);
}

.footer-trust-logo:hover {
    opacity: .8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

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

.footer-legal {
    font-size: .75rem;
    color: rgba(168, 207, 224, .5);
    line-height: 1.6;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--c-nav-dark), var(--c-nav));
    border-top: 2px solid var(--c-btn-gold);
    padding: 12px 20px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
}

.widget-text {
    flex: 1;
}

.widget-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    font-weight: 600;
}

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

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

.widget-close:hover {
    color: var(--c-white);
}

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

.b3x9w {
    color: inherit;
    font-size: inherit;
}

.r7k2p {
    display: inline;
}

.m4j8n {
    font-size: 0;
    line-height: 0;
}

.q6y1z {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.v5t3r {
    position: relative;
    display: inline-block;
}

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns:1fr 1fr;
    }

    .hero-content {
        flex-direction: column;
    }
}

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

    .burger {
        display: flex;
    }

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

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

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 32px 0;
    }

    .hero-tile, .hero-score-tile {
        max-width: 100%;
    }

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

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

    .sticky-widget {
        flex-wrap: wrap;
    }

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

@media (max-width: 480px) {
    .ratings-grid {
        grid-template-columns:1fr;
    }

    .hero-tile-btns {
        flex-direction: column;
    }

    .review-header {
        flex-direction: column;
    }

    .review-rating-wrap {
        align-items: flex-start;
    }

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

    .header-right .btn {
        padding: 7px 12px;
        font-size: .8rem;
    }
}

.container.sghyd {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 16px 56px;
    background: rgba(13, 30, 43, 0.55);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
    backdrop-filter: blur(8px);
}

.container.sghyd h1,
.container.sghyd h2,
.container.sghyd h3 {
    color: #fff;
    letter-spacing: .2px;
}

.container.sghyd h1 {
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 14px;
}

.container.sghyd h2 {
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    font-weight: 850;
    line-height: 1.2;
    margin: 26px 0 12px;
}

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

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

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

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

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

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

.container.sghyd 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: 12px;
    line-height: 1.55;
}

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

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

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

.container.sghyd ol > li {
    counter-increment: step;
    position: relative;
    padding: 14px 14px 14px 52px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    line-height: 1.55;
}

.container.sghyd ol > li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .9rem;
    color: #0d1e2b;
    background: var(--c-btn-gold, #ffaf08);
    box-shadow: 0 10px 22px rgba(255, 175, 8, .18);
}

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

.container.sghyd 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.sghyd table th {
    background: var(--c-nav, #2d6e9a);
    color: #fff;
    font-weight: 800;
    text-align: left;
    padding: 12px 14px;
    font-size: .9rem;
}

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

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

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

.container.sghyd p img {
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    width: auto;
    margin-left: 8px;
    border-radius: 10px;
}

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

@media (max-width: 900px) {
    .container.sghyd {
        padding: 32px 14px 44px;
    }

    .container.sghyd ul {
        gap: 9px
    }

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

    .container.sghyd ol > li {
        padding: 12px 12px 12px 48px;
    }
}

@media (max-width: 600px) {
    .container.sghyd {
        padding: 22px 12px 34px;
        border-radius: 18px;
    }

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

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

    .container.sghyd ul > li,
    .container.sghyd ol > li {
        border-radius: 14px;
    }

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

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

    .container.sghyd p img {
        height: 34px;
        margin-left: 6px;
    }

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

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

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

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