:root {
    --clr-bg: #000a12;
    --clr-hdr: #262A34;
    --clr-prim: #F9C23C;
    --clr-sec: #3C3C3C;
    --clr-text: #e8ecf0;
    --clr-text-muted: #9aa3b0;
    --clr-border: #2a3040;
    --clr-card: #0d1726;
    --clr-card2: #111c2d;
    --clr-ok: #2ecc71;
    --clr-warn: #f39c12;
    --clr-err: #e74c3c;
    --ff-main: 'Rubik', sans-serif;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --trans: .22s ease
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--ff-main);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: var(--clr-prim);
    text-decoration: none;
    transition: opacity var(--trans)
}

a:hover {
    opacity: .8
}

ul, ol {
    list-style: none
}

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

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.hdr-wrap-x8 {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.site-header {
    padding: 0
}

.hdr-x7k2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    position: relative
}

.hdr-logo-wrap {
    flex-shrink: 0
}

.logo-img-x4 {
    height: 44px;
    width: auto;
    object-fit: contain
}

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center
}

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

.nav-lnk-x1 {
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--trans), color var(--trans)
}

.nav-lnk-x1:hover {
    background: rgba(249, 194, 60, .12);
    color: var(--clr-prim);
    opacity: 1
}

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

.online-count-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-ok);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, .3);
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(46, 204, 113, .3)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 113, .1)
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-main);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

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

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

.btn-prim {
    background: var(--clr-prim);
    color: #1a1200;
    font-size: 14px;
    padding: 10px 20px
}

.btn-prim:hover {
    background: #ffd05a;
    box-shadow: 0 6px 24px rgba(249, 194, 60, .35)
}

.btn-sec {
    background: var(--clr-sec);
    color: #fff;
    font-size: 14px;
    padding: 10px 20px
}

.btn-sec:hover {
    background: #525252
}

.btn-sm {
    font-size: 12px;
    padding: 7px 14px
}

.btn-md {
    font-size: 15px;
    padding: 11px 24px
}

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

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

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

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans)
}

.burger-btn-x5.open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger-btn-x5.open .burger-line:nth-child(2) {
    opacity: 0
}

.burger-btn-x5.open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav-x6 {
    display: none;
    background: var(--clr-hdr);
    border-top: 1px solid var(--clr-border);
    padding: 12px 20px 16px
}

.mobile-nav-x6.open {
    display: block
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-nav-list .nav-lnk-x1 {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm)
}

.hero-section-x3 {
    position: relative;
    overflow: hidden;
    background: #000
}

.hero-slider-x2 {
    position: relative;
    width: 100%;
    overflow: hidden
}

.hero-slides-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.hero-slide {
    position: relative;
    min-width: 100%;
    flex-shrink: 0
}

.hero-img-x1 {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center
}

.hero-overlay-x4 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 10, 18, .82) 40%, rgba(0, 10, 18, .2) 100%);
    display: flex;
    align-items: center
}

.hero-content-x5 {
    max-width: 560px;
    padding: 40px 60px;
    animation: fadeInLeft .6s ease
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-sub {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clr-prim);
    margin-bottom: 10px
}

.hero-title-x6 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px
}

.hero-accent {
    color: var(--clr-prim)
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
    max-width: 440px;
    line-height: 1.6
}

.hero-cta {
    font-size: 17px;
    padding: 15px 36px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(249, 194, 60, .4)
}

.hero-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10
}

.hero-btn-prev, .hero-btn-next {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans);
    line-height: 1
}

.hero-btn-prev:hover, .hero-btn-next:hover {
    background: rgba(249, 194, 60, .5)
}

.hero-dots {
    display: flex;
    gap: 8px
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--trans), transform var(--trans);
    padding: 0
}

.hero-dot.active {
    background: var(--clr-prim);
    transform: scale(1.25)
}

.breadcrumbs-wrap-x9 {
    padding: 14px 0 0
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: var(--clr-text-muted)
}

.bc-link {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--trans)
}

.bc-link:hover {
    color: var(--clr-prim)
}

.bc-sep {
    color: var(--clr-border);
    margin: 0 2px
}

.bc-active {
    color: var(--clr-text)
}

.main-content-x7 {
    padding: 24px 0 60px
}

.content-box-x2 {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-bottom: 24px
}

.page-h1-x3 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2
}

.author-box-xb {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    margin-bottom: 28px;
    flex-wrap: wrap
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-prim)
}

.author-info-xa {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 160px
}

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

.author-role {
    font-size: 12px;
    color: var(--clr-text-muted)
}

.author-updated {
    font-size: 12px;
    color: var(--clr-text-muted)
}

.rating-stars-x2 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto
}

.star {
    font-size: 18px;
    color: var(--clr-prim)
}

.star.half {
    color: rgba(249, 194, 60, .45)
}

.rating-val {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-prim);
    margin-left: 4px
}

.section-x2 {
    margin-bottom: 36px;
    padding-top: 8px
}

.sec-title-x4 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--clr-prim);
    display: inline-block
}

.sec-desc-x1 {
    color: var(--clr-text-muted);
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.65
}

.table-scroll-x1 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border)
}

.info-table-x3 {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    font-size: 14px
}

.info-table-x3 th, .info-table-x3 td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    text-align: left
}

.info-table-x3 tr:last-child th, .info-table-x3 tr:last-child td {
    border-bottom: none
}

.info-table-x3 th {
    background: var(--clr-card2);
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 220px;
    white-space: nowrap
}

.info-table-x3 td {
    color: var(--clr-text);
    background: var(--clr-card)
}

.info-table-x3 tr:hover td {
    background: rgba(249, 194, 60, .04)
}

.tbl-link {
    color: var(--clr-prim);
    font-weight: 600
}

.tbl-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap
}

.tbl-cta-note {
    font-size: 12px;
    color: var(--clr-text-muted)
}

.pros-cons-grid-x1 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.pros-col-x3, .cons-col-x3 {
    flex: 1;
    min-width: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border)
}

.pc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .02em
}

.pros-head {
    background: rgba(46, 204, 113, .12);
    color: var(--clr-ok);
    border-bottom: 2px solid var(--clr-ok)
}

.cons-head {
    background: rgba(231, 76, 60, .1);
    color: var(--clr-err);
    border-bottom: 2px solid var(--clr-err)
}

.pc-icon {
    font-size: 18px
}

.pc-list {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--clr-card)
}

.pros-list li {
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: var(--clr-text)
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-ok);
    font-weight: 700
}

.cons-list li {
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: var(--clr-text)
}

.cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--clr-err);
    font-weight: 700
}

.mirror-table-x2 {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 14px
}

.mirror-table-x2 th, .mirror-table-x2 td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--clr-border);
    text-align: left
}

.mirror-table-x2 tr:last-child td {
    border-bottom: none
}

.mirror-table-x2 thead th {
    background: var(--clr-hdr);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.mirror-table-x2 tbody td {
    background: var(--clr-card);
    color: var(--clr-text)
}

.mirror-table-x2 tbody tr:hover td {
    background: var(--clr-card2)
}

.mirror-lnk {
    color: var(--clr-prim);
    font-weight: 500
}

.mirror-time-x3 {
    color: var(--clr-ok)
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600
}

.status-ok {
    background: rgba(46, 204, 113, .15);
    color: var(--clr-ok)
}

.status-warn {
    background: rgba(243, 156, 18, .15);
    color: var(--clr-warn)
}

.slots-grid-x4 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.slot-card-x5 {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 200px;
    max-width: calc(33.333% - 12px);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans)
}

.slot-card-x5:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.slot-img-x1 {
    width: 100%;
    height: 160px;
    object-fit: cover
}

.slot-info-x3 {
    padding: 14px 16px
}

.slot-name-x2 {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px
}

.slot-prov-x1 {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 12px
}

.slot-btn {
    width: 100%
}

.slots-slider-nav {
    display: none;
    justify-content: center;
    gap: 16px;
    margin-top: 16px
}

.slot-prev-x1, .slot-next-x1 {
    background: var(--clr-sec);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans)
}

.slot-prev-x1:hover, .slot-next-x1:hover {
    background: var(--clr-prim);
    color: #1a1200
}

.demo-wrap-x3 {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: #000;
    min-height: 360px
}

.demo-iframe-x2 {
    display: block;
    width: 100%;
    height: 520px;
    border: none
}

.demo-overlay-x1 {
    position: absolute;
    inset: 0;
    background: var(--clr-card);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

.demo-overlay-inner {
    text-align: center;
    padding: 32px
}

.demo-thumb {
    max-width: 280px;
    border-radius: var(--radius);
    margin: 0 auto 16px;
    border: 2px solid var(--clr-border)
}

.demo-overlay-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.demo-overlay-sub {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 20px
}

.demo-note {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-top: 12px
}

.demo-register-lnk {
    color: var(--clr-prim);
    font-weight: 600
}

.review-section-x1 {
}

.review-content-x3 {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text)
}

.review-content-x3 h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--clr-border)
}

.review-content-x3 h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 22px 0 10px
}

.review-content-x3 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-prim);
    margin: 18px 0 8px
}

.review-content-x3 p {
    margin-bottom: 16px
}

.review-content-x3 ul, .review-content-x3 ol {
    padding-left: 22px;
    margin-bottom: 16px
}

.review-content-x3 ul {
    list-style: disc
}

.review-content-x3 ol {
    list-style: decimal
}

.review-content-x3 li {
    margin-bottom: 6px
}

.review-content-x3 table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px
}

.review-content-x3 table th, .review-content-x3 table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left
}

.review-content-x3 table th {
    background: var(--clr-card2);
    color: var(--clr-text-muted);
    font-weight: 600
}

.review-content-x3 table td {
    background: var(--clr-card)
}

.review-content-x3 a {
    color: var(--clr-prim);
    font-weight: 500
}

.review-content-x3 blockquote {
    border-left: 3px solid var(--clr-prim);
    padding: 12px 18px;
    background: var(--clr-card2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    color: var(--clr-text-muted);
    font-style: italic
}

.review-content-x3 strong, .review-content-x3 b {
    color: #fff;
    font-weight: 600
}

.review-content-x3 em, .review-content-x3 i {
    color: var(--clr-prim);
    font-style: italic
}

.review-content-x3 hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

.faq-list-x2 {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item-x4 {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--trans)
}

.faq-item-x4:hover {
    border-color: rgba(249, 194, 60, .3)
}

.faq-q-x3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: var(--ff-main);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--trans)
}

.faq-q-x3:hover {
    color: var(--clr-prim)
}

.faq-q-x3[aria-expanded="true"] {
    color: var(--clr-prim)
}

.faq-arrow {
    font-size: 18px;
    flex-shrink: 0;
    transition: transform var(--trans)
}

.faq-q-x3[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg)
}

.faq-a-x3 {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    animation: fadeInDown .22s ease
}

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

.ftr-wrap-x1 {
    background: var(--clr-hdr);
    border-top: 1px solid var(--clr-border);
    margin-top: auto
}

.site-footer-x2 {
    padding: 0
}

.ftr-inner-x2 {
    padding: 40px 0 24px
}

.ftr-top-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.ftr-logo-col {
    flex: 1.5;
    min-width: 220px
}

.ftr-logo-img {
    height: 38px;
    width: auto;
    margin-bottom: 14px
}

.ftr-tagline {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 260px
}

.ftr-nav-col {
    flex: 1;
    min-width: 140px
}

.ftr-col-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px
}

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

.ftr-nav-lnk {
    font-size: 13px;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--trans)
}

.ftr-nav-lnk:hover {
    color: var(--clr-prim)
}

.ftr-payments-row, .ftr-providers-row {
    margin-bottom: 24px
}

.ftr-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.ftr-pay-badge, .ftr-prov-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap
}

.ftr-pay-badge {
    background: rgba(255, 255, 255, .07);
    color: var(--clr-text);
    border: 1px solid var(--clr-border)
}

.ftr-prov-badge {
    background: rgba(249, 194, 60, .07);
    color: var(--clr-text-muted);
    border: 1px solid rgba(249, 194, 60, .15)
}

.ftr-legal-row {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px
}

.ftr-legal-txt {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 10px
}

.ftr-legal-lnk {
    color: var(--clr-prim);
    text-decoration: none
}

.ftr-copy {
    font-size: 12px;
    color: rgba(154, 163, 176, .55);
    text-align: center
}

.widget-x7k {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a2030 0%, #262A34 100%);
    border-top: 2px solid var(--clr-prim);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.widget-x7k.visible {
    transform: translateY(0)
}

.widget-inner-x3 {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.widget-text-x2 {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.widget-bonus-x1 {
    font-size: 13px;
    color: var(--clr-text-muted);
    font-weight: 500
}

.widget-bonus-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-prim)
}

.widget-cta-x4 {
    font-size: 17px;
    padding: 13px 36px;
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(249, 194, 60, .35);
    text-decoration: none
}

.widget-close-x1 {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: var(--clr-text-muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans), color var(--trans);
    line-height: 1;
    padding: 0
}

.widget-close-x1:hover {
    background: rgba(231, 76, 60, .2);
    color: var(--clr-err)
}

.info-content-box {
    padding: 36px
}

.info-page-text-x1 h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--clr-border)
}

.info-page-text-x1 h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 18px 0 8px
}

.info-page-text-x1 p {
    font-size: 15px;
    color: var(--clr-text);
    line-height: 1.8;
    margin-bottom: 14px
}

.info-page-text-x1 ul, .info-page-text-x1 ol {
    padding-left: 20px;
    margin-bottom: 14px;
    color: var(--clr-text);
    font-size: 15px
}

.info-page-text-x1 ul {
    list-style: disc
}

.info-page-text-x1 ol {
    list-style: decimal
}

.info-page-text-x1 li {
    margin-bottom: 6px;
    line-height: 1.7
}

.info-page-text-x1 a {
    color: var(--clr-prim)
}

.info-page-text-x1 strong {
    color: #fff
}

.a7x2-hidden {
    display: none !important
}

.q9r4-placeholder {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wp-block-spacer {
    display: block
}

.elementor-widget-text-editor p {
    margin-bottom: 1em
}

@media (max-width: 900px) {
    .hdr-nav-wrap {
        display: none
    }

    .burger-btn-x5 {
        display: flex
    }

    .hdr-actions-wrap {
        gap: 8px
    }

    .hero-img-x1 {
        height: 340px
    }

    .hero-content-x5 {
        padding: 30px 30px
    }

    .hero-title-x6 {
        font-size: 28px
    }

    .slot-card-x5 {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px)
    }

    .pros-cons-grid-x1 {
        flex-direction: column
    }

    .ftr-top-row {
        gap: 24px
    }

    .content-box-x2 {
        padding: 22px 18px
    }
}

@media (max-width: 640px) {
    .hdr-actions-wrap .online-count-wrap {
        display: none
    }

    .hero-img-x1 {
        height: 260px
    }

    .hero-content-x5 {
        padding: 20px
    }

    .hero-title-x6 {
        font-size: 22px
    }

    .hero-desc {
        font-size: 14px
    }

    .hero-cta {
        font-size: 14px;
        padding: 12px 24px
    }

    .slots-grid-x4 {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch
    }

    .slot-card-x5 {
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start
    }

    .slots-slider-nav {
        display: flex
    }

    .ftr-logos-row {
        gap: 6px
    }

    .widget-x7k {
        gap: 12px;
        padding: 12px 16px
    }

    .widget-bonus-val {
        font-size: 16px
    }

    .widget-cta-x4 {
        font-size: 14px;
        padding: 11px 24px
    }

    .author-box-xb {
        flex-direction: column;
        align-items: flex-start
    }

    .rating-stars-x2 {
        margin-left: 0
    }

    .info-table-x3 th {
        width: 140px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

@media (max-width: 768px) {

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

    body {
        font-size: 15px;
    }

    .wp-site-blocks,
    .container,
    main,
    .main-content-x7,
    .content-box-x2 {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hdr-wrap-x8 {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .hdr-x7k2 {
        min-height: 58px;
        padding: 8px 0;
        gap: 10px;
    }

    .logo-img-x4 {
        height: 34px;
    }

    .hdr-nav-wrap,
    .online-count-wrap,
    .hdr-actions-wrap .btn {
        display: none;
    }

    .burger-btn-x5 {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #111c2d;
        border: 1px solid var(--clr-border);
        margin-left: auto;
    }

    .mobile-nav-x6 {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        padding: 16px 14px;
        overflow-y: auto;
        background: var(--clr-hdr);
    }

    .mobile-nav-x6.open {
        display: block;
    }

    .mobile-nav-list {
        gap: 8px;
    }

    .mobile-nav-list .nav-lnk-x1 {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        background: var(--clr-card);
        border: 1px solid var(--clr-border);
        border-radius: 12px;
        color: #fff;
    }

    .btn,
    .btn-sm,
    .btn-md,
    .btn-lg,
    .btn-prim,
    .btn-sec {
        width: 100%;
        min-height: 44px;
        padding: 11px 14px;
        white-space: normal;
        text-align: center;
    }

    .hero-img-x1 {
        height: 380px;
        object-position: center;
    }

    .hero-overlay-x4 {
        background: rgba(0, 10, 18, .78);
        justify-content: center;
        text-align: center;
    }

    .hero-content-x5 {
        width: 100%;
        max-width: 100%;
        padding: 40px 42px 70px;
    }

    .hero-sub {
        font-size: .7rem;
        line-height: 1.35;
    }

    .hero-title-x6 {
        font-size: 1.55rem;
        line-height: 1.16;
    }

    .hero-desc {
        max-width: 100%;
        font-size: .9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .hero-controls {
        bottom: 16px;
        gap: 12px;
    }

    .hero-btn-prev,
    .hero-btn-next {
        width: 34px;
        height: 34px;
    }

    .breadcrumbs-wrap-x9 {
        padding-top: 12px;
    }

    .breadcrumb-list {
        font-size: .78rem;
        line-height: 1.4;
    }

    .main-content-x7 {
        padding: 18px 0 42px;
    }

    .content-box-x2 {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .page-h1-x3 {
        font-size: 1.45rem;
        line-height: 1.22;
    }

    .author-box-xb {
        display: grid;
        grid-template-columns:1fr;
        gap: 12px;
        padding: 16px 14px;
        text-align: left;
    }

    .rating-stars-x2 {
        margin-left: 0;
    }

    .section-x2 {
        margin-bottom: 28px;
        padding-top: 4px;
    }

    .sec-title-x4 {
        font-size: 1.22rem;
        line-height: 1.28;
    }

    .sec-desc-x1 {
        font-size: .9rem;
        line-height: 1.65;
    }

    .table-scroll-x1 {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .info-table-x3,
    .mirror-table-x2 {
        min-width: 650px;
    }

    .info-table-x3 th,
    .info-table-x3 td,
    .mirror-table-x2 th,
    .mirror-table-x2 td {
        padding: 10px 12px;
        font-size: .82rem;
        white-space: nowrap;
    }

    .tbl-cta-row {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    .tbl-cta-note {
        text-align: center;
        line-height: 1.5;
    }

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

    .pros-col-x3,
    .cons-col-x3 {
        min-width: 0;
        width: 100%;
    }

    .pc-head {
        padding: 14px;
        font-size: .95rem;
    }

    .pc-list {
        padding: 14px;
    }

    .pros-list li,
    .cons-list li {
        font-size: .86rem;
        line-height: 1.55;
    }

    .slots-grid-x4 {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin-right: -14px;
        padding-right: 14px;
    }

    .slot-card-x5 {
        flex: 0 0 82%;
        min-width: 82%;
        max-width: 82%;
        scroll-snap-align: start;
        border-radius: 14px;
    }

    .slot-img-x1 {
        height: 170px;
    }

    .slot-info-x3 {
        padding: 14px;
    }

    .slots-slider-nav {
        display: none;
    }

    .review-content-x3 {
        font-size: .92rem;
        line-height: 1.72;
    }

    .review-content-x3 h2 {
        font-size: 1.22rem;
        line-height: 1.3;
    }

    .review-content-x3 h3 {
        font-size: 1.05rem;
    }

    .review-content-x3 p,
    .review-content-x3 li {
        font-size: .9rem;
    }

    .review-content-x3 table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .review-content-x3 table th,
    .review-content-x3 table td {
        padding: 10px 12px;
        font-size: .82rem;
    }

    .faq-list-x2 {
        gap: 10px;
    }

    .faq-item-x4 {
        border-radius: 14px;
    }

    .faq-q-x3 {
        padding: 14px;
        font-size: .9rem;
        line-height: 1.35;
    }

    .faq-a-x3 {
        padding: 0 14px 14px;
        font-size: .86rem;
        line-height: 1.65;
    }

    .ftr-inner-x2 {
        padding: 30px 0 22px;
    }

    .ftr-top-row {
        display: grid;
        grid-template-columns:1fr;
        gap: 22px;
        text-align: center;
    }

    .ftr-logo-img {
        margin: 0 auto 12px;
    }

    .ftr-tagline {
        max-width: 100%;
    }

    .ftr-nav-list {
        align-items: center;
    }

    .ftr-logos-row {
        justify-content: center;
    }

    .ftr-legal-txt {
        text-align: center;
    }

    .widget-x7k {
        padding: 10px 42px 10px 12px;
        gap: 10px;
    }

    .widget-inner-x3 {
        width: 100%;
        display: grid;
        grid-template-columns:1fr;
        gap: 8px;
        text-align: center;
    }

    .widget-bonus-x1 {
        font-size: .76rem;
    }

    .widget-bonus-val {
        font-size: .95rem;
    }

    .widget-cta-x4 {
        width: 100%;
        font-size: .86rem;
        min-height: 40px;
    }

    .widget-close-x1 {
        right: 8px;
    }

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

@media (max-width: 480px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-img-x1 {
        height: 340px;
    }

    .hero-content-x5 {
        padding: 32px 38px 64px;
    }

    .hero-title-x6 {
        font-size: 1.3rem;
    }

    .hero-desc {
        font-size: .84rem;
    }

    .content-box-x2 {
        padding: 18px 12px;
    }

    .page-h1-x3 {
        font-size: 1.3rem;
    }

    .slot-card-x5 {
        flex-basis: 88%;
        min-width: 88%;
        max-width: 88%;
    }

    .slot-img-x1 {
        height: 150px;
    }

    .sec-title-x4 {
        font-size: 1.12rem;
    }
}

@media (max-width: 768px) {

    .hero-slider-x2,
    .hero-slides-track,
    .hero-slide {
        width: 100%;
        overflow: hidden;
    }

    .hero-slide {
        min-width: 100%;
        position: relative;
    }

    .hero-img-x1 {
        width: 100%;
        height: 340px;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay-x4 {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 10, 18, .75);
    }

    .hero-content-x5 {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        text-align: center;
    }

    .hero-title-x6 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-cta {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-controls {
        width: 100%;
        left: 0;
        bottom: 15px;
        transform: none;
        justify-content: center;
    }

    .hero-btn-prev,
    .hero-btn-next {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .hero-dots {
        margin: 0 10px;
    }
}

.rp-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #101723;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.rp-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.rp-header__logo {
    flex-shrink: 0;
}

.rp-header__logo img {
    height: 42px;
    width: auto;
    display: block;
}

.rp-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.rp-header__nav a {
    color: #d8deea;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.rp-header__nav a:hover {
    background: #182234;
    color: #ffc83d;
}

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

.rp-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8fa0b8;
    font-size: 13px;
}

.rp-online span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28d96c;
}

.rp-online strong {
    color: #fff;
}

.rp-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: .25s;
}

.rp-btn--dark {
    background: #202938;
    color: #fff;
}

.rp-btn--gold {
    background: #ffc83d;
    color: #111;
}

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

.rp-burger {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #182234;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.rp-burger span {
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
}

.rp-mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    .rp-header__container {
        padding: 10px 14px;
        gap: 10px;
    }

    .rp-header__logo img {
        height: 34px;
    }

    .rp-header__nav,
    .rp-online {
        display: none;
    }

    .rp-header__actions {
        margin-left: auto;
        gap: 6px;
    }

    .rp-header__actions .rp-btn {
        height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .rp-burger {
        display: flex;
    }

    .rp-mobile-menu {
        position: fixed;
        top: 63px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #101723;
        padding: 16px;
        overflow: auto;
    }

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

    .rp-mobile-menu a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 16px;
        margin-bottom: 8px;
        background: #182234;
        border-radius: 14px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }

    .rp-mobile-menu__buttons {
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }

    .rp-mobile-menu__buttons .rp-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .rp-mobile-menu {
        display: none;
    }

    .rp-mobile-menu.active {
        display: block !important;
    }

    body.menu-open {
        overflow: hidden;
    }
}

.new-rp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #0b1320;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

body {
    padding-top: 72px;
}

.new-rp-header__inner {
    max-width: 1180px;
    height: 72px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.new-rp-header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.new-rp-header__logo img {
    height: 42px;
    width: auto;
    display: block;
}

.new-rp-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.new-rp-header__nav a {
    color: #dce3ef;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 12px;
}

.new-rp-header__nav a:hover {
    background: #162235;
    color: #f9c23c;
}

.new-rp-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-rp-header__btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.new-rp-header__btn--dark {
    background: #202a3a;
    color: #fff;
}

.new-rp-header__btn--gold {
    background: #f9c23c;
    color: #151000;
}

.new-rp-burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: #162235;
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
}

.new-rp-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 2px;
    transition: .25s;
}

.new-rp-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.new-rp-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.new-rp-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.new-rp-mobile {
    display: none;
}

@media (max-width: 768px) {

    body {
        padding-top: 60px;
    }

    .new-rp-header__inner {
        height: 60px;
        padding: 0 12px;
        gap: 8px;
    }

    .new-rp-header__logo img {
        height: 34px;
    }

    .new-rp-header__nav {
        display: none;
    }

    .new-rp-header__actions {
        margin-left: auto;
        gap: 6px;
    }

    .new-rp-header__actions .new-rp-header__btn {
        height: 34px;
        padding: 0 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    .new-rp-burger {
        display: block;
    }

    .new-rp-mobile {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999998;
        display: none;
        padding: 14px;
        background: #07101b;
        overflow-y: auto;
    }

    .new-rp-mobile.is-open {
        display: block;
    }

    .new-rp-mobile a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 16px;
        margin-bottom: 8px;
        border-radius: 14px;
        background: #101b2b;
        border: 1px solid #253247;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 800;
    }

    .new-rp-mobile__actions {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .new-rp-mobile__actions .new-rp-header__btn {
        width: 100%;
        height: 48px;
        font-size: 15px;
    }

    body.new-rp-menu-open {
        overflow: hidden;
    }
}
