:root {
    --primary-red: #DC1F2E;
    --primary-red-hover: #B71C24;
    --secondary-green: #28A745;
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --border-color: #2A2A2A;
    --star-color: #FFD700;
    --success-green: #28A745;
    --warning-orange: #FFA500;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.q8n4v2x {
    min-height: 100vh;
}

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

.p3k7m9n {
    background-color: var(--bg-card);
    border-bottom: 2px solid var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-container-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link-header {
    display: inline-block;
    text-decoration: none;
}

.logo-image-header {
    display: block;
    max-width: 100%;
    height: auto;
}

.header-nav-menu {
    display: flex;
    justify-content: center;
}

.nav-menu-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link-item:hover {
    color: var(--primary-red);
}

.nav-icon-svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

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

.reviews-counter-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
}

.counter-icon {
    opacity: 0.7;
}

.header-buttons-group {
    display: flex;
    gap: 10px;
}

.btn-header-login,
.btn-header-register,
.btn-header-review {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-header-login {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
}

.btn-header-login:hover {
    background-color: var(--primary-red);
    color: white;
}

.btn-header-register {
    background-color: var(--primary-red);
    color: white;
}

.btn-header-register:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 31, 46, 0.4);
}

.btn-header-review {
    background-color: var(--secondary-green);
    color: white;
    display: none;
}

.btn-header-review:hover {
    background-color: #218838;
}

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

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.w3p9k1m {
    padding-top: 0;
}

.j7x2n5q {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.m4k8p2v {
    position: relative;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, #DC1F2E 0%, #8B0000 100%);
    opacity: 0.2;
    z-index: 0;
}

.hero-banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/banner.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.t9n3x7k {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-card-primary {
    background: linear-gradient(145deg, var(--bg-card) 0%, #252525 100%);
    border: 2px solid var(--primary-red);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(220, 31, 46, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-card-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(220, 31, 46, 0.3);
}

.casino-logo-main {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.rating-block-hero {
    margin-bottom: 25px;
}

.stars-rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rating-number-hero {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
}

.stars-container-hero {
    display: flex;
    gap: 4px;
    font-size: 24px;
}

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

.star-half {
    color: var(--star-color);
    opacity: 0.5;
}

.bonus-display-hero {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(220, 31, 46, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary-red);
}

.bonus-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
}

.cta-buttons-hero {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-cta,
.btn-secondary-cta {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B71C24 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 31, 46, 0.4);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 31, 46, 0.6);
}

.btn-secondary-cta {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-green);
}

.btn-secondary-cta:hover {
    background-color: var(--secondary-green);
    color: white;
}

.ratings-breakdown-hero {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.breakdown-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rating-label-bar {
    font-size: 14px;
    color: var(--text-secondary);
}

.progress-bar-container {
    height: 8px;
    background-color: #2A2A2A;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #FFA500);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-count-bar {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.bonus-card-item {
    background: linear-gradient(145deg, var(--bg-card), #252525);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(220, 31, 46, 0.2);
}

.bonus-icon-wrapper {
    font-size: 48px;
    margin-bottom: 15px;
}

.bonus-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bonus-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-bonus-card {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-bonus-card:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
}

.pros-cons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.pros-column,
.cons-column {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.pros-title {
    color: var(--success-green);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cons-title {
    color: #DC3545;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li,
.cons-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
}

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

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

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #DC3545;
    font-weight: 700;
    font-size: 18px;
}

.r5m8k3p {
    padding: 60px 0;
}

.bonus-banner-review,
.bonus-banner-bottom {
    background: linear-gradient(135deg, var(--primary-red), #8B0000);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(220, 31, 46, 0.3);
}

.bonus-banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-bonus-get,
.btn-write-review {
    display: inline-block;
    padding: 14px 32px;
    background-color: white;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-bonus-get:hover,
.btn-write-review:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.review-form-wrapper {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-title-main {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.form-label-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input-field,
.form-textarea-field {
    padding: 14px 16px;
    background-color: #0D0D0D;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 31, 46, 0.1);
}

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

.rating-parameters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #0D0D0D;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.parameter-rating-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.star-input {
    font-size: 24px;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-input:hover,
.star-input.active {
    color: var(--star-color);
    transform: scale(1.1);
}

.btn-submit-form {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red), #B71C24);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 31, 46, 0.4);
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 31, 46, 0.6);
}

.form-success-message {
    background-color: var(--success-green);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.success-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.form-success-message p {
    font-size: 18px;
    font-weight: 600;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v2k7n4m {
    padding: 60px 0;
}

.section-title-main {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #FFA500);
    border-radius: 2px;
}

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

.mb-review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mb-review-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 6px 20px rgba(220, 31, 46, 0.15);
}

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

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

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

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

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

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

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

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

.mb-review-rating {
    text-align: right;
}

.mb-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

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

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

.mb-star {
    color: #444;
}

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

.mb-rating-details-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color 0.3s ease;
}

.mb-rating-details-btn:hover {
    color: var(--text-primary);
}

.mb-rating-details {
    margin-top: 15px;
    padding: 15px;
    background-color: #0D0D0D;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

.rating-stars-small {
    color: var(--star-color);
    font-weight: 600;
}

.mb-review-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.mb-review-source {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding: 8px 12px;
    background-color: #0D0D0D;
    border-radius: 6px;
    display: inline-block;
}

.source-link-external {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.source-link-external:hover {
    text-decoration: underline;
}

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

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

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

.mb-review-text.mb-review-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--bg-card));
}

.mb-review-expand {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.mb-review-expand:hover {
    color: var(--primary-red-hover);
}

.mb-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #0D0D0D;
    border-radius: 8px;
}

.mb-review-pros h5,
.mb-review-cons h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.mb-review-cons h5 {
    color: #DC3545;
}

.pros-list-items,
.cons-list-items {
    list-style: none;
    padding: 0;
}

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

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

.mb-con-item::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #DC3545;
    font-weight: 700;
    font-size: 18px;
}

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

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

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

.mb-vote-btn:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary-red);
}

.vote-icon {
    font-size: 16px;
}

.mb-reply-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--primary-red);
    border-radius: 6px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.mb-reply-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #0D0D0D;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.reply-textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    resize: vertical;
}

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

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

.mb-btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.mb-btn-primary:hover {
    background-color: var(--primary-red-hover);
}

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

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

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

.table-wrapper-responsive {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    text-align: left;
}

.comparison-table thead {
    background-color: #0D0D0D;
}

.comparison-table th {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-red);
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-card-hover);
}

.highlight-cell {
    color: var(--primary-red);
    font-weight: 600;
}

.btn-table-cta,
.btn-table-secondary {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-table-cta {
    background-color: var(--primary-red);
    color: white;
}

.btn-table-cta:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
}

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

.btn-table-secondary:hover {
    background-color: var(--bg-card-hover);
}

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(220, 31, 46, 0.2);
}

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

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.x7k9m2p {
    padding: 60px 0;
}

.main-h1-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.x7k9m2p h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.x7k9m2p h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.x7k9m2p ul,
.x7k9m2p ol {
    margin: 20px 0;
    padding-left: 30px;
}

.x7k9m2p li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.x7k9m2p table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.x7k9m2p thead {
    background-color: #0D0D0D;
}

.x7k9m2p th,
.x7k9m2p td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.x7k9m2p th {
    font-weight: 600;
    color: var(--text-primary);
}

.x7k9m2p a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.x7k9m2p a:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

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

.author-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.author-info {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
}

.author-details {
    flex: 1;
}

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

.author-role {
    font-size: 16px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.author-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.author-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

.n8k2m5v {
    background-color: var(--bg-card);
    border-top: 2px solid var(--primary-red);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-logo-img {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: var(--primary-red);
}

.trust-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-logo-img {
    max-width: 80px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.footer-payment-methods {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.payment-title-footer {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.payment-logo-img {
    max-width: 50px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.footer-bottom-section {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.copyright-text,
.disclaimer-text,
.license-info-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.disclaimer-text {
    color: var(--warning-orange);
}

.fixed-bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red), #8B0000);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.widget-bonus-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.widget-bonus-label {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

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

.widget-cta-button {
    padding: 14px 32px;
    background-color: white;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.widget-cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.widget-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-close-btn:hover {
    opacity: 1;
}

.elementor-element-hidden,
.wp-block-group {
    display: none;
}

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

    .ratings-breakdown-hero {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container-inner {
        grid-template-columns: auto 1fr auto;
        padding: 15px 20px;
    }

    .header-nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-card);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid var(--primary-red);
        z-index: 999;
    }

    .header-nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu-list {
        flex-direction: column;
        gap: 15px;
    }


    .burger-menu-btn {
        display: flex;
    }

    .burger-menu-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .burger-menu-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    .reviews-counter-header {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .mb-rating-display {
        justify-content: flex-start;
    }

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

    .comparison-table {
        font-size: 14px;
    }

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

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

    .widget-content-inner {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .widget-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }

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

    .main-h1-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .main-h1-title {
        font-size: 28px;
    }

    .section-title-main {
        font-size: 28px;
    }

    .hero-card-primary {
        padding: 30px 20px;
    }

    .rating-number-hero {
        font-size: 36px;
    }

    .bonus-amount {
        font-size: 28px;
    }

    .form-title-main {
        font-size: 24px;
    }
}

.mdbdg {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    line-height: 1.75;
}

.mdbdg h1,
.mdbdg h2,
.mdbdg h3,
.mdbdg h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

.mdbdg h1 {
    font-size: 40px;
    margin-bottom: 24px;
}

.mdbdg h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 18px;
}

.mdbdg h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.mdbdg h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 14px;
}

.mdbdg p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-primary);
}

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

.mdbdg li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.mdbdg strong,
.mdbdg b {
    color: var(--text-primary);
    font-weight: 700;
}

.mdbdg a {
    color: var(--primary-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color 0.3s ease;
}

.mdbdg a:hover {
    color: var(--primary-red-hover);
}

.mdbdg table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    background: #111111;
    border: 1px solid var(--border-color);
    border-radius: 14px;
}

.mdbdg th,
.mdbdg td {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.mdbdg th {
    background: #121212;
    color: var(--text-primary);
    font-weight: 700;
}

.mdbdg blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--primary-red);
    background: #111111;
    border-radius: 12px;
}

.mdbdg img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .mdbdg {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .mdbdg h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .mdbdg h2 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .mdbdg h3 {
        font-size: 20px;
        margin-top: 26px;
        margin-bottom: 14px;
    }

    .mdbdg h4 {
        font-size: 18px;
    }

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

    .mdbdg ul,
    .mdbdg ol {
        padding-left: 20px;
    }

    .mdbdg th,
    .mdbdg td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .mdbdg {
        padding: 24px 14px;
        border-radius: 14px;
    }

    .mdbdg h1 {
        font-size: 26px;
    }

    .mdbdg h2 {
        font-size: 22px;
    }

    .mdbdg h3 {
        font-size: 18px;
    }

    .mdbdg h4 {
        font-size: 16px;
    }

    .mdbdg p,
    .mdbdg li {
        font-size: 14px;
    }
}
