:root {
    --primary-color: #0066FF;
    --secondary-color: #FF3366;
    --accent-color: #00D9FF;
    --success-color: #00C853;
    --bg-dark: #0A0E27;
    --bg-light: #F5F7FA;
    --text-dark: #1A1A2E;
    --text-light: #FFFFFF;
    --text-gray: #6B7280;
    --border-color: #E5E7EB;
    --card-bg: #FFFFFF;
    --header-bg: #0A0E27;
    --footer-bg: #0A0E27;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container-9xk2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.km7x-header {
    background: var(--header-bg);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.km7x-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.km7x-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.km7x-logo img {
    display: block;
    height: 40px;
    width: auto;
}

.km7x-nav {
    display: flex;
    gap: 24px;
}

.km7x-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.km7x-nav-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.km7x-nav-link svg {
    width: 18px;
    height: 18px;
}

.km7x-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.km7x-reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
}

.km7x-reviews-count svg {
    fill: var(--accent-color);
}

.km7x-header-buttons {
    display: flex;
    gap: 12px;
}

.btn-7km3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary-7km3 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
}

.btn-primary-7km3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.btn-secondary-7km3 {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-secondary-7km3:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-login-7km3 {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
}

.btn-login-7km3:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.btn-register-7km3 {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 10px 20px;
}

.btn-register-7km3:hover {
    background: #FF1A4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
}

.btn-small-7km3 {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block-7km3 {
    width: 100%;
}

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

.km7x-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.km7x-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.km7x-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.km7x-mobile-menu.active {
    max-height: 500px;
}

.km7x-mobile-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.km7x-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.km7x-mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.km7x-mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.km7x-mobile-btn-login,
.km7x-mobile-btn-register {
    justify-content: center;
    font-weight: 600;
}

.km7x-mobile-btn-login {
    background: rgba(255, 255, 255, 0.1);
}

.km7x-mobile-btn-register {
    background: var(--secondary-color);
}

.qw7m-hero-section {
    background: var(--bg-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.qw7m-hero-banner {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9), rgba(0, 217, 255, 0.7)), url('/banner-win.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.qw7m-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.qw7m-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.qw7m-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
}

.qw7m-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.rt5n-stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.rt5n-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.rt5n-rating-card,
.rt5n-distribution-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rt5n-overall-rating {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.rt5n-rating-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.rt5n-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;
}

.rt5n-star {
    font-size: 28px;
    color: #FFB800;
}

.rt5n-star.half {
    color: #FFB800;
    position: relative;
}

.rt5n-star.half::before {
    content: '★';
    position: absolute;
    width: 50%;
    overflow: hidden;
    color: #FFB800;
}

.rt5n-reviews-count {
    color: var(--text-gray);
    font-size: 14px;
}

.rt5n-rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rt5n-rating-row {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 12px;
}

.rt5n-rating-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.rt5n-progress-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.rt5n-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.rt5n-rating-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.rt5n-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.rt5n-distribution-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt5n-dist-row {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.rt5n-dist-stars {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.rt5n-dist-bar {
    height: 24px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rt5n-dist-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.6s ease;
}

.rt5n-dist-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: right;
}

.rt5n-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.rt5n-pros,
.rt5n-cons {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rt5n-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.rt5n-pros .rt5n-section-title {
    color: var(--success-color);
}

.rt5n-cons .rt5n-section-title {
    color: var(--secondary-color);
}

.rt5n-icon {
    flex-shrink: 0;
}

.rt5n-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt5n-list li {
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.rt5n-pros .rt5n-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.rt5n-cons .rt5n-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.rt5n-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rt5n-bonus-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rt5n-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.rt5n-bonus-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.rt5n-bonus-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rt5n-bonus-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.rt5n-bonus-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.yh8p-review-form-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.yh8p-bonus-banner {
    background: linear-gradient(135deg, var(--secondary-color), #FF6B95);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.2);
}

.yh8p-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.yh8p-banner-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.yh8p-banner-text h3 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.yh8p-banner-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.yh8p-form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.yh8p-form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

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

.yh8p-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.yh8p-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.yh8p-form-group input,
.yh8p-form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.yh8p-form-group input:focus,
.yh8p-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.yh8p-ratings-block {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.yh8p-ratings-block h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.yh8p-rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.yh8p-rating-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.yh8p-stars-input {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.yh8p-stars-input span {
    font-size: 24px;
    color: #D1D5DB;
    transition: color 0.2s ease, transform 0.2s ease;
}

.yh8p-stars-input span:hover,
.yh8p-stars-input span.active {
    color: #FFB800;
    transform: scale(1.1);
}

.yh8p-success-message {
    text-align: center;
    padding: 60px 40px;
}

.yh8p-success-message svg {
    stroke: var(--success-color);
    margin-bottom: 24px;
}

.yh8p-success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 12px;
}

.yh8p-success-message p {
    font-size: 16px;
    color: var(--text-gray);
}

.pd3x-reviews-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.pd3x-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.mb-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mb-review-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.mb-review-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

.mb-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

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

.mb-review-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.mb-review-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
}

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

.mb-review-date {
    font-size: 13px;
    color: var(--text-gray);
}

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

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

.mb-rating-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.mb-star {
    font-size: 20px;
    color: #D1D5DB;
}

.mb-star.mb-star-filled {
    color: #FFB800;
}

.mb-rating-details-btn {
    font-size: 12px;
    color: var(--primary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 0;
}

.mb-rating-details {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.mb-rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mb-rating-item-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

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

.mb-star-small {
    font-size: 14px;
    color: #D1D5DB;
}

.mb-star-small.filled {
    color: #FFB800;
}

.mb-review-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mb-review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.mb-review-source a {
    color: var(--primary-color);
    text-decoration: none;
}

.mb-review-source a:hover {
    text-decoration: underline;
}

.mb-review-body {
    margin-bottom: 20px;
}

.mb-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.mb-review-text.mb-review-truncated {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.mb-review-text.mb-review-truncated::after {
    content: '...';
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, var(--card-bg) 50%);
    padding-left: 40px;
}

.mb-review-text.mb-review-expanded {
    max-height: none;
}

.mb-review-text.mb-review-expanded::after {
    display: none;
}

.mb-review-expand {
    margin-top: 8px;
    font-size: 14px;
    color: var(--primary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.mb-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.mb-review-pros h5,
.mb-review-cons h5 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mb-review-pros h5 {
    color: var(--success-color);
}

.mb-review-cons h5 {
    color: var(--secondary-color);
}

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

.mb-pro-item,
.mb-con-item {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.mb-pro-item::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.mb-con-item::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.mb-review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.mb-vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-vote-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.mb-vote-btn svg {
    width: 18px;
    height: 18px;
}

.mb-reply-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-reply-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.mb-reply-btn svg {
    width: 16px;
    height: 16px;
}

.mb-reply-form {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.mb-reply-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 12px;
}

.mb-reply-actions {
    display: flex;
    gap: 12px;
}

.mb-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.mb-btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.mb-btn-primary:hover {
    background: #0052CC;
}

.mb-btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.mb-btn-secondary:hover {
    background: var(--bg-light);
}

.fq2w-faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.fq2w-faq-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.fq2w-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fq2w-faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fq2w-faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.fq2w-faq-question:hover {
    background: var(--bg-light);
}

.fq2w-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fq2w-faq-item.active .fq2w-faq-icon {
    transform: rotate(180deg);
}

.fq2w-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fq2w-faq-item.active .fq2w-faq-answer {
    max-height: 500px;
}

.fq2w-faq-answer div {
    padding: 0 24px 24px;
}

.fq2w-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.zx9k2-content-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.zx9k2-advantages {
    margin-bottom: 60px;
}

.zx9k2-adv-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.zx9k2-adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zx9k2-adv-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zx9k2-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.zx9k2-adv-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.zx9k2-adv-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.zx9k2-adv-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.zx9k2-author-block {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.zx9k2-author-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.zx9k2-author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.zx9k2-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zx9k2-author-details h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.zx9k2-author-details p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.zx9k2-author-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.zx9k2-author-links a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.zx9k2-author-links a:hover {
    text-decoration: underline;
}

.zx9k2-main-content {
    max-width: 900px;
    margin: 0 auto;
}

.zx9k2-text-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.3;
}

.zx9k2-text-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.4;
}

.zx9k2-text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.zx9k2-text-content ul,
.zx9k2-text-content ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.zx9k2-text-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.zx9k2-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.zx9k2-text-content thead {
    background: var(--bg-dark);
}

.zx9k2-text-content th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid var(--border-color);
}

.zx9k2-text-content td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.zx9k2-text-content tr:last-child td {
    border-bottom: none;
}

.zx9k2-text-content tr:nth-child(even) {
    background: var(--bg-light);
}

.xt8q-footer {
    background: var(--footer-bg);
    color: var(--text-light);
    padding: 60px 0 24px;
}

.xt8q-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xt8q-footer-logo {
    display: block;
    margin-bottom: 16px;
}

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

.xt8q-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.xt8q-footer-license {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.xt8q-footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.xt8q-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.xt8q-footer-nav a:hover {
    color: var(--accent-color);
}

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

.xt8q-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.xt8q-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.xt8q-contact-item a:hover {
    color: var(--accent-color);
}

.xt8q-footer-trust {
    margin-bottom: 32px;
}

.xt8q-trust-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

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

.xt8q-trust-logos img {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.xt8q-trust-logos img:hover {
    opacity: 1;
}

.xt8q-footer-payments {
    margin-bottom: 32px;
}

.xt8q-footer-payments img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

.xt8q-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.xt8q-footer-legal p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.xt8q-disclaimer {
    max-width: 800px;
    line-height: 1.6;
}

.xt8q-footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.xt8q-footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.xt8q-footer-links a:hover {
    color: var(--accent-color);
}

.kw9x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.kw9x-widget.hidden {
    transform: translateY(100%);
}

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

.kw9x-widget-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kw9x-widget-bonus {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

.kw9x-widget-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.kw9x-widget-btn {
    padding: 12px 32px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kw9x-widget-btn:hover {
    background: #FF1A4F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.wp-custom-block,
.elementor-widget-container,
.wp-block-group {
    display: none;
}

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

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

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

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

@media (max-width: 768px) {
    .km7x-nav,
    .km7x-reviews-count,
    .km7x-header-buttons {
        display: none;
    }

    .km7x-burger {
        display: flex;
    }

    .km7x-mobile-menu {
        display: block;
    }

    .qw7m-hero-title {
        font-size: 32px;
    }

    .qw7m-hero-subtitle {
        font-size: 16px;
    }

    .qw7m-hero-buttons {
        flex-direction: column;
    }

    .rt5n-rating-row {
        grid-template-columns: 100px 1fr 50px;
    }

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

    .rt5n-bonuses-grid {
        grid-template-columns: 1fr;
    }

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

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

    .yh8p-banner-text h3 {
        font-size: 20px;
    }

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

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

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

    .zx9k2-adv-grid {
        grid-template-columns: 1fr;
    }

    .zx9k2-author-info {
        flex-direction: column;
        text-align: center;
    }

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

    .kw9x-widget-content {
        flex-direction: column;
        text-align: center;
    }

    .kw9x-widget-text {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .qw7m-hero-title {
        font-size: 24px;
    }

    .pd3x-section-title,
    .fq2w-faq-title,
    .zx9k2-adv-title {
        font-size: 28px;
    }

    .rt5n-rating-number {
        font-size: 48px;
    }

    .mb-review-card {
        padding: 20px;
    }

    .yh8p-form-container {
        padding: 24px;
    }
}

.mdhdh {
    max-width: 920px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    color: #1f2937;
}

.mdhdh h1,
.mdhdh h2,
.mdhdh h3 {
    margin: 0;
    color: #0f172a;
    line-height: 1.25;
    font-weight: 800;
}

.mdhdh h1 {
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mdhdh h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 4px solid #2563eb;
}

.mdhdh h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
}

.mdhdh p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.mdhdh ul,
.mdhdh ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.mdhdh li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
}

.mdhdh a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
    word-break: break-word;
}

.mdhdh a:hover {
    color: #1d4ed8;
    border-color: currentColor;
}

.mdhdh strong {
    color: #111827;
}

.mdhdh > p:first-of-type {
    font-size: 19px;
    color: #4b5563;
}

.mdhdh h1 + p {
    padding: 20px 24px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid #dbeafe;
    border-radius: 18px;
}

.mdhdh ul li::marker,
.mdhdh ol li::marker {
    color: #2563eb;
    font-weight: 700;
}

.mdhdh h2 + p,
.mdhdh h2 + ul {
    margin-top: 0;
}

.mdhdh p:last-child,
.mdhdh ul:last-child,
.mdhdh ol:last-child {
    margin-bottom: 0;
}

.mdhdh h3 + p {
    padding: 18px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

@media (max-width: 991px) {
    .mdhdh {
        margin: 24px auto;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .mdhdh h1 {
        font-size: 34px;
    }

    .mdhdh h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .mdhdh h3 {
        font-size: 20px;
    }

    .mdhdh p,
    .mdhdh li {
        font-size: 16px;
    }

    .mdhdh > p:first-of-type {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .mdhdh {
        margin: 16px auto;
        padding: 24px 16px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .mdhdh h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .mdhdh h2 {
        font-size: 21px;
        margin-top: 28px;
        margin-bottom: 14px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .mdhdh h3 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .mdhdh p,
    .mdhdh li {
        font-size: 15px;
        line-height: 1.7;
    }

    .mdhdh ul,
    .mdhdh ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .mdhdh h1 + p,
    .mdhdh h3 + p {
        padding: 16px;
        border-radius: 14px;
    }
}

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

    .mdhdh h1 {
        font-size: 24px;
    }

    .mdhdh h2 {
        font-size: 19px;
    }

    .mdhdh h3 {
        font-size: 17px;
    }

    .mdhdh p,
    .mdhdh li,
    .mdhdh > p:first-of-type {
        font-size: 14px;
    }
}