:root {
    --primary-color: #0052cc;
    --secondary-color: #ff3b30;
    --accent-color: #00d4ff;
    --bg-color: #f5f7fa;
    --text-color: #1a1a1a;
    --border-color: #e0e6ed;
    --success-color: #34c759;
    --warning-color: #ff9500;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #1a1a1a;
}

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

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

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

.qz7h4-header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.m4v8n-header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.k2w9x-logo-section {
    display: flex;
    align-items: center;
}

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

.j5r7t-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

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

.w9h4k-menu-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.z2p8v-menu-item {
    display: inline-block;
}

.d6f1x-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.d6f1x-menu-link:hover {
    background-color: rgba(0,82,204,0.08);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.n7k3p-review-count {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(0,82,204,0.08);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
}

.y4q9m-count-icon {
    color: var(--secondary-color);
}

.v3b7n-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

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

.v3b7n-btn-login:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,82,204,0.3);
}

.v3b7n-btn-register {
    background-color: var(--secondary-color);
    color: white;
}

.v3b7n-btn-register:hover {
    background-color: #e6342a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,59,48,0.4);
}

.v3b7n-btn-review {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.v3b7n-btn-review:hover {
    background-color: #00bdeb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,212,255,0.4);
}

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

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

.n7v2m-hero-section {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(0,82,204,0.05) 0%, rgba(0,212,255,0.05) 100%);
}

.k4w8h-hero-content {
    display: grid;
    gap: 24px;
}

.t6n3v-hero-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.m2h7x-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.p9k5w-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.b3v8n-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.y7m4k-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
    max-width: 600px;
}

.v3b7n-btn-hero {
    background-color: var(--secondary-color);
    color: white;
    font-size: 18px;
    padding: 16px 48px;
}

.v3b7n-btn-hero:hover {
    background-color: #e6342a;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255,59,48,0.5);
}

.q5h9x-rating-summary {
    padding: 48px 0;
}

.w8k2n-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

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

.h4v7m-rating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.h4v7m-card-full {
    grid-column: 1 / -1;
}

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

.p6w9v-overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.m5h2x-rating-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.t8k4n-rating-stars {
    display: flex;
    gap: 8px;
}

.y2v7m-star {
    font-size: 32px;
    color: #ddd;
}

.y2v7m-star-filled {
    color: #ffc107;
}

.y2v7m-star-half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.b9n3k-total-reviews {
    font-size: 14px;
    color: #666;
}

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

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

.k5m8p-bar-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.w9h3n-bar-container {
    background-color: #f0f0f0;
    border-radius: 12px;
    height: 8px;
    overflow: hidden;
}

.t4v7k-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    transition: width 0.5s ease;
}

.p2x6m-bar-count {
    font-size: 14px;
    color: #666;
    text-align: right;
}

.v5h8n-detail-grid {
    display: grid;
    gap: 16px;
}

.m3w7k-detail-item {
    display: grid;
    grid-template-columns: 200px 1fr 80px;
    align-items: center;
    gap: 16px;
}

.b6n2x-detail-name {
    font-size: 15px;
    font-weight: 500;
}

.q9k5h-progress-bar {
    background-color: #f0f0f0;
    border-radius: 12px;
    height: 12px;
    overflow: hidden;
}

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

.y4w8n-detail-score {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.p8v3k-casino-info {
    padding: 48px 0;
    background-color: white;
}

.h6n9m-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.z4w7k-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 32px;
}

.q2v8n-show-modal {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.q2v8n-show-modal:hover {
    background-color: #004bb5;
    transform: translateY(-2px);
}

.b5m3x-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.w7k4n-info-item {
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.w7k4n-info-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.t9h2v-info-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.m3x6k-info-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.p5w8h-license-img {
    height: 24px;
    width: auto;
}

.y4n7k-pros-cons-section {
    padding: 48px 0;
}

.v8h3m-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

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

.p9v4x-column-title,
.w8v2k-column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.p9v4x-column-title {
    color: var(--success-color);
}

.w8v2k-column-title {
    color: var(--secondary-color);
}

.t5m8k-pros-list,
.h3m7v-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b7h3n-pros-item {
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.b7h3n-pros-item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.q9k5n-cons-item {
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.q9k5n-cons-item:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.m5w9k-leave-review {
    padding: 48px 0;
    background-color: white;
}

.n8h4v-bonus-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: 0 8px 24px rgba(0,82,204,0.2);
}

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

.p6w2n-banner-icon {
    font-size: 48px;
}

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

.b4m8x-banner-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.z7n3v-banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.v3b7n-btn-bonus {
    background-color: white;
    color: var(--primary-color);
}

.v3b7n-btn-bonus:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.q2v8k-review-form-section {
    background: var(--card-bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.k8v4m-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

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

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

.m9h5v-form-input,
.v9h4k-form-textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.m9h5v-form-input:focus,
.v9h4k-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,82,204,0.1);
}

.b7n4x-rating-inputs {
    padding: 24px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.y5m8k-rating-title {
    font-weight: 700;
    margin-bottom: 16px;
}

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

.q9k2n-rating-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t5w8m-rating-label {
    font-size: 13px;
    font-weight: 600;
}

.p4h7v-stars-input {
    display: flex;
    gap: 4px;
}

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

.x2n9k-star-input:hover,
.x2n9k-star-input.active {
    color: #ffc107;
    transform: scale(1.2);
}

.v3b7n-btn-submit {
    background-color: var(--success-color);
    color: white;
    align-self: flex-start;
}

.v3b7n-btn-submit:hover {
    background-color: #2fb84d;
    transform: translateY(-2px);
}

.h8k3v-success-message {
    background-color: rgba(52,199,89,0.1);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.w5n9m-success-icon {
    width: 48px;
    height: 48px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.p2h7k-success-text {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}

.t7k4n-user-reviews {
    padding: 48px 0;
}

.p7k3x-reviews-container {
    display: grid;
    gap: 24px;
}

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

.m2v8n-review-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.q5h9x-review-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    margin-bottom: 24px;
}

.w4n7k-author-info {
    display: flex;
    gap: 16px;
}

.t8p2v-review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

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

.h9k4n-author-name {
    font-size: 18px;
    font-weight: 700;
}

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

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

.z4w6x-review-date {
    font-size: 14px;
    color: #999;
}

.k8v5n-rating-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.n2h7x-rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.x6w3v-stars {
    display: flex;
    gap: 4px;
}

.t2n7h-star {
    font-size: 20px;
    color: #ddd;
}

.t2n7h-star-filled {
    color: #ffc107;
}

.q9k5m-details-btn {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.q9k5m-details-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.b3v8x-rating-details {
    background-color: var(--bg-color);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    grid-column: 1 / -1;
}

.h7n2k-detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.h7n2k-detail-row:last-child {
    border-bottom: none;
}

.w5m9p-detail-label {
    font-size: 14px;
    font-weight: 500;
}

.y4k8v-detail-stars {
    display: flex;
    gap: 4px;
}

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

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

.k2w6n-source-label {
    font-weight: 600;
}

.h9v5k-source-link {
    color: var(--primary-color);
    text-decoration: none;
}

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

.z5h8w-review-body {
    margin-bottom: 24px;
}

.n3k7p-review-text {
    line-height: 1.8;
    color: var(--text-color);
}

.n3k7p-review-text p {
    margin-bottom: 12px;
}

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

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

.b7m2v-expand-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    margin-top: 8px;
    padding: 0;
}

.b7m2v-expand-btn:hover {
    text-decoration: underline;
}

.t6w9k-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
    padding: 24px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.p4n8x-pros-section,
.x3m9h-cons-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.y2v7m-pros-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--success-color);
}

.w7k2p-cons-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.q8n4v-pro-item {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

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

.z9h5k-con-item {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

.t5w8h-vote-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.w8k5v-reply-form {
    margin-top: 24px;
    padding: 24px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.p2n9x-reply-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 12px;
    resize: vertical;
}

.p2n9x-reply-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.v5h8n-btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.v5h8n-btn-primary:hover {
    background-color: #004bb5;
}

.q3w6x-btn-cancel {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.q3w6x-btn-cancel:hover {
    background-color: var(--bg-color);
}

.m6w9v-faq-section {
    padding: 48px 0;
    background-color: white;
}

.k5h8n-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.w9k2n-faq-question {
    width: 100%;
    padding: 24px;
    background-color: var(--bg-color);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.w9k2n-faq-question:hover {
    background-color: rgba(0,82,204,0.05);
}

.p4h7x-faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.t6m3v-faq-answer p {
    line-height: 1.8;
    color: var(--text-color);
}

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

.v5h8k-comparison-section {
    padding: 48px 0;
}

.p3w7n-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.m8k4v-comparison-table {
    width: 100%;
    background: var(--card-bg);
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.q2n6x-table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.t9h5k-table-th {
    padding: 20px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.w6v3n-table-row:nth-child(even) {
    background-color: var(--bg-color);
}

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

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

.y3n7k-screenshots-section {
    padding: 48px 0;
    background-color: white;
}

.h5w9m-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.k2v8n-screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.k2v8n-screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.p6h3x-screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.w9k5n-content-section {
    padding: 48px 0;
}

.m4v7x-content-wrapper {
    background: var(--card-bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.m4v7x-content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.m4v7x-content-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.m4v7x-content-wrapper p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-color);
}

.m4v7x-content-wrapper ul,
.m4v7x-content-wrapper ol {
    margin-left: 24px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.m4v7x-content-wrapper li {
    margin-bottom: 8px;
}

.m4v7x-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px auto;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 8px;
    overflow: hidden;
}

.m4v7x-content-wrapper table th,
.m4v7x-content-wrapper table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.m4v7x-content-wrapper table th {
    background-color: var(--bg-color);
    font-weight: 700;
}

.m4v7x-content-wrapper blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 24px 0;
    color: #666;
    font-style: italic;
}

.q8m4v-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 64px 0 32px 0;
}

.f7n2k-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.p3x9h-footer-logo {
    grid-column: 1 / -1;
}

.w6k2m-footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.t4b8x-footer-nav {
    margin-bottom: 24px;
}

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

.c5m8p-footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.c5m8p-footer-link:hover {
    color: white;
    padding-left: 8px;
}

.b6v9n-trust-section,
.n5x2k-payment-methods,
.d9v4k-author-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.k4w7x-trust-title,
.k4w7x-payment-title,
.x7m2p-author-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.m2p5t-trust-logos,
.v7b4m-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.z8h3q-trust-logo,
.r3n8h-payment-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.z8h3q-trust-logo:hover,
.r3n8h-payment-logo:hover {
    opacity: 1;
}

.h3k6n-author-name {
    font-size: 16px;
    font-weight: 700;
}

.q5w8t-author-role {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.b2v7m-author-links {
    display: flex;
    gap: 16px;
}

.p4x9k-author-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
}

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

.w3h7v-legal {
    grid-column: 1 / -1;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m8k2n-copyright,
.t6p4x-disclaimer,
.y9n3k-license {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.l5x9m-widget-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--secondary-color), #ff6b30);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

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

.k7n4p-widget-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.v2h8x-widget-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.q4m6n-widget-bonus {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

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

.b8w3v-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.b8h3v-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t6n2k-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
}

.m5w9x-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.p3h7v-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.p3h7v-modal-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.y8k4n-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.q2v7m-modal-body {
    line-height: 1.8;
}

.w5n8k-modal-grid {
    display: grid;
    gap: 16px;
}

.h4v9x-modal-item {
    padding: 16px;
    background-color: var(--bg-color);
    border-radius: 8px;
    line-height: 1.6;
}

.h4v9x-modal-item strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .m4v8n-header-wrapper {
        grid-template-columns: auto 1fr auto;
    }

    .b3n6m-nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .b3n6m-nav-menu.active {
        display: block;
    }

    .w9h4k-menu-list {
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }

    .d6f1x-menu-link {
        padding: 16px 24px;
        border-radius: 0;
    }

    .t5x8c-header-actions {
        display: none;
    }

    .t5x8c-header-actions.mobile-show {
        display: flex;
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        background: white;
        padding: 16px;
        flex-direction: column;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 998;
    }

    .h9p2k-burger {
        display: flex;
    }

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

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

    .z4w7k-section-title {
        font-size: 24px;
    }

    .q5h9x-review-header {
        grid-template-columns: 1fr;
    }

    .k8v5n-rating-section {
        align-items: flex-start;
    }

    .m3w7k-detail-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

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

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

    .m4v7x-content-wrapper {
        padding: 24px;
    }

    .m5w9x-modal-content {
        padding: 32px 24px;
    }

    .p3w7n-table-wrapper {
        overflow-x: scroll;
    }
}

.unused-class-v8n4x {
    display: none;
}

.deprecated-element-k3m9h {
    visibility: hidden;
}

.legacy-widget-p7q2w {
    opacity: 0;
}

.old-component-t5x8v {
    position: absolute;
    left: -9999px;
}