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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f1117;
    color: #e8eaf0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: #f5a623;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #ffbc4b
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input, textarea, select {
    font-family: inherit
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.xb-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.site-main {
    flex: 1
}

.xb-block {
    background: #1a1d27;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2d3e
}

.xb-block-rounded {
    border-radius: 16px
}

.xb-block-dark {
    background: #141720;
    border-color: #232636
}

.xb-block-accent {
    background: linear-gradient(135deg, #1e2132 0%, #1a1d2b 100%);
    border-color: #2e3250
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3)
}

.btn:active {
    transform: translateY(0)
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px
}

.btn-md {
    padding: 10px 22px;
    font-size: 14px
}

.btn-lg {
    padding: 13px 28px;
    font-size: 16px
}

.btn-block {
    width: 100%;
    display: flex
}

.btn-primary {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8
}

.btn-primary:hover {
    background: #1558b0;
    border-color: #1558b0;
    color: #fff
}

.btn-accent {
    background: #f5a623;
    color: #0f1117;
    border-color: #f5a623
}

.btn-accent:hover {
    background: #e8920a;
    border-color: #e8920a;
    color: #0f1117
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4)
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.btn-ghost {
    background: transparent;
    color: #9ba3b8;
    border-color: #2a2d3e
}

.btn-ghost:hover {
    background: #1a1d27;
    color: #e8eaf0
}

.btn-text-sm {
    font-size: 12px;
    color: #9ba3b8;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .2s, background .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.btn-text-sm:hover {
    color: #f5a623;
    background: rgba(245, 166, 35, .1)
}

.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -.3px
}

.site-header {
    background: #141720;
    border-bottom: 1px solid #2a2d3e;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: nowrap
}

.hdr-logo {
    display: inline-flex;
    align-items: center
}

.hdr-logo img {
    height: 36px;
    width: auto
}

.hdr-nav-wrap {
    flex: 1
}

.hdr-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.hdr-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 500;
    color: #b8c0d4;
    transition: color .2s, background .2s;
    white-space: nowrap
}

.hdr-nav-link:hover {
    color: #f5a623;
    background: rgba(245, 166, 35, .08)
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.hdr-review-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    background: #1e2132
}

.hdr-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #e8eaf0;
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

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

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

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

.hdr-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 199
}

.hdr-nav-overlay.visible {
    display: block
}

.hdr-nav-panel {
    transition: transform .3s ease
}

.hdr-nav-close {
    display: none
}

@media (max-width: 900px) {
    .hdr-nav-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100%;
        background: #141720;
        border-right: 1px solid #2a2d3e;
        z-index: 200;
        transform: translateX(-100%);
        transition: transform .3s ease;
        padding: 20px 16px;
        overflow-y: auto
    }

    .hdr-nav-wrap.open {
        transform: translateX(0)
    }

    .hdr-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding-top: 40px
    }

    .hdr-nav-link {
        font-size: 15px;
        padding: 10px 14px;
        width: 100%
    }

    .hdr-burger {
        display: flex
    }

    .hdr-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        background: #1e2132;
        color: #e8eaf0
    }
}

@media (max-width: 600px) {
    .hdr-review-count {
        display: none
    }

    .xb-leave-review-btn {
        display: none
    }
}

.hero-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/banner-bet.png') center/cover no-repeat;
    filter: brightness(.35)
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 17, 23, .9) 0%, rgba(26, 29, 43, .6) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, .2);
    border: 1px solid rgba(245, 166, 35, .4);
    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px
}

.hero-h1 {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.5px;
    max-width: 700px
}

.hero-sub {
    font-size: 17px;
    color: #c0c8dc;
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.6
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.section-wrap {
    padding: 48px 0
}

.xb-cards-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.rating-summary-block {
    text-align: center;
    padding: 28px
}

.rsb-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #9ba3b8;
    margin-bottom: 12px;
    font-weight: 600
}

.rsb-big-score {
    font-size: 60px;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
    margin-bottom: 8px
}

.rsb-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 24px;
    margin-bottom: 8px
}

.rsb-star {
    color: #2a2d3e
}

.rsb-star.filled {
    color: #f5a623
}

.rsb-star.half {
    background: linear-gradient(90deg, #f5a623 50%, #2a2d3e 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.rsb-total {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px
}

.rsb-bars {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.rsb-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px
}

.rsb-bar-label {
    width: 68px;
    text-align: right;
    color: #9ba3b8
}

.rsb-bar-track {
    flex: 1;
    height: 6px;
    background: #2a2d3e;
    border-radius: 3px;
    overflow: hidden
}

.rsb-bar-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 3px
}

.rsb-bar-count {
    width: 28px;
    color: #6b7280
}

.pros-cons-block {
    padding: 24px
}

.pcb-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

.pcb-cols {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.pcb-col-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 10px;
    padding-bottom: 8px
}

.pcb-pros .pcb-col-header {
    color: #4ade80;
    border-bottom: 1px solid rgba(74, 222, 128, .2)
}

.pcb-cons .pcb-col-header {
    color: #f87171;
    border-bottom: 1px solid rgba(248, 113, 113, .2)
}

.pcb-list {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.pcb-list li {
    font-size: 13.5px;
    color: #c0c8dc;
    padding-left: 12px;
    position: relative;
    line-height: 1.5
}

.pcb-pros .pcb-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80
}

.pcb-cons .pcb-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f87171
}

.casino-info-block {
    padding: 24px
}

.cib-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2d3e
}

.cib-rows {
    display: flex;
    flex-direction: column;
    gap: 0
}

.cib-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #1e2132;
    font-size: 13.5px
}

.cib-row:last-child {
    border-bottom: none
}

.cib-row-full {
    flex-direction: column;
    gap: 8px
}

.cib-key {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ba3b8;
    min-width: 160px;
    flex-shrink: 0;
    font-weight: 500
}

.cib-val {
    color: #e8eaf0;
    font-weight: 500
}

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

.cib-payment-logos img {
    border-radius: 4px;
    object-fit: contain;
    background: #0f1117;
    padding: 3px
}

.cib-providers-text {
    color: #c0c8dc;
    line-height: 1.5
}

.cib-toggle-btn {
    margin-top: 12px;
    color: #f5a623
}

.bonuses-section {
    padding: 48px 0;
    background: #141720
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px
}

.bonus-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px;
    border-radius: 14px;
    transition: transform .2s, box-shadow .2s
}

.bonus-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4)
}

.bonus-tile-icon {
    color: #f5a623;
    margin-bottom: 4px
}

.bonus-tile-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #9ba3b8;
    font-weight: 600
}

.bonus-tile-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff
}

.bonus-tile-desc {
    font-size: 13px;
    color: #9ba3b8;
    line-height: 1.5;
    flex: 1
}

.leave-review-section {
    padding: 48px 0
}

.lr-bonus-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #1a2d4d 100%);
    border: 1px solid #2e4a70;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap
}

.lr-bonus-content {
    display: flex;
    align-items: center;
    gap: 20px
}

.lr-bonus-icon {
    color: #f5a623;
    flex-shrink: 0
}

.lr-bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.lr-bonus-text {
    font-size: 13.5px;
    color: #a8c0d8
}

.lr-form-block {
    padding: 32px
}

.lr-success-msg {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    color: #4ade80
}

.lr-success-msg svg {
    flex-shrink: 0;
    margin-top: 2px
}

.lr-success-msg strong {
    display: block;
    margin-bottom: 4px;
    color: #4ade80
}

.lr-success-msg p {
    font-size: 13.5px;
    color: #a8d4b8;
    margin: 0
}

.lr-form {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.lr-form-row-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px
}

.lr-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lr-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #c0c8dc
}

.lr-label span {
    color: #f87171
}

.lr-input {
    background: #0f1117;
    border: 1.5px solid #2a2d3e;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #e8eaf0;
    transition: border-color .2s
}

.lr-input:focus {
    outline: none;
    border-color: #1a73e8
}

.lr-input::placeholder {
    color: #4b5563
}

.lr-textarea {
    background: #0f1117;
    border: 1.5px solid #2a2d3e;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #e8eaf0;
    resize: vertical;
    transition: border-color .2s
}

.lr-textarea:focus {
    outline: none;
    border-color: #1a73e8
}

.lr-textarea::placeholder {
    color: #4b5563
}

.lr-char-count {
    font-size: 12px;
    color: #6b7280;
    text-align: right
}

.lr-ratings-section {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lr-ratings-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #c0c8dc
}

.lr-ratings-label span {
    color: #f87171
}

.lr-ratings-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.lr-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #0f1117;
    border: 1px solid #1e2132;
    border-radius: 8px;
    padding: 8px 12px
}

.lr-rating-param {
    font-size: 13px;
    color: #9ba3b8;
    font-weight: 500
}

.lr-stars-input {
    display: flex;
    gap: 3px
}

.lr-star-btn {
    font-size: 20px;
    color: #2a2d3e;
    transition: color .15s, transform .1s;
    padding: 2px
}

.lr-star-btn:hover, .lr-star-btn.active {
    color: #f5a623
}

.lr-star-btn.active {
    transform: scale(1.1)
}

.lr-submit-btn {
    margin-top: 4px
}

.reviews-section {
    padding: 48px 0;
    background: #141720
}

.reviews-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.reviews-section-header .section-title {
    margin-bottom: 0
}

.reviews-sort-select {
    background: #1a1d27;
    border: 1.5px solid #2a2d3e;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13.5px;
    color: #e8eaf0;
    cursor: pointer
}

.rv-container {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rv-card {
    background: #1a1d27;
    border: 1px solid #2a2d3e;
    border-radius: 16px;
    padding: 24px;
    transition: border-color .2s
}

.rv-card:hover {
    border-color: #3a3d5e
}

.rv-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.rv-author-block {
    display: flex;
    align-items: center;
    gap: 12px
}

.rv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #2a2d3e
}

.rv-avatar-placeholder {
    background: #1e2132;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #f5a623
}

.rv-author-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.rv-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.rv-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #9ba3b8
}

.rv-country img {
    border-radius: 2px
}

.rv-date {
    font-size: 12px;
    color: #6b7280
}

.rv-rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px
}

.rv-stars {
    display: flex;
    gap: 2px;
    font-size: 16px
}

.rv-star {
    color: #2a2d3e
}

.rv-star.rv-star-filled {
    color: #f5a623
}

.rv-rating-value {
    font-size: 12px;
    color: #9ba3b8
}

.rv-rating-details {
    background: #0f1117;
    border: 1px solid #2a2d3e;
    border-radius: 8px;
    padding: 12px;
    margin-top: 6px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.rv-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #9ba3b8
}

.rv-mini-stars {
    display: flex;
    gap: 2px;
    font-size: 12px
}

.rv-mini-star {
    color: #2a2d3e
}

.rv-mini-star.filled {
    color: #f5a623
}

.rv-source-badge {
    font-size: 12px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    background: #0f1117;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #1e2132
}

.rv-source-link {
    color: #1a73e8;
    font-weight: 500
}

.rv-source-link:hover {
    color: #4d9ef8
}

.rv-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.rv-body {
    position: relative
}

.rv-text {
    font-size: 14px;
    color: #c0c8dc;
    line-height: 1.65;
    overflow: hidden
}

.rv-text-truncated {
    max-height: 80px;
    overflow: hidden
}

.rv-text-truncated.expanded {
    max-height: none
}

.rv-expand-btn {
    margin-top: 8px;
    color: #1a73e8
}

.rv-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-top: 16px
}

.rv-pc-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 8px
}

.rv-pros .rv-pc-title {
    color: #4ade80
}

.rv-cons .rv-pc-title {
    color: #f87171
}

.rv-pc-list {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.rv-pro-item, .rv-con-item {
    font-size: 13px;
    line-height: 1.5;
    padding-left: 12px;
    position: relative
}

.rv-pro-item {
    color: #a8d4b8
}

.rv-pro-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80
}

.rv-con-item {
    color: #f5a8a8
}

.rv-con-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f87171
}

.rv-media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px
}

.rv-media-thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #2a2d3e;
    transition: border-color .2s
}

.rv-media-thumb img {
    width: 120px;
    height: 80px;
    object-fit: cover
}

.rv-media-thumb:hover {
    border-color: #f5a623
}

.rv-media-video {
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #2a2d3e
}

.rv-media-video iframe {
    width: 280px;
    height: 158px;
    display: block
}

.rv-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #1e2132;
    flex-wrap: wrap;
    gap: 8px
}

.rv-votes {
    display: flex;
    gap: 8px
}

.rv-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, color .2s;
    color: #9ba3b8;
    background: #0f1117;
    border: 1px solid #2a2d3e
}

.rv-like-btn:hover {
    background: rgba(74, 222, 128, .1);
    color: #4ade80;
    border-color: rgba(74, 222, 128, .3)
}

.rv-dislike-btn:hover {
    background: rgba(248, 113, 113, .1);
    color: #f87171;
    border-color: rgba(248, 113, 113, .3)
}

.rv-reply-form {
    margin-top: 14px;
    animation: slideDown .25s ease
}

.rv-reply-form-inner {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.rv-reply-textarea {
    background: #0f1117;
    border: 1.5px solid #2a2d3e;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #e8eaf0;
    resize: vertical;
    width: 100%
}

.rv-reply-textarea:focus {
    outline: none;
    border-color: #1a73e8
}

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

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

.advantages-section {
    padding: 48px 0
}

.adv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px
}

.adv-tile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    transition: transform .2s, box-shadow .2s
}

.adv-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3)
}

.adv-icon {
    color: #f5a623;
    margin-bottom: 4px
}

.adv-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.adv-text {
    font-size: 13.5px;
    color: #9ba3b8;
    line-height: 1.6
}

.review-content-section {
    padding: 48px 0;
    background: #141720
}

.rc-inner {
    padding: 32px
}

.rc-author-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #2a2d3e
}

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

.rc-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2a2d3e;
    flex-shrink: 0
}

.rc-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.rc-author-role {
    font-size: 12px;
    color: #9ba3b8;
    margin-bottom: 4px
}

.rc-author-link {
    font-size: 12px;
    color: #1a73e8;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.rc-author-about {
    font-size: 13px;
    color: #9ba3b8;
    line-height: 1.6
}

.rc-content-body h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px
}

.rc-text-content {
    font-size: 15px;
    line-height: 1.7;
    color: #c0c8dc
}

.rc-text-content h2, .rc-text-content h3 {
    color: #fff;
    margin: 24px 0 12px;
    font-weight: 700;
    line-height: 1.3
}

.rc-text-content h2 {
    font-size: clamp(18px, 2.2vw, 22px)
}

.rc-text-content h3 {
    font-size: clamp(16px, 2vw, 19px)
}

.rc-text-content p {
    margin-bottom: 14px
}

.rc-text-content ul, .rc-text-content ol {
    margin: 14px 0 14px 20px
}

.rc-text-content li {
    margin-bottom: 6px;
    line-height: 1.6
}

.rc-text-content strong {
    color: #fff;
    font-weight: 600
}

.rc-text-content a {
    color: #f5a623
}

.rc-text-content a:hover {
    color: #ffbc4b
}

.rc-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
    border-radius: 8px;
    overflow: hidden
}

.rc-text-content th {
    background: #1e2132;
    color: #e8eaf0;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    font-size: 13.5px;
    border-bottom: 2px solid #2a2d3e
}

.rc-text-content td {
    padding: 11px 16px;
    font-size: 13.5px;
    color: #c0c8dc;
    border-bottom: 1px solid #1e2132
}

.rc-text-content tr:hover td {
    background: #1e2132
}

.rc-text-content blockquote {
    border-left: 3px solid #f5a623;
    padding: 12px 16px;
    background: #1e2132;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #c0c8dc;
    font-style: italic
}

.faq-section {
    padding: 48px 0
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px
}

.faq-item {
    background: #1a1d27;
    border: 1px solid #2a2d3e;
    border-radius: 12px;
    overflow: hidden
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #e8eaf0;
    text-align: left;
    transition: background .2s
}

.faq-question:hover {
    background: #1e2132
}

.faq-icon {
    transition: transform .25s;
    flex-shrink: 0;
    color: #9ba3b8
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 20px 18px
}

.faq-answer p {
    font-size: 14px;
    color: #9ba3b8;
    line-height: 1.65;
    margin: 0
}

.faq-answer a {
    color: #f5a623
}

.site-footer {
    background: #0a0c12;
    border-top: 1px solid #1e2132;
    padding: 48px 0 24px
}

.ftr-inner {
    color: #9ba3b8
}

.ftr-top {
    display: grid;
    grid-template-columns:1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 36px
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-logo img {
    height: 32px;
    width: auto
}

.ftr-tagline {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280
}

.ftr-nav-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 14px
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-nav-list a {
    font-size: 13.5px;
    color: #9ba3b8;
    transition: color .2s
}

.ftr-nav-list a:hover {
    color: #f5a623
}

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

.ftr-trust-logos a {
    display: flex;
    align-items: center;
    opacity: .7;
    transition: opacity .2s
}

.ftr-trust-logos a:hover {
    opacity: 1
}

.ftr-trust-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9)
}

.ftr-payments {
    padding: 24px 0;
    border-top: 1px solid #1e2132;
    border-bottom: 1px solid #1e2132;
    margin-bottom: 24px
}

.ftr-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 12px
}

.ftr-payment-logos img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: .7;
    filter: brightness(.9)
}

.ftr-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-legal {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap
}

.ftr-legal p {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px
}

.ftr-legal a {
    color: #6b7280
}

.ftr-18plus {
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    padding: 2px 6px;
    flex-shrink: 0;
    align-self: flex-start
}

.ftr-copyright p {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5
}

.sticky-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 150;
    background: linear-gradient(135deg, #1a3a5f 0%, #0f2540 100%);
    border: 1px solid #2e5a8e;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    transition: transform .25s, opacity .25s
}

.sticky-widget.hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none
}

.sw-inner {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.sw-bonus-badge {
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: .5px
}

.sw-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5a623;
    color: #0f1117;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap
}

.sw-cta-btn:hover {
    background: #e8920a;
    color: #0f1117;
    transform: scale(1.02)
}

.sw-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #9ba3b8;
    flex-shrink: 0;
    transition: background .2s
}

.sw-close:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.wp-content-hidden {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

.elementor-hidden-widget {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.woocommerce-hidden {
    display: none
}

.yoast-seo-meta {
    visibility: hidden;
    font-size: 0;
    line-height: 0
}

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

    .ftr-top {
        grid-template-columns:1fr 1fr
    }

    .cib-key {
        min-width: 130px
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .pcb-cols {
        grid-template-columns:1fr
    }

    .lr-form-row-2 {
        grid-template-columns:1fr
    }

    .lr-ratings-grid {
        grid-template-columns:1fr
    }

    .ftr-top {
        grid-template-columns:1fr
    }

    .ftr-top > div:nth-child(3) {
        display: none
    }

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

    .rv-card-header {
        flex-direction: column
    }

    .rv-rating-block {
        align-items: flex-start
    }

    .sticky-widget {
        right: 12px;
        bottom: 12px
    }

    .lr-bonus-banner {
        flex-direction: column;
        align-items: flex-start
    }

    .reviews-section-header {
        flex-direction: column;
        align-items: flex-start
    }

    .rc-author-info {
        gap: 12px
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px
    }

    .xb-block, .rv-card {
        padding: 16px
    }

    .hero-section {
        padding: 40px 0
    }

    .hero-h1 {
        font-size: 26px
    }

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

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

    .section-wrap {
        padding: 32px 0
    }

    .bonuses-section, .leave-review-section, .reviews-section, .advantages-section, .review-content-section, .faq-section {
        padding: 32px 0
    }

    .ftr-payment-logos img {
        height: 22px
    }
}

.hdfrs {
    max-width: 1120px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, #171b26 0%, #121621 100%);
    border: 1px solid #2a2d3e;
    border-radius: 24px;
    color: #e8eaf0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

.hdfrs h1,
.hdfrs h2,
.hdfrs h3 {
    color: #ffffff;
    line-height: 1.2;
    font-weight: 800;
}

.hdfrs h1 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hdfrs h2 {
    font-size: 28px;
    margin: 40px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2d3e;
}

.hdfrs h3 {
    font-size: 22px;
    margin: 26px 0 14px;
}

.hdfrs p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #c0c8dc;
}

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

.hdfrs ul li,
.hdfrs ol li {
    list-style: none;
    position: relative;
    margin-bottom: 12px;
    color: #d5dced;
    line-height: 1.75;
}

.hdfrs ul li {
    padding-left: 22px;
}

.hdfrs ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f5a623;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}

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

.hdfrs ol li {
    padding-left: 36px;
    counter-increment: hdfrs-counter;
}

.hdfrs ol li::before {
    content: counter(hdfrs-counter);
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a73e8;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(26, 115, 232, 0.28);
}

.hdfrs a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.hdfrs a:hover {
    color: #ffbc4b;
    opacity: 0.95;
}

.hdfrs strong {
    color: #ffffff;
    font-weight: 700;
}

.hdfrs blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #f5a623;
    background: rgba(245, 166, 35, 0.06);
    border-radius: 14px;
    color: #dde5f4;
}

.hdfrs table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    background: #1a1d27;
    border: 1px solid #2a2d3e;
    border-radius: 18px;
    overflow: hidden;
}

.hdfrs th,
.hdfrs td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid #2a2d3e;
    border-bottom: 1px solid #2a2d3e;
}

.hdfrs th:last-child,
.hdfrs td:last-child {
    border-right: none;
}

.hdfrs tr:last-child td {
    border-bottom: none;
}

.hdfrs th {
    background: #1e2132;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.hdfrs td {
    color: #c0c8dc;
    font-size: 15px;
    line-height: 1.65;
}

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

.hdfrs > *:first-child {
    margin-top: 0;
}

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

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

.hdfrs p + ul,
.hdfrs p + ol,
.hdfrs p + table {
    margin-top: 18px;
}

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

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

    .hdfrs h2 {
        font-size: 25px;
    }

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

    .hdfrs th,
    .hdfrs td {
        padding: 14px;
    }
}

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

    .hdfrs h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hdfrs h2 {
        font-size: 22px;
        margin: 28px 0 14px;
        padding-bottom: 10px;
    }

    .hdfrs h3 {
        font-size: 18px;
        margin: 22px 0 12px;
    }

    .hdfrs p,
    .hdfrs ul li,
    .hdfrs ol li,
    .hdfrs th,
    .hdfrs td {
        font-size: 15px;
    }

    .hdfrs table,
    .hdfrs thead,
    .hdfrs tbody,
    .hdfrs tr,
    .hdfrs th,
    .hdfrs td {
        display: block;
        width: 100%;
    }

    .hdfrs thead {
        display: none;
    }

    .hdfrs table {
        background: transparent;
        border: none;
        margin: 24px 0;
    }

    .hdfrs tr {
        margin-bottom: 14px;
        border: 1px solid #2a2d3e;
        border-radius: 16px;
        overflow: hidden;
        background: #1a1d27;
    }

    .hdfrs td {
        border: none;
        border-bottom: 1px solid #2a2d3e;
        padding: 14px 16px;
    }

    .hdfrs td:last-child {
        border-bottom: none;
    }
}

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

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

    .hdfrs h2 {
        font-size: 20px;
    }

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

    .hdfrs p,
    .hdfrs ul li,
    .hdfrs ol li,
    .hdfrs td {
        line-height: 1.7;
    }
}

.hdr-nav-wrap {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.hdr-nav-wrap.open {
    pointer-events: auto;
}

.hdr-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1;
}

.hdr-nav-wrap.open .hdr-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.hdr-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, 86vw);
    height: 100dvh;
    background: #050816;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 2;
    pointer-events: auto;
    overflow-y: auto;
    padding: 56px 16px 24px;
    border-right: 1px solid #1d2333;
}

.hdr-nav-wrap.open .hdr-nav-panel {
    transform: translateX(0);
}

.hdr-nav {
    position: relative;
    z-index: 3;
}

.hdr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 14px;
    color: #c7d0e0;
    text-decoration: none;
    border-radius: 12px;
    background: transparent;
    position: relative;
    z-index: 4;
}

.hdr-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.hdr-nav-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #151a28;
    color: #fff;
    border-radius: 10px;
    z-index: 5;
}

.hdr-burger {
    position: relative;
    z-index: 10000;
}

.sticky-widget {
    z-index: 50;
}

@media (min-width: 901px) {
    .hdr-nav-wrap,
    .hdr-nav-overlay,
    .hdr-nav-close {
        position: static;
        inset: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        border: 0;
    }

    .hdr-nav-panel {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: transparent;
        overflow: visible;
        padding: 0;
        border: 0;
    }
}