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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #090f1e;
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 16px;
}

body.fixed {
    overflow: hidden;
}

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

a {
    color: #19ac5a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

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

.kv9m3-header {
    background: linear-gradient(180deg, #141b2e 0%, #0f1524 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hn2w8-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.qx5t7-header-left {
    display: flex;
    align-items: center;
}

.dp8k4-logo img {
    max-height: 50px;
    width: auto;
}

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

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

.xt9n4-nav-item {
    position: relative;
}

.pv6w8-nav-link {
    color: #e8e8e8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pv6w8-nav-link:hover {
    background-color: rgba(25, 172, 90, 0.1);
    color: #19ac5a;
}

.hq7v3-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.wx5k7-reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(25, 172, 90, 0.15);
    border-radius: 20px;
    color: #19ac5a;
    font-size: 14px;
    font-weight: 600;
}

.nk8m5-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.yt7k3-burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #e8e8e8;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

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

.vt6p2-btn-primary {
    background: linear-gradient(135deg, #19ac5a 0%, #15994f 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(25, 172, 90, 0.3);
}

.vt6p2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 172, 90, 0.4);
}

.vt6p2-btn-secondary {
    background: linear-gradient(135deg, #1f2841 0%, #181f35 100%);
    color: #e8e8e8;
    box-shadow: 0 4px 15px rgba(31, 40, 65, 0.3);
}

.vt6p2-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 40, 65, 0.4);
}

.vt6p2-btn-bonus {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.vt6p2-btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.vt6p2-btn-small {
    padding: 10px 18px;
    font-size: 14px;
}

.vt6p2-btn-full {
    width: 100%;
    padding: 14px 24px;
}

.pg7x4-main {
    flex: 1;
}

.kl3n8-hero {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 12px;
}

.zt5w1-hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.qm2p9-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.qm2p9-slider-item.qm2p9-active {
    opacity: 1;
}

.qm2p9-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bn4k7-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.wf8j3-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.ry2m5-hero-text {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f0f0f0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.dx8r4-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.hq3n7-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(25, 172, 90, 0.8);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hq3n7-slider-btn:hover {
    background: rgba(25, 172, 90, 1);
    transform: scale(1.1);
}

.lp9s2-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.wd5f8-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zm4t1-rating-summary,
.pv9x2-casino-info,
.fk8v3-bonuses,
.wv5k9-pros-cons {
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fj6k9-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.yp2n8-overall-rating {
    text-align: center;
    padding: 20px;
    background: rgba(25, 172, 90, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.uk7m4-rating-value {
    font-size: 56px;
    font-weight: 700;
    color: #19ac5a;
    line-height: 1;
}

.bx3j5-rating-stars {
    font-size: 32px;
    color: #f59e0b;
    margin: 10px 0;
}

.rt5w9-total-reviews {
    font-size: 14px;
    color: #a0a0a0;
}

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

.lm8t3-rating-row {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 10px;
}

.hp6v1-rating-label {
    font-size: 13px;
    color: #c0c0c0;
}

.js9r2-rating-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cv4n8-rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #19ac5a 0%, #15994f 100%);
    transition: width 0.4s ease;
}

.xq7m5-rating-count {
    font-size: 13px;
    font-weight: 600;
    color: #e8e8e8;
}

.tq3m8-info-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tq3m8-info-item:last-child {
    border-bottom: none;
}

.kr7p4-info-label {
    font-size: 14px;
    color: #a0a0a0;
}

.zn2f6-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #e8e8e8;
}

.dw8j4-license-logo {
    max-height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.mp5k7-providers,
.ht9w5-payments {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.mp5k7-providers img,
.ht9w5-payments img {
    max-height: 24px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.mp5k7-providers img:hover,
.ht9w5-payments img:hover {
    opacity: 1;
}

.yj3t9-more {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: 600;
}

.nx7q2-bonus-card {
    background: rgba(25, 172, 90, 0.1);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #19ac5a;
    transition: all 0.3s ease;
}

.nx7q2-bonus-card:hover {
    transform: translateX(5px);
    background: rgba(25, 172, 90, 0.15);
}

.gm4w8-bonus-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pt9k5-bonus-desc {
    font-size: 14px;
    color: #c0c0c0;
    margin-bottom: 12px;
}

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

.sn4t7-pros,
.qt3p8-cons {
    padding: 15px;
    border-radius: 8px;
}

.sn4t7-pros {
    background: rgba(25, 172, 90, 0.08);
    border: 1px solid rgba(25, 172, 90, 0.2);
}

.qt3p8-cons {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.jx9w3-pc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

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

.bp6k2-pc-list li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.sn4t7-pros .bp6k2-pc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #19ac5a;
    font-weight: 700;
}

.qt3p8-cons .bp6k2-pc-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.gb2n7-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.xp7k3-bonus-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cs5w2-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

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

.km7r5-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.dw2n8-banner-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.kx9p3-review-form {
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rw7m5-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.tv9w4-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #e8e8e8;
}

.bn8k3-form-input,
.yq5m7-form-textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.bn8k3-form-input:focus,
.yq5m7-form-textarea:focus {
    outline: none;
    border-color: #19ac5a;
    background-color: rgba(25, 172, 90, 0.05);
}

.fp8t4-ratings {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
}

.mk3w9-ratings-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.jv2n8-rating-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.xn7k5-stars-input {
    display: flex;
    gap: 5px;
}

.zw3m9-star-input {
    font-size: 32px;
    color: rgba(245, 158, 11, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.qm8v4-form-success {
    text-align: center;
    padding: 40px;
    background: rgba(25, 172, 90, 0.1);
    border-radius: 12px;
    border: 2px solid #19ac5a;
}

.jx7p2-success-icon {
    font-size: 64px;
    color: #19ac5a;
    margin-bottom: 15px;
}

.wy3k9-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.pv5t8-success-text {
    font-size: 16px;
    color: #c0c0c0;
}

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

.mb-review-card {
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mb-review-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(25, 172, 90, 0.3);
}

.mb-review-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mb-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(25, 172, 90, 0.3);
}

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

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

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

.mb-review-country img {
    width: 20px;
    height: auto;
}

.mb-review-date {
    font-size: 13px;
    color: #a0a0a0;
}

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

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

.mb-rating-value {
    font-size: 32px;
    font-weight: 700;
    color: #19ac5a;
}

.mb-stars {
    font-size: 20px;
    color: #f59e0b;
    letter-spacing: 2px;
}

.mb-star {
    opacity: 0.3;
}

.mb-star-filled {
    opacity: 1;
}

.mb-rating-details-btn {
    padding: 6px 12px;
    background: rgba(25, 172, 90, 0.1);
    border: 1px solid rgba(25, 172, 90, 0.3);
    color: #19ac5a;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
    background: rgba(25, 172, 90, 0.2);
}

.mb-rating-details {
    margin-top: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.mb-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

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

.mb-review-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

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

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

.mb-source-link {
    color: #19ac5a;
}

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

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

.mb-review-text.mb-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mb-review-text.mb-expanded {
    display: block;
}

.mb-review-expand {
    margin-top: 10px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(25, 172, 90, 0.3);
    color: #19ac5a;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-review-expand:hover {
    background: rgba(25, 172, 90, 0.1);
}

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

.mb-review-pros,
.mb-review-cons {
    padding: 15px;
    border-radius: 8px;
}

.mb-review-pros {
    background: rgba(25, 172, 90, 0.08);
    border: 1px solid rgba(25, 172, 90, 0.2);
}

.mb-review-cons {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.mb-pc-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.mb-pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mb-pro-item {
    font-size: 14px;
    color: #19ac5a;
    padding-left: 18px;
    position: relative;
}

.mb-pro-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.mb-con-item {
    font-size: 14px;
    color: #ef4444;
    padding-left: 18px;
    position: relative;
}

.mb-con-item::before {
    content: '✗';
    position: absolute;
    left: 0;
    font-weight: 700;
}

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

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

.mb-vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-vote-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mb-like-btn.voted {
    background: rgba(25, 172, 90, 0.2);
    border-color: #19ac5a;
    color: #19ac5a;
}

.mb-dislike-btn.voted {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.mb-reply-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(25, 172, 90, 0.3);
    color: #19ac5a;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-reply-btn:hover {
    background: rgba(25, 172, 90, 0.1);
}

.mb-reply-form {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.mb-reply-textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e8e8;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
}

.mb-reply-textarea:focus {
    outline: none;
    border-color: #19ac5a;
}

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

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

.mb-btn-primary {
    background: linear-gradient(135deg, #19ac5a 0%, #15994f 100%);
    color: #fff;
}

.mb-btn-primary:hover {
    transform: translateY(-2px);
}

.mb-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tn8w4-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mq5k7-faq-item {
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.xw9t3-faq-question:hover {
    background: rgba(25, 172, 90, 0.05);
}

.pj7k2-faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #19ac5a;
    transition: transform 0.3s ease;
}

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

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

.mq5k7-faq-item.active .rv6m8-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

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

.kj8v3-table-wrapper {
    overflow-x: auto;
}

.qx5m7-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.qx5m7-comparison-table thead {
    background: rgba(25, 172, 90, 0.1);
}

.qx5m7-comparison-table th,
.qx5m7-comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.qx5m7-comparison-table th {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.qx5m7-comparison-table td {
    font-size: 14px;
    color: #e8e8e8;
}

.tv9k2-highlight {
    background: rgba(25, 172, 90, 0.08);
    font-weight: 700;
    color: #19ac5a;
}

.xm3w9-content-area {
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xm3w9-content-area h1,
.xm3w9-content-area h2,
.xm3w9-content-area h3,
.xm3w9-content-area h4,
.xm3w9-content-area h5,
.xm3w9-content-area h6 {
    color: #fff;
    margin: 25px 0 15px;
    line-height: 1.3;
}

.xm3w9-content-area h1 {
    font-size: 32px;
}

.xm3w9-content-area h2 {
    font-size: 28px;
}

.xm3w9-content-area h3 {
    font-size: 24px;
}

.xm3w9-content-area p {
    font-size: 16px;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.xm3w9-content-area ul,
.xm3w9-content-area ol {
    margin: 15px 0 15px 30px;
    color: #e8e8e8;
}

.xm3w9-content-area li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.xm3w9-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.xm3w9-content-area th,
.xm3w9-content-area td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.xm3w9-content-area th {
    background: rgba(25, 172, 90, 0.1);
    color: #fff;
    font-weight: 700;
}

.xm3w9-content-area blockquote {
    padding: 15px 20px;
    margin: 20px 0;
    border-left: 4px solid #19ac5a;
    background: rgba(25, 172, 90, 0.08);
    color: #c0c0c0;
    font-style: italic;
}

.pq8v5-author-info {
    margin-top: 40px;
}

.tk2n7-author-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px;
    background: linear-gradient(135deg, #141b2e 0%, #1a2337 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wj9k3-author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(25, 172, 90, 0.3);
}

.fx7t4-author-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.nq3w6-author-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.jw8k5-author-social {
    display: flex;
    gap: 15px;
}

.cm4p9-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(25, 172, 90, 0.1);
    border: 1px solid rgba(25, 172, 90, 0.2);
    color: #19ac5a;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cm4p9-social-link:hover {
    background: rgba(25, 172, 90, 0.2);
    transform: translateY(-2px);
}

.wm9k5-footer {
    background: linear-gradient(180deg, #141b2e 0%, #0f1524 100%);
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tp8v4-footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.qx5t7-footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dp8k4-footer-logo img {
    max-height: 45px;
}

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

.km9w2-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

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

.py7m3-footer-link {
    font-size: 14px;
    color: #c0c0c0;
    transition: all 0.3s ease;
}

.py7m3-footer-link:hover {
    color: #19ac5a;
    padding-left: 5px;
}

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

.vw8k3-trust-logos img {
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.rm5n9-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fx7k2-payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fx7k2-payment-methods img {
    max-height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.fx7k2-payment-methods img:hover {
    opacity: 1;
}

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

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

.hy2k5-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #808080;
    max-width: 900px;
    margin: 0 auto;
}

.zx8k4-widget-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2841 0%, #181f35 100%);
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    border-top: 2px solid #19ac5a;
}

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

.rk3n9-widget-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jw5t8-widget-bonus {
    font-size: 18px;
    font-weight: 700;
    color: #f59e0b;
}

.mq2k7-widget-cta {
    font-size: 15px;
    color: #e8e8e8;
}

.vt6p2-btn-widget {
    background: linear-gradient(135deg, #19ac5a 0%, #15994f 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(25, 172, 90, 0.4);
    font-size: 16px;
    padding: 12px 30px;
}

.vt6p2-btn-widget:hover {
    transform: scale(1.05);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tm9v4-leave-review,
.hm9x5-user-reviews,
.vk3p7-faq,
.wp4n9-comparison,
.bn7k4-supplementary {
    background: transparent;
    animation: fadeIn 0.6s ease;
}

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

    .wd5f8-sidebar {
        order: 2;
    }

    .gb2n7-content {
        order: 1;
    }

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

    .tk2n7-author-card {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .wj9k3-author-avatar {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .fj3w9-header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #141b2e 0%, #0f1524 100%);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1001;
    }

    .fj3w9-header-nav.active {
        left: 0;
    }

    .bm7k2-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .pv6w8-nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .yt7k3-burger {
        display: flex;
        z-index: 1002;
    }

    .nk8m5-header-right .vt6p2-btn-bonus {
        display: none;
    }

    .vt6p2-btn-small {
        padding: 8px 14px;
        font-size: 13px;
    }

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

    .ry2m5-hero-text {
        font-size: 16px;
    }

    .zt5w1-hero-slider {
        height: 300px;
    }

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

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

    .jv2n8-rating-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

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

    .cs5w2-banner-content {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }

    .cs5w2-banner-content .vt6p2-btn {
        grid-column: 1 / -1;
        justify-self: center;
    }

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

    .tk2n7-author-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .jw8k5-author-social {
        justify-content: center;
    }

    .pm7v2-widget-content {
        flex-direction: column;
        gap: 12px;
    }

    .rk3n9-widget-text {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .fj6k9-section-title {
        font-size: 20px;
    }

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

    .qx5m7-comparison-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .mx7v3-container {
        padding: 0 15px;
    }

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

    .ry2m5-hero-text {
        font-size: 14px;
    }

    .zt5w1-hero-slider {
        height: 250px;
    }

    .mb-review-avatar {
        width: 50px;
        height: 50px;
    }

    .mb-review-author {
        font-size: 16px;
    }

    .mb-rating-value {
        font-size: 24px;
    }

    .mb-stars {
        font-size: 16px;
    }

    .hq3n7-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.wp-block-library,
.classic-theme-styles,
.elementor-icons,
.elementor-frontend {
    display: none;
}

.widget-area {
    display: none;
}

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

.container.fhhd {
    --fh-bg: #090f1e;
    --fh-surface: rgba(255, 255, 255, .04);
    --fh-surface2: rgba(255, 255, 255, .06);
    --fh-border: rgba(255, 255, 255, .08);
    --fh-text: #e8e8e8;
    --fh-muted: #aeb6c6;
    --fh-title: #ffffff;
    --fh-accent: #19ac5a;
    --fh-accent2: #f59e0b;
    --fh-danger: #ef4444;
    --fh-radius: 14px;
    --fh-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --fh-shadow2: 0 6px 18px rgba(0, 0, 0, .28);
    --fh-max: 920px;
    --fh-pad: 28px;
    background: transparent;
    color: var(--fh-text);
    max-width: var(--fh-max);
    margin: 0 auto;
    padding: var(--fh-pad);
    border-radius: calc(var(--fh-radius) + 4px);
    border: 1px solid var(--fh-border);
    background: linear-gradient(135deg, #141b2e 0%, #0f1524 100%);
    box-shadow: var(--fh-shadow);
}

.container.fhhd * {
    background-color: transparent;
}

.container.fhhd :where(p,ul,ol,li,blockquote,table,thead,tbody,tr,td,th) {
    color: var(--fh-text);
}

.container.fhhd :where(h1,h2,h3,h4,h5,h6) {
    color: var(--fh-title);
    line-height: 1.25;
    letter-spacing: .2px;
    margin: 22px 0 12px;
}

.container.fhhd h1 {
    font-size: clamp(26px, 4.2vw, 36px);
    margin-top: 0;
}

.container.fhhd h2 {
    font-size: clamp(20px, 3.2vw, 28px);
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.container.fhhd h3 {
    font-size: clamp(18px, 2.7vw, 22px);
}

.container.fhhd p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--fh-text);
    margin: 0 0 14px;
}

.container.fhhd :where(ul,ol) {
    margin: 10px 0 14px 22px;
    padding: 0;
}

.container.fhhd li {
    margin: 8px 0;
    line-height: 1.7;
    color: var(--fh-text);
}

.container.fhhd a {
    color: var(--fh-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(25, 172, 90, .35);
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
    word-break: break-word;
}

.container.fhhd a:hover {
    opacity: .9;
    border-bottom-color: rgba(25, 172, 90, .7);
}

.container.fhhd a:focus-visible {
    outline: 2px solid rgba(25, 172, 90, .7);
    outline-offset: 3px;
    border-bottom-color: transparent;
    border-radius: 6px;
}

.container.fhhd blockquote {
    margin: 16px 0;
    padding: 14px 16px;
    border-left: 4px solid var(--fh-accent);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(25, 172, 90, .12) 0%, rgba(255, 255, 255, .03) 100%);
    color: var(--fh-muted);
}

.container.fhhd blockquote :where(p) {
    margin: 0;
    color: var(--fh-muted);
}

.container.fhhd :where(strong,b) {
    color: var(--fh-title);
}

.container.fhhd :where(code,kbd) {
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
    color: var(--fh-title);
    font-size: .95em;
}

.container.fhhd hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 18px 0;
}

.container.fhhd table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0;
    border-radius: var(--fh-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.container.fhhd thead {
    background: rgba(25, 172, 90, .10);
}

.container.fhhd th,
.container.fhhd td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-right: 1px solid rgba(255, 255, 255, .06);
    font-size: 14px;
}

.container.fhhd tr:last-child td {
    border-bottom: 0;
}

.container.fhhd th:last-child,
.container.fhhd td:last-child {
    border-right: 0;
}

.container.fhhd img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.container.fhhd :where(.callout,.note,.warning,.tip) {
    padding: 14px 16px;
    border-radius: var(--fh-radius);
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
}

.container.fhhd :where(.warning) {
    border-color: rgba(239, 68, 68, .35);
    background: linear-gradient(135deg, rgba(239, 68, 68, .10) 0%, rgba(255, 255, 255, .03) 100%);
}

.container.fhhd :where(.tip) {
    border-color: rgba(25, 172, 90, .35);
    background: linear-gradient(135deg, rgba(25, 172, 90, .10) 0%, rgba(255, 255, 255, .03) 100%);
}

.container.fhhd {
    scroll-margin-top: 90px;
}

@media (max-width: 1024px) {
    .container.fhhd {
        --fh-pad: 22px;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .container.fhhd {
        --fh-pad: 18px;
        border-radius: 16px;
    }

    .container.fhhd p {
        font-size: 15px;
        line-height: 1.8;
    }

    .container.fhhd :where(ul,ol) {
        margin-left: 18px;
    }

    .container.fhhd table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container.fhhd th,
    .container.fhhd td {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container.fhhd {
        --fh-pad: 14px;
        border-radius: 14px;
    }

    .container.fhhd h2 {
        padding-top: 8px;
    }
}

.kv9m3-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #141b2e 0%, #0f1524 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hn2w8-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 64px;
}

.dp8k4-logo img {
    display: block;
    max-height: 44px;
    width: auto;
}

.yt7k3-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.yt7k3-burger span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #e8e8e8;
    display: block;
    transition: transform .25s ease, opacity .2s ease;
}

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

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

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

@media (max-width: 768px) {
    .hn2w8-header-inner {
        grid-template-columns:auto auto;
        gap: 12px;
        min-height: 60px;
    }

    .fj3w9-header-nav {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
        z-index: 1100;
    }

    .fj3w9-header-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: min(86vw, 320px);
        background: linear-gradient(180deg, #141b2e 0%, #0f1524 100%);
        border-right: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 16px 0 40px rgba(0, 0, 0, .45);
        transform: translateX(-105%);
        transition: transform .25s ease;
    }

    .fj3w9-header-nav.active {
        opacity: 1;
        pointer-events: auto;
    }

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

    .bm7k2-nav-list {
        position: relative;
        width: min(86vw, 320px);
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 80px 14px 18px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pv6w8-nav-link {
        padding: 14px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .06);
    }

    .pv6w8-nav-link:hover {
        background: rgba(25, 172, 90, .10);
        border-color: rgba(25, 172, 90, .25);
    }

    .wx5k7-reviews-count {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(25, 172, 90, .12);
        border: 1px solid rgba(25, 172, 90, .22);
    }

    .nk8m5-header-right {
        gap: 10px;
    }

    .nk8m5-header-right .vt6p2-btn-bonus {
        display: none;
    }

    .nk8m5-header-right .vt6p2-btn-small {
        padding: 9px 12px;
        font-size: 13px;
    }

    .yt7k3-burger {
        display: flex;
    }

    body.fixed {
        overflow: hidden;
    }
}

@media (max-width: 420px) {
    .nk8m5-header-right .vt6p2-btn-secondary {
        display: none;
    }
}

.nhd {
    --nhd-bg1: #141b2e;
    --nhd-bg2: #0f1524;
    --nhd-text: #e8e8e8;
    --nhd-muted: rgba(255, 255, 255, .72);
    --nhd-border: rgba(255, 255, 255, .08);
    --nhd-accent: #19ac5a;
    --nhd-bonus: #f59e0b;
    position: sticky;
    top: 0;
    z-index: 1200;
    background: linear-gradient(180deg, var(--nhd-bg1) 0%, var(--nhd-bg2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.nhd__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nhd__inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 64px;
}

.nhd__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nhd__logo img {
    display: block;
    max-height: 44px;
    width: auto;
}

.nhd__nav {
    display: flex;
    justify-content: center;
}

.nhd__list {
    list-style: none;
    display: flex;
    gap: 10px 16px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nhd__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--nhd-text);
    font-weight: 700;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.nhd__link:hover {
    background: rgba(25, 172, 90, .10);
    color: var(--nhd-accent);
    border-color: rgba(25, 172, 90, .18);
}

.nhd__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nhd__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(25, 172, 90, .12);
    border: 1px solid rgba(25, 172, 90, .22);
    color: var(--nhd-accent);
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
}

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

.nhd__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
    white-space: nowrap;
}

.nhd__btn--ghost {
    color: var(--nhd-text);
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
}

.nhd__btn--ghost:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-1px);
}

.nhd__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--nhd-accent) 0%, #15994f 100%);
    box-shadow: 0 8px 18px rgba(25, 172, 90, .22);
}

.nhd__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(25, 172, 90, .28);
}

.nhd__btn--bonus {
    color: #fff;
    background: linear-gradient(135deg, var(--nhd-bonus) 0%, #d97706 100%);
    box-shadow: 0 8px 18px rgba(245, 158, 11, .22);
}

.nhd__btn--bonus:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, .28);
}

.nhd__burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.nhd__burger-lines {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: var(--nhd-text);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nhd__burger-lines::before,
.nhd__burger-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--nhd-text);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nhd__burger-lines::before {
    transform: translateY(-7px);
}

.nhd__burger-lines::after {
    transform: translateY(7px);
}

.nhd.is-open .nhd__burger-lines {
    opacity: 0;
}

.nhd.is-open .nhd__burger-lines::before {
    transform: rotate(45deg);
}

.nhd.is-open .nhd__burger-lines::after {
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .nhd__btn--bonus {
        display: none;
    }
}

@media (max-width: 768px) {
    .nhd__container {
        padding: 0 12px;
    }

    .nhd__inner {
        grid-template-columns:auto auto;
        justify-content: space-between;
        gap: 12px;
        min-height: 60px;
    }

    .nhd__nav {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
        z-index: 1400;
    }

    .nhd__nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: min(86vw, 320px);
        background: linear-gradient(180deg, var(--nhd-bg1) 0%, var(--nhd-bg2) 100%);
        border-right: 1px solid var(--nhd-border);
        box-shadow: 16px 0 40px rgba(0, 0, 0, .45);
        transform: translateX(-105%);
        transition: transform .25s ease;
    }

    .nhd.is-open .nhd__nav {
        opacity: 1;
        pointer-events: auto;
    }

    .nhd.is-open .nhd__nav::before {
        transform: translateX(0);
    }

    .nhd__list {
        position: relative;
        width: min(86vw, 320px);
        height: 100%;
        margin: 0;
        padding: 80px 14px 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nhd__link {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .06);
        padding: 14px 12px;
    }

    .nhd__pill {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .nhd__right {
        gap: 10px;
    }

    .nhd__btn {
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 12px;
    }

    .nhd__burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.nhd-lock {
        overflow: hidden;
    }
}

@media (max-width: 420px) {
    .nhd__btn--ghost {
        display: none;
    }
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #090f1e;
}

.xj9k2-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img, svg, video, canvas {
    max-width: 100%;
}

.kl3n8-hero {
    max-width: 100%;
}

@media (max-width: 768px) {
    .mx7v3-container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .kl3n8-hero {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .zt5w1-hero-slider {
        width: 100%;
    }

    .qm2p9-slider-item {
        width: 100%;
    }
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.xj9k2-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    .xj9k2-wrapper {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .mx7v3-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 12px;
        padding-right: 12px;
    }

    .lp9s2-grid {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .wd5f8-sidebar,
    .gb2n7-content,
    .xm3w9-content-area,
    .kx9p3-review-form,
    .xp7k3-bonus-banner,
    .zm4t1-rating-summary,
    .pv9x2-casino-info,
    .fk8v3-bonuses,
    .wv5k9-pros-cons,
    .mq5k7-faq-item,
    .mb-review-card,
    .qx5m7-comparison-table,
    .tk2n7-author-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .lp9s2-grid,
    .yr8m2-pros-cons-grid,
    .mb-review-pros-cons,
    .pq3k8-form-row,
    .tp8v4-footer-top {
        grid-template-columns:1fr;
    }

    .kj8v3-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .qx5m7-comparison-table {
        min-width: 640px;
    }
}

.nhd {
    position: sticky;
    top: 0;
    z-index: 1200;
}

.nhd__nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 1400;
}

.nhd__nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: min(86vw, 320px);
    background: linear-gradient(180deg, #141b2e 0%, #0f1524 100%);
    border-right: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 16px 0 40px rgba(0, 0, 0, .45);
    transform: translateX(-105%);
    transition: transform .25s ease;
}

.nhd.is-open .nhd__nav {
    opacity: 1;
    pointer-events: auto;
}

.nhd.is-open .nhd__nav::before {
    transform: translateX(0);
}

.nhd__list {
    position: relative;
    width: min(86vw, 320px);
    height: 100%;
    margin: 0;
    padding: 80px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

body.nhd-lock {
    overflow: hidden;
    touch-action: none;
}

@supports not (height: 100dvh) {
    .nhd__nav {
        height: 100vh;
    }
}

.xj9k2-wrapper,
.pg7x4-main {
    transform: none !important;
}

html, body {
    overflow-x: hidden;
}

.nhd__nav {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nhd__nav {
        inset: 0;
        width: 100vw;
    }

    .nhd__nav::before {
        left: -40vw !important;
        width: calc(86vw + 40vw) !important;
        max-width: none !important;
    }

    .nhd__list {
        width: 86vw;
        max-width: 320px;
        margin-left: -20vw !important;
    }
}
