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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f5f5f5;
}

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

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

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

.j4t9s-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.xk7m2-header-container {
    padding: 15px 0;
}

.xk7m2-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.xk7m2-logo-link {
    display: block;
}

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

.xk7m2-nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.xk7m2-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.xk7m2-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.xk7m2-nav-link:hover {
    color: #4caf50;
}

.xk7m2-icon {
    width: 20px;
    height: 20px;
}

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

.xk7m2-reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e0e0e0;
    font-size: 14px;
}

.xk7m2-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.xk7m2-btn-login {
    background: #2196f3;
    color: white;
}

.xk7m2-btn-login:hover {
    background: #1976d2;
    transform: translateY(-2px);
}

.xk7m2-btn-register {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.xk7m2-btn-register:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    transform: translateY(-2px);
}

.xk7m2-btn-review {
    background: #4caf50;
    color: white;
}

.xk7m2-btn-review:hover {
    background: #45a049;
    transform: translateY(-2px);
}

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

.xk7m2-burger-line {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.xk7m2-mobile-menu {
    display: none;
    background: #16213e;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.xk7m2-nav-list-mobile {
    list-style: none;
}

.xk7m2-nav-item-mobile {
    margin: 0;
}

.xk7m2-nav-link-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.xk7m2-nav-link-mobile:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.h7p2m-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h7p2m-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h7p2m-hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    width: 100%;
    padding: 80px 0;
}

.h7p2m-hero-content {
    text-align: center;
    color: white;
}

.h7p2m-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.h7p2m-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.5;
}

.h7p2m-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.h7p2m-btn {
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.h7p2m-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.h7p2m-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.h7p2m-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.h7p2m-btn-secondary:hover {
    background: white;
    color: #1a1a2e;
}

.k9x4n-rating-section {
    padding: 60px 0;
    background: white;
}

.k9x4n-rating-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.k9x4n-rating-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.k9x4n-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.k9x4n-overall-score {
    text-align: center;
    margin-bottom: 30px;
}

.k9x4n-score-value {
    font-size: 72px;
    font-weight: 700;
    color: #4caf50;
    display: block;
    line-height: 1;
}

.k9x4n-stars-large {
    font-size: 32px;
    color: #ffa726;
    margin: 10px 0;
}

.k9x4n-star-filled {
    color: #ffa726;
}

.k9x4n-star-half {
    color: #ffa726;
}

.k9x4n-review-count {
    color: #666;
    font-size: 14px;
}

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

.k9x4n-rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.k9x4n-rating-label {
    min-width: 70px;
    font-size: 14px;
    color: #666;
}

.k9x4n-rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.k9x4n-rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
    border-radius: 4px;
}

.k9x4n-rating-percent {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.k9x4n-detailed-ratings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.k9x4n-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.k9x4n-detail-label {
    min-width: 150px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.k9x4n-detail-bar {
    flex: 1;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.k9x4n-detail-fill {
    height: 100%;
    background: linear-gradient(90deg, #2196f3 0%, #64b5f6 100%);
    border-radius: 5px;
}

.k9x4n-detail-score {
    min-width: 50px;
    text-align: right;
    font-weight: 700;
    color: #2196f3;
}

.w6r8q-about-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.w6r8q-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.w6r8q-info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.w6r8q-info-toggle {
    background: #2196f3;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}

.w6r8q-info-toggle:hover {
    background: #1976d2;
}

.w6r8q-info-content {
    display: block;
}

.w6r8q-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.w6r8q-info-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.w6r8q-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

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

.w6r8q-pc-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.w6r8q-pros .w6r8q-pc-title {
    color: #4caf50;
}

.w6r8q-cons .w6r8q-pc-title {
    color: #ff6b6b;
}

.w6r8q-pc-list {
    list-style: none;
}

.w6r8q-pro-item,
.w6r8q-con-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.w6r8q-pro-item {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.w6r8q-con-item {
    background: #ffebee;
    border-left: 4px solid #ff6b6b;
    color: #c62828;
}

.t2v5k-leave-review {
    padding: 60px 0;
    background: white;
}

.t2v5k-bonus-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    color: white;
}

.t2v5k-bonus-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.t2v5k-bonus-text {
    font-size: 16px;
    opacity: 0.9;
}

.t2v5k-bonus-btn {
    background: white;
    color: #ff6b6b;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.t2v5k-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.t2v5k-review-form-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.t2v5k-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

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

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

.t2v5k-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.t2v5k-input,
.t2v5k-textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.t2v5k-input:focus,
.t2v5k-textarea:focus {
    outline: none;
    border-color: #2196f3;
}

.t2v5k-textarea {
    resize: vertical;
    min-height: 120px;
}

.t2v5k-ratings-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.t2v5k-ratings-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.t2v5k-rating-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.t2v5k-rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t2v5k-rating-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.t2v5k-stars-input {
    display: flex;
    gap: 5px;
    font-size: 24px;
    cursor: pointer;
}

.t2v5k-star-input {
    color: #ddd;
    transition: color 0.2s ease;
}

.t2v5k-star-input:hover,
.t2v5k-star-input.active {
    color: #ffa726;
}

.t2v5k-submit-btn {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t2v5k-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.t2v5k-success-message {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #2e7d32;
    font-weight: 600;
}

.n3m8w-reviews-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.n3m8w-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.mb8k5-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mb8k5-review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mb8k5-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.mb8k5-review-author-info {
    display: flex;
    gap: 15px;
    flex: 1;
}

.mb8k5-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

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

.mb8k5-review-author {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.mb8k5-review-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.mb8k5-flag-icon {
    width: 20px;
    height: 15px;
}

.mb8k5-review-date {
    font-size: 13px;
    color: #999;
}

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

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

.mb8k5-rating-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffa726;
}

.mb8k5-stars {
    font-size: 20px;
    color: #ddd;
}

.mb8k5-star-filled {
    color: #ffa726;
}

.mb8k5-rating-details-btn {
    background: transparent;
    border: 1px solid #2196f3;
    color: #2196f3;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb8k5-rating-details-btn:hover {
    background: #2196f3;
    color: white;
}

.mb8k5-review-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.mb8k5-review-source {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.mb8k5-review-source a {
    color: #2196f3;
    text-decoration: none;
}

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

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

.mb8k5-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.mb8k5-review-text p {
    margin-bottom: 10px;
}

.mb8k5-review-collapsed {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.mb8k5-review-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, white);
}

.mb8k5-review-expand {
    background: none;
    border: none;
    color: #2196f3;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    font-size: 14px;
    margin-top: 10px;
}

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

.mb8k5-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.mb8k5-review-pros h5,
.mb8k5-review-cons h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mb8k5-review-pros h5 {
    color: #4caf50;
}

.mb8k5-review-cons h5 {
    color: #ff6b6b;
}

.mb8k5-review-pros ul,
.mb8k5-review-cons ul {
    list-style: none;
}

.mb8k5-pro-item {
    color: #2e7d32;
    font-size: 14px;
    padding: 5px 0;
}

.mb8k5-con-item {
    color: #c62828;
    font-size: 14px;
    padding: 5px 0;
}

.mb8k5-rating-details {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.mb8k5-rating-details h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.mb8k5-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mb8k5-rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mb8k5-rating-label {
    min-width: 140px;
    font-size: 14px;
    color: #333;
}

.mb8k5-progress-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.mb8k5-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2196f3 0%, #64b5f6 100%);
    border-radius: 4px;
}

.mb8k5-rating-num {
    min-width: 45px;
    text-align: right;
    font-weight: 700;
    color: #2196f3;
    font-size: 14px;
}

.mb8k5-review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

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

.mb8k5-vote-btn {
    background: #f5f5f5;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mb8k5-vote-btn:hover {
    background: #e0e0e0;
}

.mb8k5-like-btn:hover {
    background: #e8f5e9;
    color: #4caf50;
}

.mb8k5-dislike-btn:hover {
    background: #ffebee;
    color: #ff6b6b;
}

.mb8k5-reply-btn {
    background: transparent;
    border: 1px solid #2196f3;
    color: #2196f3;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mb8k5-reply-btn:hover {
    background: #2196f3;
    color: white;
}

.mb8k5-reply-form {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.mb8k5-reply-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 10px;
    resize: vertical;
}

.mb8k5-reply-actions {
    display: flex;
    gap: 10px;
}

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

.mb8k5-btn-primary {
    background: #2196f3;
    color: white;
}

.mb8k5-btn-primary:hover {
    background: #1976d2;
}

.mb8k5-btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.mb8k5-btn-secondary:hover {
    background: #d0d0d0;
}

.f5q7p-faq-section {
    padding: 60px 0;
    background: white;
}

.f5q7p-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.f5q7p-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.f5q7p-faq-item {
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.f5q7p-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.f5q7p-faq-question:hover {
    background: #f0f0f0;
}

.f5q7p-faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #2196f3;
    transition: transform 0.3s ease;
}

.f5q7p-faq-item.active .f5q7p-faq-icon {
    transform: rotate(45deg);
}

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

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

.f5q7p-faq-answer div {
    padding: 0 25px 20px 25px;
}

.f5q7p-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.x1h9l-comparison-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.x1h9l-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.x1h9l-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.x1h9l-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.x1h9l-comparison-table thead {
    background: #1a1a2e;
    color: white;
}

.x1h9l-comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.x1h9l-comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

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

.x1h9l-highlight {
    background: #f0f7ff;
    font-weight: 600;
}

.x1h9l-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.x1h9l-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.x1h9l-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.x1h9l-btn-secondary {
    background: #2196f3;
    color: white;
}

.x1h9l-btn-secondary:hover {
    background: #1976d2;
}

.s4b6n-advantages-section {
    padding: 60px 0;
    background: white;
}

.s4b6n-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.s4b6n-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.s4b6n-advantage-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s4b6n-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.s4b6n-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #2196f3;
}

.s4b6n-advantage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.s4b6n-advantage-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.y7n4m-content-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.y7n4m-content-wrapper {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.y7n4m-content-wrapper h1,
.y7n4m-content-wrapper h2,
.y7n4m-content-wrapper h3,
.y7n4m-content-wrapper h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.3;
}

.y7n4m-content-wrapper h1 {
    font-size: 36px;
}

.y7n4m-content-wrapper h2 {
    font-size: 30px;
}

.y7n4m-content-wrapper h3 {
    font-size: 24px;
}

.y7n4m-content-wrapper h4 {
    font-size: 20px;
}

.y7n4m-content-wrapper p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.y7n4m-content-wrapper ul,
.y7n4m-content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.y7n4m-content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.y7n4m-content-wrapper table {
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.y7n4m-content-wrapper table th,
.y7n4m-content-wrapper table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.y7n4m-content-wrapper table th {
    background: #f5f5f5;
    font-weight: 700;
    color: #1a1a2e;
}

.y7n4m-content-wrapper table tr:hover {
    background: #f9f9f9;
}

.y7n4m-content-wrapper a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
}

.y7n4m-content-wrapper a:hover {
    text-decoration: underline;
}

.p9q3x-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 30px;
}

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

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

.p9q3x-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

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

.p9q3x-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.p9q3x-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.p9q3x-footer-links {
    list-style: none;
}

.p9q3x-footer-links li {
    margin-bottom: 10px;
}

.p9q3x-footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.p9q3x-footer-link:hover {
    color: #4caf50;
}

.p9q3x-author-info {
    font-size: 14px;
}

.p9q3x-author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.p9q3x-author-role {
    color: #e0e0e0;
    margin-bottom: 10px;
}

.p9q3x-author-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.p9q3x-author-link {
    color: #2196f3;
    text-decoration: none;
    font-size: 13px;
}

.p9q3x-author-link:hover {
    text-decoration: underline;
}

.p9q3x-footer-trust {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.p9q3x-trust-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.p9q3x-trust-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.p9q3x-trust-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.p9q3x-trust-item:hover {
    opacity: 1;
}

.p9q3x-footer-bottom {
    padding-top: 30px;
}

.p9q3x-footer-legal {
    text-align: center;
}

.p9q3x-copyright {
    font-size: 14px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.p9q3x-disclaimer {
    font-size: 13px;
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 10px;
}

.p9q3x-info {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.z8q2p-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.z8q2p-widget-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.z8q2p-widget-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.z8q2p-widget-bonus {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.z8q2p-widget-desc {
    font-size: 13px;
    opacity: 0.9;
}

.z8q2p-widget-btn {
    background: white;
    color: #ff6b6b;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.z8q2p-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.v3k8m-unused {
    display: none;
}

.r4j7t-legacy {
    visibility: hidden;
}

.q2n5w-deprecated {
    opacity: 0;
}

@media (max-width: 1024px) {
    .s4b6n-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .k9x4n-rating-grid {
        grid-template-columns: 1fr;
    }

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

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

    .xk7m2-burger {
        display: flex;
    }

    .xk7m2-mobile-menu.active {
        display: block;
    }

    .xk7m2-reviews-count {
        display: none;
    }

    .xk7m2-btn-review {
        display: none;
    }

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

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

    .h7p2m-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .h7p2m-btn {
        width: 100%;
        text-align: center;
    }

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

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

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

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

    .t2v5k-bonus-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .t2v5k-rating-items {
        grid-template-columns: 1fr;
    }

    .x1h9l-comparison-table {
        font-size: 13px;
    }

    .x1h9l-comparison-table th,
    .x1h9l-comparison-table td {
        padding: 12px 10px;
    }

    .s4b6n-advantages-grid {
        grid-template-columns: 1fr;
    }

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

    .z8q2p-widget {
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
    }

    .z8q2p-widget-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .z8q2p-widget-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .xk7m2-header-actions {
        gap: 8px;
    }

    .xk7m2-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .h7p2m-hero-title {
        font-size: 24px;
    }

    .w6r8q-section-title,
    .n3m8w-section-title,
    .f5q7p-section-title,
    .x1h9l-section-title,
    .s4b6n-section-title {
        font-size: 28px;
    }
}

.liwyfv {
    --liwyfv-bg: #0f172a;
    --liwyfv-surface: #16213e;
    --liwyfv-surface-2: #1f2a44;
    --liwyfv-border: rgba(255, 255, 255, 0.1);
    --liwyfv-primary: #ff7a59;
    --liwyfv-primary-2: #ff5a3d;
    --liwyfv-accent: #4caf50;
    --liwyfv-text: #ffffff;
    --liwyfv-text-2: #d7deea;
    --liwyfv-text-3: #9aa8bf;
    --liwyfv-radius: 24px;
    --liwyfv-radius-sm: 14px;
    --liwyfv-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid var(--liwyfv-border);
    border-radius: var(--liwyfv-radius);
    box-shadow: var(--liwyfv-shadow);
    color: var(--liwyfv-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
}

.liwyfv * {
    box-sizing: border-box;
}

.liwyfv h1,
.liwyfv h2,
.liwyfv h3,
.liwyfv h4 {
    color: var(--liwyfv-text);
    font-weight: 800;
    line-height: 1.24;
}

.liwyfv h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 24px;
    letter-spacing: -0.03em;
    color: var(--liwyfv-text);
}

.liwyfv h2 {
    font-size: clamp(1.35rem, 2.3vw, 1.95rem);
    margin: 38px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--liwyfv-border);
}

.liwyfv h3 {
    font-size: clamp(1.08rem, 1.9vw, 1.35rem);
    margin: 28px 0 14px;
    color: #8fd694;
}

.liwyfv h4 {
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    margin: 24px 0 12px;
    color: #ffd9cf;
}

.liwyfv p {
    margin: 0 0 18px;
    font-size: 1rem;
    color: var(--liwyfv-text-2);
}

.liwyfv > p:first-of-type {
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 122, 89, 0.16) 0%, rgba(76, 175, 80, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--liwyfv-text);
}

.liwyfv ul,
.liwyfv ol {
    margin: 0 0 22px;
    padding: 0;
}

.liwyfv ul li,
.liwyfv ol li {
    position: relative;
    list-style: none;
    margin-bottom: 12px;
    padding: 14px 16px 14px 48px;
    border-radius: var(--liwyfv-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--liwyfv-border);
    color: var(--liwyfv-text-2);
}

.liwyfv ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--liwyfv-primary) 0%, var(--liwyfv-accent) 100%);
    box-shadow: 0 0 0 5px rgba(255, 122, 89, 0.08);
}

.liwyfv ol {
    counter-reset: liwyfv-counter;
}

.liwyfv ol li::before {
    counter-increment: liwyfv-counter;
    content: counter(liwyfv-counter);
    position: absolute;
    left: 13px;
    top: 11px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--liwyfv-primary) 0%, var(--liwyfv-primary-2) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.liwyfv a {
    color: #86c5ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color 0.2s ease;
}

.liwyfv a:hover {
    color: #ffffff;
}

.liwyfv strong {
    color: var(--liwyfv-text);
    font-weight: 800;
}

.liwyfv h2 + p,
.liwyfv h3 + p,
.liwyfv h4 + p {
    margin-top: 0;
}

.liwyfv p + ul,
.liwyfv p + ol {
    margin-top: 10px;
}

.liwyfv h2:nth-of-type(1),
.liwyfv h2:nth-of-type(4),
.liwyfv h2:nth-of-type(8),
.liwyfv h2:nth-of-type(11) {
    position: relative;
}

.liwyfv h2:nth-of-type(1)::before,
.liwyfv h2:nth-of-type(4)::before,
.liwyfv h2:nth-of-type(8)::before,
.liwyfv h2:nth-of-type(11)::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 4px;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--liwyfv-primary) 0%, var(--liwyfv-accent) 100%);
}

.liwyfv > *:last-child {
    margin-bottom: 0;
}

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

    .liwyfv h2 {
        margin-top: 32px;
    }

    .liwyfv > p:first-of-type {
        padding: 18px 18px;
    }
}

@media (max-width: 767px) {
    .liwyfv {
        margin: 20px 16px;
        padding: 24px 18px;
        border-radius: 18px;
        line-height: 1.68;
    }

    .liwyfv h1 {
        font-size: 1.72rem;
        margin-bottom: 18px;
    }

    .liwyfv h2 {
        font-size: 1.28rem;
        margin: 28px 0 14px;
        padding-bottom: 10px;
    }

    .liwyfv h3 {
        font-size: 1.04rem;
        margin: 22px 0 12px;
    }

    .liwyfv h4 {
        font-size: 0.98rem;
        margin: 20px 0 10px;
    }

    .liwyfv p {
        font-size: 0.96rem;
        margin-bottom: 16px;
    }

    .liwyfv ul li,
    .liwyfv ol li {
        padding: 12px 14px 12px 42px;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .liwyfv ul li::before {
        left: 15px;
        top: 17px;
        width: 9px;
        height: 9px;
    }

    .liwyfv ol li::before {
        left: 11px;
        top: 10px;
        width: 22px;
        height: 22px;
        font-size: 0.72rem;
    }

    .liwyfv h2:nth-of-type(1)::before,
    .liwyfv h2:nth-of-type(4)::before,
    .liwyfv h2:nth-of-type(8)::before,
    .liwyfv h2:nth-of-type(11)::before {
        width: 28px;
        margin-right: 10px;
    }
}

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

    .liwyfv h1 {
        font-size: 1.45rem;
    }

    .liwyfv h2 {
        font-size: 1.12rem;
    }

    .liwyfv h3 {
        font-size: 0.98rem;
    }

    .liwyfv h4 {
        font-size: 0.94rem;
    }

    .liwyfv p,
    .liwyfv ul li,
    .liwyfv ol li {
        font-size: 0.92rem;
    }

    .liwyfv > p:first-of-type {
        padding: 14px;
        border-radius: 14px;
    }
}

html,
body {
    background: #0f172a !important;
}

body.j4t9s-body,
.j4t9s-wrapper,
.j4t9s-container {
    background: transparent !important;
}

.k9x4n-rating-section,
.w6r8q-about-section,
.t2v5k-leave-review,
.n3m8w-reviews-section,
.f5q7p-faq-section,
.x1h9l-comparison-section,
.s4b6n-advantages-section,
.y7n4m-content-section {
    background: transparent !important;
}

.k9x4n-rating-card,
.w6r8q-info-card,
.t2v5k-review-form-card,
.mb8k5-review-card,
.f5q7p-faq-item,
.x1h9l-table-wrapper,
.s4b6n-advantage-card,
.y7n4m-content-wrapper,
.mb8k5-review-pros-cons,
.mb8k5-rating-details,
.t2v5k-ratings-section {
    background: #16213e !important;
    color: #fff !important;
}

.x1h9l-comparison-table,
.x1h9l-comparison-table tbody,
.x1h9l-comparison-table tr,
.x1h9l-comparison-table td {
    background: #16213e !important;
    color: #fff !important;
}

.x1h9l-comparison-table th {
    background: #10182d !important;
    color: #fff !important;
}

.x1h9l-highlight {
    background: #1f2a44 !important;
}

.w6r8q-pro-item {
    background: rgba(76, 175, 80, 0.12) !important;
    color: #8ee19a !important;
}

.w6r8q-con-item {
    background: rgba(255, 107, 107, 0.12) !important;
    color: #ff9b9b !important;
}

.f5q7p-faq-question:hover,
.mb8k5-vote-btn,
.mb8k5-reply-form,
.t2v5k-input,
.t2v5k-textarea {
    background-color: #1f2a44 !important;
    color: #fff !important;
}

.y7n4m-content-wrapper h1,
.y7n4m-content-wrapper h2,
.y7n4m-content-wrapper h3,
.y7n4m-content-wrapper h4,
.w6r8q-section-title,
.n3m8w-section-title,
.f5q7p-section-title,
.x1h9l-section-title,
.s4b6n-section-title,
.t2v5k-form-title,
.k9x4n-card-title,
.mb8k5-review-title,
.s4b6n-advantage-title {
    color: #fff !important;
}

.y7n4m-content-wrapper p,
.y7n4m-content-wrapper li,
.y7n4m-content-wrapper td,
.y7n4m-content-wrapper th,
.w6r8q-info-value,
.w6r8q-info-label,
.mb8k5-review-text,
.mb8k5-review-source,
.mb8k5-review-date,
.mb8k5-review-country,
.s4b6n-advantage-text,
.f5q7p-faq-answer p,
.k9x4n-review-count,
.k9x4n-rating-label,
.k9x4n-rating-percent,
.k9x4n-detail-label {
    color: #d7deea !important;
}

.y7n4m-content-wrapper table th,
.y7n4m-content-wrapper table td {
    background: #16213e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

footer,
.p9q3x-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

@media (max-width: 768px) {
    html,
    body {
        background: #0f172a !important;
    }

    .k9x4n-rating-section,
    .w6r8q-about-section,
    .t2v5k-leave-review,
    .n3m8w-reviews-section,
    .f5q7p-faq-section,
    .x1h9l-comparison-section,
    .s4b6n-advantages-section,
    .y7n4m-content-section {
        background: transparent !important;
    }
}