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

:root {
    --clr-nav: #2d6e9a;
    --clr-nav-dark: #245a80;
    --clr-bg: #1f668d;
    --clr-bg-dark: #175270;
    --clr-bg-light: #246890;
    --clr-btn-light: #f5f5f5;
    --clr-btn-gold: #ffaf08;
    --clr-btn-gold-hover: #e09c00;
    --clr-text: #e8f4fc;
    --clr-text-muted: #a8cde0;
    --clr-text-dark: #0d2d3e;
    --clr-white: #ffffff;
    --clr-card: rgba(13, 45, 62, 0.55);
    --clr-card-border: rgba(255, 255, 255, 0.12);
    --clr-star: #ffaf08;
    --clr-plus: #4cde8f;
    --clr-minus: #ff6b6b;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    --transition: 0.22s ease;
    --font: 'IBM Plex Sans', sans-serif;
}

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

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

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

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

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

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

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

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

.section {
    padding: 56px 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--clr-white);
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: var(--clr-btn-gold);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

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

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

.btn--light:hover {
    background: #e8e8e8;
}

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

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

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

.btn--outline:hover {
    background: rgba(245, 245, 245, 0.12);
}

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

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

.btn--full {
    width: 100%;
    justify-content: center;
}

.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
}

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
}

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

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

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

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

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

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

.header-review-count {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    text-align: center;
    line-height: 1.3;
}

.header-review-count strong {
    display: block;
    font-size: 1rem;
    color: var(--clr-btn-gold);
    font-weight: 700;
}

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

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

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--clr-nav-dark);
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

/* =========================================
   HERO
   ========================================= */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d2d3e 0%, var(--clr-bg-dark) 50%, var(--clr-nav) 100%);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.35;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 45, 62, 0.85) 0%, rgba(13, 45, 62, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 175, 8, 0.2);
    border: 1px solid var(--clr-btn-gold);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.8rem;
    color: var(--clr-btn-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-text);
    margin-bottom: 28px;
    max-width: 480px;
}

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

.hero-lower {
    padding: 40px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
}

.rating-block {
    padding: 28px;
}

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

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

.overall-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.overall-stars {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.star-item {
    font-size: 1.3rem;
    color: var(--clr-text-muted);
}

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

.rating-params {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-param-row {
    display: grid;
    grid-template-columns: 1fr 80px 36px;
    align-items: center;
    gap: 10px;
}

.rating-param-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-btn-gold), #ffcf50);
    border-radius: 3px;
    transition: width 1s ease;
}

.rating-param-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
    text-align: right;
}

.info-block {
    padding: 20px;
}

.info-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-block-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--clr-text);
    cursor: pointer;
    transition: background var(--transition);
}

.info-block-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

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

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

.info-item-key {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-item-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-white);
}

.info-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.info-logo-img {
    height: 22px;
    width: auto;
    object-fit: contain;
    border-radius: 3px;
}

.spoiler-more {
    display: none;
}

.spoiler-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--clr-btn-gold);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 0;
    cursor: pointer;
    transition: opacity var(--transition);
}

.spoiler-toggle:hover {
    opacity: 0.75;
}

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

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: #1a4e6e;
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
}

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

.bonus-tile {
    padding: 18px 16px;
    border-radius: var(--radius-md);
    background: rgba(13, 45, 62, 0.6);
    border: 1px solid var(--clr-card-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--transition), border-color var(--transition);
}

.bonus-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 175, 8, 0.4);
}

.bonus-icon {
    font-size: 1.6rem;
}

.bonus-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.bonus-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
}

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

.pros-col, .cons-col {
    padding: 22px;
    border-radius: var(--radius-md);
}

.pros-col {
    background: rgba(76, 222, 143, 0.1);
    border: 1px solid rgba(76, 222, 143, 0.2);
}

.cons-col {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

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

.pros-col .pros-cons-title {
    color: var(--clr-plus);
}

.cons-col .pros-cons-title {
    color: var(--clr-minus);
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-cons-list li {
    font-size: 0.88rem;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.pros-col .pros-cons-list li {
    background: rgba(76, 222, 143, 0.07);
}

.cons-col .pros-cons-list li {
    background: rgba(255, 107, 107, 0.07);
}

.pros-cons-list li::before {
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 1px;
}

.pros-col .pros-cons-list li::before {
    content: '+';
    color: var(--clr-plus);
}

.cons-col .pros-cons-list li::before {
    content: '−';
    color: var(--clr-minus);
}

/* =========================================
   LEAVE A REVIEW
   ========================================= */
.bonus-banner {
    border-radius: var(--radius-md);
    padding: 20px 28px;
    background: linear-gradient(90deg, rgba(255, 175, 8, 0.18) 0%, rgba(255, 175, 8, 0.06) 100%);
    border: 1px solid rgba(255, 175, 8, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

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

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

.review-form {
    padding: 28px;
}

.review-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 22px;
}

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

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

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

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

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

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

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

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

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

.rating-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rating-input-label {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

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

.star-rating input {
    display: none;
}

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

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

.star-rating {
    direction: rtl;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(76, 222, 143, 0.1);
    border: 1px solid rgba(76, 222, 143, 0.25);
    border-radius: var(--radius-md);
    animation: fadeIn 0.4s ease;
}

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

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

.form-success h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-plus);
}

/* =========================================
   USER REVIEWS
   ========================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.review-card {
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
}

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

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

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

.review-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-nav);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    flex-shrink: 0;
}

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

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

.review-flag {
    width: 18px;
    height: auto;
    border-radius: 2px;
}

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

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

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

.review-star {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

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

.review-rating-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
}

.rating-details-panel {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.rating-details-panel.open {
    display: flex;
}

.rating-details-row {
    display: grid;
    grid-template-columns: 1fr 60px 30px;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.rating-detail-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.rating-detail-fill {
    height: 100%;
    background: var(--clr-btn-gold);
    border-radius: 2px;
}

.rating-details-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.rating-details-btn:hover {
    border-color: var(--clr-btn-gold);
    color: var(--clr-btn-gold);
}

.review-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--clr-white);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 2px 8px;
}

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

.review-body {
    font-size: 0.87rem;
    color: var(--clr-text);
    line-height: 1.6;
}

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

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

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

.review-text-toggle:hover {
    opacity: 0.75;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

.review-pros {
    background: rgba(76, 222, 143, 0.08);
    border: 1px solid rgba(76, 222, 143, 0.18);
}

.review-cons {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.18);
}

.review-pros-title, .review-cons-title {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.review-pros-title {
    color: var(--clr-plus);
}

.review-cons-title {
    color: var(--clr-minus);
}

.review-pros-list, .review-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-pros-list li {
    font-size: 0.78rem;
    color: var(--clr-text);
    padding-left: 12px;
    position: relative;
}

.review-pros-list li::before {
    content: '+';
    color: var(--clr-plus);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.review-cons-list li {
    font-size: 0.78rem;
    color: var(--clr-text);
    padding-left: 12px;
    position: relative;
}

.review-cons-list li::before {
    content: '−';
    color: var(--clr-minus);
    position: absolute;
    left: 0;
    font-weight: 700;
}

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

.review-media img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity var(--transition);
}

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

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

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

.vote-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all var(--transition);
}

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

.vote-btn.active-like {
    border-color: var(--clr-plus);
    color: var(--clr-plus);
}

.vote-btn.active-dislike {
    border-color: var(--clr-minus);
    color: var(--clr-minus);
}

.reply-btn {
    background: none;
    border: 1px solid rgba(255, 175, 8, 0.35);
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--clr-btn-gold);
    cursor: pointer;
    transition: all var(--transition);
}

.reply-btn:hover {
    background: rgba(255, 175, 8, 0.1);
}

.reply-form-wrap {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.reply-form-wrap.open {
    display: flex;
}

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

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

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

/* =========================================
   FAQ
   ========================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--clr-btn-gold);
    color: var(--clr-text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.88rem;
    color: var(--clr-text);
    padding: 0 22px;
}

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

/* =========================================
   CASINO COMPARISON
   ========================================= */
.comparison-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th {
    background: var(--clr-nav-dark);
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-white);
    text-align: left;
}

.comparison-table td {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.85rem;
    color: var(--clr-text);
    text-align: left;
    vertical-align: middle;
}

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

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

.comparison-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.comparison-badge.current {
    background: rgba(255, 175, 8, 0.2);
    color: var(--clr-btn-gold);
    border: 1px solid rgba(255, 175, 8, 0.3);
}

.comparison-badge.other {
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-text-muted);
}

.comparison-stars {
    color: var(--clr-star);
    font-size: 0.85rem;
}

/* =========================================
   SCREENSHOTS
   ========================================= */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 16/10;
    border: 1px solid var(--clr-card-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--clr-white);
}

/* =========================================
   CONTENT BLOCK (Review text)
   ========================================= */
.content-block {
    padding: 32px;
}

.content-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

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

.content-author-title {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.content-author-link {
    font-size: 0.75rem;
    color: var(--clr-btn-gold);
}

.content-inner h1, .content-inner h2, .content-inner h3, .content-inner h4, .content-inner h5, .content-inner h6 {
    color: var(--clr-white);
    font-weight: 700;
    line-height: 1.3;
    margin: 1.4em 0 0.6em;
}

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

.content-inner h3 {
    font-size: 1.1rem;
}

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

.content-inner ul, .content-inner ol {
    margin: 0.8em 0 1.2em 1.5em;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-inner li {
    font-size: 0.9rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 0.85rem;
}

.content-inner th {
    background: var(--clr-nav-dark);
    padding: 10px 14px;
    text-align: left;
    color: var(--clr-white);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.content-inner td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--clr-text);
    vertical-align: top;
}

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

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

.content-inner a:hover {
    opacity: 0.8;
}

.content-inner blockquote {
    border-left: 3px solid var(--clr-btn-gold);
    padding: 12px 18px;
    background: rgba(255, 175, 8, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1em 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.content-inner code {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.85em;
    color: var(--clr-btn-gold);
}

.content-inner img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
}

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

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--clr-nav);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    padding: 40px 18px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    max-width: 280px;
    line-height: 1.5;
}

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

.footer-nav a {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

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

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

.footer-trust-label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.footer-trust-logo {
    height: 26px;
    width: auto;
    opacity: 0.65;
    filter: grayscale(40%);
    transition: opacity var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.footer-legal {
    max-width: 800px;
    margin: 8px auto 0;
    line-height: 1.5;
}

/* =========================================
   BOTTOM WIDGET
   ========================================= */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, var(--clr-nav-dark) 0%, #1a4d6e 100%);
    border-top: 2px solid var(--clr-btn-gold);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.widget-text {
    font-size: 0.88rem;
    color: var(--clr-white);
    font-weight: 500;
}

.widget-text strong {
    color: var(--clr-btn-gold);
}

.widget-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--clr-white);
    cursor: pointer;
    transition: background var(--transition);
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

body.widget-open {
    padding-bottom: 60px;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade {
    animation: fadeIn 0.5s ease both;
}

.btn--gold {
    animation: pulse 2.4s infinite;
}

.btn--gold:hover {
    animation: none;
}

/* =========================================
   UTILITIES / WP-LIKE HIDDEN
   ========================================= */
.wp-block-spacer {
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.wp-caption {
    max-width: 100%;
}

.entry-content {
    line-height: 1.7;
}

.b3d7a {
    display: none;
}

.x9f2c {
    visibility: hidden;
    height: 0;
}

.a4k1m {
    overflow: hidden;
    max-height: 0;
}


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

    .info-block {
        display: none;
    }

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

    .footer-trust {
        align-items: flex-start;
    }

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

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

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

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

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

@media (max-width: 600px) {
    .section {
        padding: 36px 0;
    }

    .hero-banner {
        min-height: 320px;
    }

    .overall-rating-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

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

    .bonus-banner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .bottom-widget {
        flex-direction: column;
        gap: 8px;
        padding: 12px 40px 12px 18px;
    }
}

.chhd {
    background: rgba(13, 45, 62, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 34px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .28);
    backdrop-filter: blur(6px);
}

.chhd p {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--clr-text);
    margin: 0 0 14px;
}

.chhd p:last-child {
    margin-bottom: 0;
}

.chhd h2 {
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--clr-white);
    margin: 26px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.chhd h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--clr-white);
    margin: 18px 0 10px;
}

.chhd a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition);
}

.chhd a:hover {
    opacity: .85;
}

.chhd ul,
.chhd ol {
    margin: 10px 0 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chhd ul {
    list-style: disc;
}

.chhd ol {
    list-style: decimal;
}

.chhd li {
    font-size: .92rem;
    color: var(--clr-text);
    line-height: 1.6;
}

.chhd blockquote {
    margin: 16px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--clr-btn-gold);
    background: rgba(255, 175, 8, .07);
    border-radius: 0 12px 12px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.chhd hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin: 22px 0;
}

.chhd table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    overflow-x: auto;
    display: block;
    border-radius: 12px;
}

.chhd th,
.chhd td {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    text-align: left;
    font-size: .9rem;
    color: var(--clr-text);
    white-space: nowrap;
}

.chhd th {
    background: rgba(45, 110, 154, .55);
    font-weight: 700;
    color: var(--clr-white);
}

.chhd tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

.chhd img {
    border-radius: 12px;
    margin: 14px 0;
}

.chhd strong,
.chhd b {
    color: var(--clr-white);
    font-weight: 700;
}

@media (max-width: 900px) {
    .chhd {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .chhd h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .chhd {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .chhd p {
        font-size: .93rem;
    }

    .chhd ul,
    .chhd ol {
        margin-left: 16px;
    }

    .chhd th,
    .chhd td {
        padding: 9px 12px;
        font-size: .86rem;
    }
}

@media (max-width: 420px) {
    .chhd {
        padding: 18px 14px;
    }

    .chhd h2 {
        font-size: 1.18rem;
    }
}