@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: #1f668d;
    color: #e8f4fb;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: #ffd060
}

button {
    cursor: pointer;
    font-family: inherit
}

ul, ol {
    list-style: none
}

:root {
    --clr-bg: #1f668d;
    --clr-nav: #2d6e9a;
    --clr-nav-dark: #1a4a6b;
    --clr-surface: #184f73;
    --clr-surface-2: #1c5d82;
    --clr-border: rgba(255, 255, 255, 0.12);
    --clr-gold: #ffaf08;
    --clr-gold-hover: #ffd060;
    --clr-white: #e8f4fb;
    --clr-white-muted: rgba(232, 244, 251, 0.7);
    --clr-text-light: #f5f5f5;
    --clr-green: #27c96a;
    --clr-red: #e84545;
    --clr-star: #ffaf08;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-btn: 0 2px 12px rgba(255, 175, 8, 0.35);
    --transition: 0.25s ease;
}

.x4k9q-wrap {
    display: none;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: -9999px
}

.p8r3-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px
}

.x7hd-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35)
}

.x7hd-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 68px
}

.x7hd-logo-wrap a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.x7hd-logo-img {
    height: 44px;
    width: auto;
    border-radius: 6px
}

.x7hd-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: -.5px
}

.x7hd-logo-text span {
    color: var(--clr-gold)
}

.x7hd-review-count {
    font-size: .72rem;
    background: rgba(255, 175, 8, .18);
    border: 1px solid rgba(255, 175, 8, .35);
    border-radius: 20px;
    padding: 2px 8px;
    color: var(--clr-gold);
    white-space: nowrap;
    margin-left: 6px
}

.x7hd-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center
}

.x7hd-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-white);
    font-size: .875rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition)
}

.x7hd-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-gold)
}

.x7hd-nav a svg {
    flex-shrink: 0
}

.x7hd-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer
}

.btn-primary {
    background: var(--clr-gold);
    color: #1a1a1a;
    box-shadow: var(--shadow-btn)
}

.btn-primary:hover {
    background: var(--clr-gold-hover);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 175, 8, .5)
}

.btn-outline {
    background: transparent;
    color: var(--clr-text-light);
    border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, .7)
}

.btn-sm {
    padding: 6px 14px;
    font-size: .8rem
}

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

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

.x7hd-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: all var(--transition)
}

.x7hd-burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg)
}

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

.x7hd-burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg)
}

.x7hd-mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--clr-nav-dark);
    z-index: 99;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.x7hd-mobile-nav.open {
    display: flex
}

.x7hd-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-white);
    font-size: .95rem;
    font-weight: 500;
    transition: background var(--transition)
}

.x7hd-mobile-nav a:hover {
    background: rgba(255, 255, 255, .1)
}

.x7hd-mobile-nav-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--clr-border);
    padding-top: 12px
}

.x7hd-mobile-nav-btns .btn {
    flex: 1;
    justify-content: center
}

.x9ve-hero {
    position: relative;
    overflow: hidden;
    padding: 0
}

.x9ve-hero-banner {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #0d3d5c 0%, #1f668d 50%, #0a2d47 100%);
    display: flex;
    align-items: stretch
}

.x9ve-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/plinko-banner.png');
    background-size: cover;
    background-position: center top;
    opacity: .45
}

.x9ve-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 40, 60, .92) 0%, rgba(13, 40, 60, .5) 60%, transparent 100%)
}

.x9ve-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 0 50px;
    width: 100%
}

.x9ve-hero-text {
    max-width: 600px
}

.x9ve-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 175, 8, .2);
    border: 1px solid rgba(255, 175, 8, .4);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-gold);
    margin-bottom: 16px;
    letter-spacing: .3px
}

.x9ve-hero-text h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
    margin-bottom: 14px
}

.x9ve-hero-text h1 span {
    color: var(--clr-gold)
}

.x9ve-hero-text p {
    font-size: 1.05rem;
    color: var(--clr-white-muted);
    margin-bottom: 26px;
    max-width: 480px;
    line-height: 1.65
}

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

.x9ve-info-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 28px 0 36px;
    margin-top: -2px
}

.xq7r-rating-summary {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card)
}

.xq7r-overall {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--clr-border)
}

.xq7r-score-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1
}

.xq7r-score-info {
    flex: 1
}

.xq7r-stars-row {
    display: flex;
    gap: 3px;
    margin-bottom: 4px
}

.xq7r-star {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .2)
}

.xq7r-star.filled {
    color: var(--clr-star)
}

.xq7r-score-label {
    font-size: .78rem;
    color: var(--clr-white-muted)
}

.xq7r-dist-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px
}

.xq7r-dist-label {
    font-size: .78rem;
    color: var(--clr-white-muted);
    width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3px
}

.xq7r-dist-bar-wrap {
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    overflow: hidden
}

.xq7r-dist-bar {
    height: 100%;
    background: var(--clr-gold);
    border-radius: 4px;
    transition: width 1s ease
}

.xq7r-dist-count {
    font-size: .75rem;
    color: var(--clr-white-muted);
    width: 20px;
    text-align: right;
    flex-shrink: 0
}

.xpf8-params {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card)
}

.xpf8-params-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 16px
}

.xpf8-param-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px
}

.xpf8-param-label {
    font-size: .8rem;
    color: var(--clr-white-muted);
    width: 130px;
    flex-shrink: 0
}

.xpf8-param-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    overflow: hidden
}

.xpf8-param-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #3498db, var(--clr-gold));
    transition: width 1.1s ease
}

.xpf8-param-val {
    font-size: .8rem;
    font-weight: 600;
    color: var(--clr-gold);
    width: 28px;
    text-align: right;
    flex-shrink: 0
}

.xgi4-info {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card)
}

.xgi4-info-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.xgi4-info-btn {
    background: none;
    border: none;
    color: var(--clr-gold);
    font-size: .78rem;
    cursor: pointer;
    text-decoration: underline dotted;
    font-family: inherit
}

.xgi4-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px
}

.xgi4-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .07)
}

.xgi4-item-label {
    font-size: .7rem;
    color: var(--clr-white-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.xgi4-item-val {
    font-size: .83rem;
    font-weight: 600;
    color: var(--clr-white)
}

.xgi4-item-val.gold {
    color: var(--clr-gold)
}

.xpc2-proscons {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card)
}

.xpc2-proscons-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 16px
}

.xpc2-cols {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.xpc2-col-head {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.xpc2-col-head.pros {
    color: var(--clr-green)
}

.xpc2-col-head.cons {
    color: var(--clr-red)
}

.xpc2-list li {
    font-size: .82rem;
    color: var(--clr-white-muted);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4
}

.xpc2-list li:last-child {
    border-bottom: none
}

.xpc2-list li::before {
    flex-shrink: 0;
    font-size: .9rem;
    margin-top: 1px
}

.xpc2-pros li::before {
    content: '✓';
    color: var(--clr-green)
}

.xpc2-cons li::before {
    content: '✗';
    color: var(--clr-red)
}


.xst9-section {
    padding: 32px 0
}

.xst9-section-head {
    margin-bottom: 24px
}

.xst9-section-head h2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 6px
}

.xst9-section-head p {
    font-size: .9rem;
    color: var(--clr-white-muted)
}


.xbb3-bonus-banner {
    background: linear-gradient(135deg, #0a3d5a 0%, #1a5a8a 50%, #c47f00 100%);
    border: 1.5px solid rgba(255, 175, 8, .5);
    border-radius: var(--radius-lg);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 10px 0 28px;
    box-shadow: 0 4px 24px rgba(255, 175, 8, .15)
}

.xbb3-bonus-banner-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 4px
}

.xbb3-bonus-banner-text p {
    font-size: .85rem;
    color: var(--clr-white-muted)
}

.xbb3-bonus-banner-text p strong {
    color: var(--clr-gold)
}

.xlr5-form-wrap {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card)
}

.xlr5-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px
}

.xlr5-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

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

.xlr5-field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-white-muted);
    letter-spacing: .3px
}

.xlr5-field input, .xlr5-field textarea, .xlr5-field select {
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--clr-white);
    font-size: .9rem;
    font-family: inherit;
    transition: border-color var(--transition)
}

.xlr5-field input:focus, .xlr5-field textarea:focus, .xlr5-field select:focus {
    outline: none;
    border-color: var(--clr-gold)
}

.xlr5-field textarea {
    resize: vertical;
    min-height: 100px
}

.xlr5-field input::placeholder, .xlr5-field textarea::placeholder {
    color: rgba(232, 244, 251, .35)
}

.xlr5-field select option {
    background: #1a4a6b;
    color: var(--clr-white)
}

.xlr5-param-ratings {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, .1)
}

.xlr5-param-rate-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-white-muted);
    grid-column: 1/-1;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.xlr5-param-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.xlr5-param-item span {
    font-size: .78rem;
    color: var(--clr-white-muted)
}

.xlr5-star-picker {
    display: flex;
    gap: 4px
}

.xlr5-star-picker .sp-star {
    font-size: 1.3rem;
    cursor: pointer;
    color: rgba(255, 255, 255, .2);
    transition: color var(--transition), transform var(--transition)
}

.xlr5-star-picker .sp-star:hover, .xlr5-star-picker .sp-star.active {
    color: var(--clr-star);
    transform: scale(1.15)
}

.xlr5-submit-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px
}

.xlr5-success-msg {
    display: none;
    background: rgba(39, 201, 106, .15);
    border: 1px solid rgba(39, 201, 106, .4);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--clr-green);
    font-weight: 500;
    font-size: .9rem;
    text-align: center
}

.xlr5-success-msg.show {
    display: block
}

.xur1-reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 28px
}

.xur1-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition)
}

.xur1-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.xur1-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px
}

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

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

.xur1-author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.xur1-author-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--clr-white)
}

.xur1-country {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .74rem;
    color: var(--clr-white-muted)
}

.xur1-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover
}

.xur1-date {
    font-size: .74rem;
    color: var(--clr-white-muted);
    margin-top: 1px
}

.xur1-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0
}

.xur1-stars {
    display: flex;
    gap: 2px
}

.xur1-star {
    font-size: 1rem;
    color: rgba(255, 255, 255, .2)
}

.xur1-star.filled {
    color: var(--clr-star)
}

.xur1-rating-num {
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-gold)
}

.xur1-rating-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: .7rem;
    color: var(--clr-white-muted);
    cursor: pointer;
    transition: all var(--transition)
}

.xur1-rating-toggle:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold)
}

.xur1-rating-details {
    display: none;
    margin-top: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08)
}

.xur1-rating-details.open {
    display: block
}

.xur1-rd-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px
}

.xur1-rd-row:last-child {
    margin-bottom: 0
}

.xur1-rd-label {
    font-size: .72rem;
    color: var(--clr-white-muted);
    width: 110px;
    flex-shrink: 0
}

.xur1-rd-stars {
    display: flex;
    gap: 2px
}

.xur1-rd-star {
    font-size: .8rem;
    color: rgba(255, 255, 255, .2)
}

.xur1-rd-star.filled {
    color: var(--clr-star)
}

.xur1-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 8px
}

.xur1-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: var(--clr-white-muted);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, .07);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.xur1-source a {
    color: var(--clr-gold);
    font-weight: 600
}

.xur1-body {
    font-size: .88rem;
    color: var(--clr-white-muted);
    line-height: 1.65
}

.xur1-text-short {
    display: block
}

.xur1-text-more {
    display: none
}

.xur1-read-more {
    display: none;
    background: none;
    border: none;
    color: var(--clr-gold);
    font-size: .8rem;
    margin-top: 6px;
    cursor: pointer;
    padding: 0;
    font-family: inherit
}

.xur1-read-more.visible {
    display: inline
}

.xur1-has-more .xur1-text-short::after {
    content: '...'
}

.xur1-has-more.xur1-expanded .xur1-text-short {
    display: none
}

.xur1-has-more.xur1-expanded .xur1-text-more {
    display: block
}

.xur1-has-more.xur1-expanded .xur1-read-more {
    content: 'Свернуть'
}

.xur1-proscons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--clr-border)
}

.xur1-pc-head {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px
}

.xur1-pc-head.p {
    color: var(--clr-green)
}

.xur1-pc-head.c {
    color: var(--clr-red)
}

.xur1-pc-list li {
    font-size: .78rem;
    color: var(--clr-white-muted);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 3px 0;
    line-height: 1.35
}

.xur1-pc-list.pros li::before {
    content: '✓';
    color: var(--clr-green);
    flex-shrink: 0
}

.xur1-pc-list.cons li::before {
    content: '✗';
    color: var(--clr-red);
    flex-shrink: 0
}

.xur1-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--clr-border)
}

.xur1-vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--clr-white-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit
}

.xur1-vote-btn:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--clr-white)
}

.xur1-vote-btn.liked {
    border-color: var(--clr-green);
    color: var(--clr-green)
}

.xur1-vote-btn.disliked {
    border-color: var(--clr-red);
    color: var(--clr-red)
}

.xur1-reply-btn {
    margin-left: auto;
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--clr-white-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit
}

.xur1-reply-btn:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold)
}

.xur1-reply-form {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, .1)
}

.xur1-reply-form.open {
    display: block
}

.xur1-reply-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--clr-white);
    font-size: .85rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px
}

.xur1-reply-form textarea:focus {
    outline: none;
    border-color: var(--clr-gold)
}

.xur1-reply-form textarea::placeholder {
    color: rgba(232, 244, 251, .3)
}

.xur1-reply-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.xsc7-screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.xsc7-screenshot {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/9;
    cursor: pointer;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition)
}

.xsc7-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.xsc7-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.xsc7-caption {
    font-size: .78rem;
    color: var(--clr-white-muted);
    text-align: center;
    margin-top: 6px
}

.x3lk-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.x3lk-lightbox.open {
    display: flex
}

.x3lk-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .8)
}

.x3lk-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition)
}

.x3lk-close:hover {
    background: rgba(255, 255, 255, .25)
}

.xcb6-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card)
}

.xcb6-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 24px
}

.xcb6-author-ava {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--clr-gold);
    flex-shrink: 0;
    background: var(--clr-nav);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-weight: 700;
    font-size: 1.1rem
}

.xcb6-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.xcb6-author-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--clr-white)
}

.xcb6-author-role {
    font-size: .78rem;
    color: var(--clr-white-muted)
}

.xcb6-author-links {
    display: flex;
    gap: 10px;
    margin-left: auto
}

.xcb6-author-links a {
    font-size: .78rem;
    color: var(--clr-gold);
    text-decoration: underline dotted
}

.xcb6-body h1, .xcb6-body h2, .xcb6-body h3, .xcb6-body h4 {
    color: var(--clr-white);
    margin: 1.4em 0 .6em;
    font-weight: 700;
    line-height: 1.3
}

.xcb6-body h1 {
    font-size: 1.6rem
}

.xcb6-body h2 {
    font-size: 1.3rem;
    padding-bottom: .4em;
    border-bottom: 1px solid var(--clr-border)
}

.xcb6-body h3 {
    font-size: 1.1rem
}

.xcb6-body p {
    color: var(--clr-white-muted);
    line-height: 1.75;
    margin-bottom: .9em
}

.xcb6-body a {
    color: var(--clr-gold);
    text-decoration: underline dotted
}

.xcb6-body a:hover {
    color: var(--clr-gold-hover)
}

.xcb6-body strong, .xcb6-body b {
    color: var(--clr-white);
    font-weight: 600
}

.xcb6-body em, .xcb6-body i {
    color: var(--clr-white-muted);
    font-style: italic
}

.xcb6-body ul, .xcb6-body ol {
    padding-left: 1.4em;
    margin-bottom: .9em;
    color: var(--clr-white-muted)
}

.xcb6-body ul {
    list-style: disc
}

.xcb6-body ol {
    list-style: decimal
}

.xcb6-body li {
    margin-bottom: .35em;
    line-height: 1.6
}

.xcb6-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .9rem
}

.xcb6-body table th, .xcb6-body table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .15)
}

.xcb6-body table th {
    background: rgba(255, 255, 255, .08);
    color: var(--clr-white);
    font-weight: 600
}

.xcb6-body table td {
    color: var(--clr-white-muted)
}

.xcb6-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.xcb6-body blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: .8em 1.2em;
    margin: 1em 0;
    background: rgba(255, 175, 8, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-white-muted);
    font-style: italic
}

.xcb6-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.6em 0
}

.xcb6-body dl dt {
    font-weight: 700;
    color: var(--clr-white);
    margin-top: 1em
}

.xcb6-body dl dd {
    color: var(--clr-white-muted);
    margin-left: 1em;
    margin-bottom: .5em
}

.xcb6-body pre, .xcb6-body code {
    background: rgba(0, 0, 0, .3);
    border-radius: 4px;
    font-family: monospace;
    font-size: .85em;
    color: #a8d8f0
}

.xcb6-body pre {
    padding: 1em;
    overflow-x: auto;
    margin: 1em 0
}

.xcb6-body code {
    padding: .15em .4em
}

.xmd9-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 16px
}

.xmd9-modal-overlay.open {
    display: flex
}

.xmd9-modal {
    background: var(--clr-nav-dark);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6)
}

.xmd9-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .08);
    border: none;
    color: var(--clr-white);
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.xmd9-modal-close:hover {
    background: rgba(255, 255, 255, .18)
}

.xmd9-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 18px
}

.xmd9-info-full-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.xmd9-info-item {
    padding: 10px 12px;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .07)
}

.xmd9-info-item-label {
    font-size: .7rem;
    color: var(--clr-white-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px
}

.xmd9-info-item-val {
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-white)
}

.xwg0-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: linear-gradient(90deg, var(--clr-nav-dark) 0%, #0d3d5c 100%);
    border-top: 2px solid var(--clr-gold);
    padding: 10px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4)
}

.xwg0-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.xwg0-widget-text {
    font-size: .88rem;
    color: var(--clr-white)
}

.xwg0-widget-text strong {
    color: var(--clr-gold)
}

.xwg0-widget a {
    color: inherit;
    text-decoration: none
}

.xft1-footer {
    background: var(--clr-nav);
    padding: 40px 0 20px;
    margin-bottom: 58px
}

.xft1-footer-grid {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 28px
}

.xft1-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.xft1-footer-logo img {
    height: 40px;
    width: auto;
    border-radius: 6px
}

.xft1-footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white)
}

.xft1-footer-logo-text span {
    color: var(--clr-gold)
}

.xft1-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center
}

.xft1-footer-nav a {
    font-size: .82rem;
    color: var(--clr-white-muted);
    padding: 4px 10px;
    border-radius: 4px;
    transition: color var(--transition)
}

.xft1-footer-nav a:hover {
    color: var(--clr-gold)
}

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

.xft1-trust-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--clr-white-muted)
}

.xft1-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin-bottom: 18px
}

.xft1-legal {
    font-size: .74rem;
    color: rgba(232, 244, 251, .45);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.xft1-copyright {
    font-size: .78rem;
    color: rgba(232, 244, 251, .5);
    text-align: center;
    margin-top: 12px
}

.xfq2-faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden
}

.xfq2-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    color: var(--clr-white);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    transition: background var(--transition)
}

.xfq2-faq-question:hover {
    background: rgba(255, 255, 255, .05)
}

.xfq2-faq-arrow {
    flex-shrink: 0;
    font-size: .8rem;
    transition: transform var(--transition);
    color: var(--clr-gold)
}

.xfq2-faq-item.open .xfq2-faq-arrow {
    transform: rotate(180deg)
}

.xfq2-faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: .88rem;
    color: var(--clr-white-muted);
    line-height: 1.7
}

.xfq2-faq-item.open .xfq2-faq-answer {
    display: block
}

.xdv7-separator {
    height: 1px;
    background: var(--clr-border);
    margin: 8px 0
}

.xta2-text-center {
    text-align: center
}

.xta2-mt1 {
    margin-top: 8px
}

.xta2-mt2 {
    margin-top: 16px
}

.xta2-mt3 {
    margin-top: 24px
}

.xta2-mb2 {
    margin-bottom: 16px
}

.xta2-mb3 {
    margin-bottom: 24px
}

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

.xani-fade {
    animation: xfadin .5s ease both
}

.xani-delay1 {
    animation-delay: .1s
}

.xani-delay2 {
    animation-delay: .2s
}

.xani-delay3 {
    animation-delay: .3s
}

.xani-delay4 {
    animation-delay: .4s
}

.wp-block-group, .wp-block-columns, .elementor-element {
    display: contents
}

.entry-content, .post-content, .single-post-content {
    display: contents
}

.wp-pagenavi {
    display: none
}

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

    .x7hd-burger {
        display: flex
    }

    .x7hd-header-inner {
        grid-template-columns:auto 1fr auto
    }

    .x9ve-info-grid {
        grid-template-columns:1fr
    }

    .xsc7-screenshots-grid {
        grid-template-columns:1fr 1fr
    }

    .xft1-footer-grid {
        grid-template-columns:1fr;
        text-align: center
    }

    .xft1-footer-nav {
        justify-content: center
    }

    .xft1-trust-logos {
        justify-content: center
    }

    .xft1-footer-logo {
        justify-content: center
    }

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

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

@media (max-width: 640px) {
    .x7hd-actions .btn-outline {
        display: none
    }

    .xsc7-screenshots-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory
    }

    .xsc7-screenshot {
        flex-shrink: 0;
        width: 85vw;
        scroll-snap-align: start
    }

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

    .xur1-reviews-grid {
        grid-template-columns:1fr
    }

    .xur1-proscons {
        grid-template-columns:1fr
    }

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

    .xmd9-info-full-grid {
        grid-template-columns:1fr
    }

    .xbb3-bonus-banner {
        flex-direction: column;
        text-align: center
    }

    .x9ve-hero-btns {
        flex-direction: column
    }

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

    body {
        font-size: 15px
    }

    .xcb6-content {
        padding: 20px
    }

    .xlr5-form-wrap {
        padding: 20px
    }

    .xlr5-param-ratings {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 380px) {
    .xgi4-grid {
        grid-template-columns:1fr
    }

    .xlr5-param-ratings {
        grid-template-columns:1fr
    }
}

.container.msjs {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 16px 56px;
    background: rgba(13, 30, 43, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.container.msjs h1,
.container.msjs h2,
.container.msjs h3 {
    color: #fff;
    letter-spacing: .2px;
}

.container.msjs h1 {
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 14px;
}

.container.msjs h2 {
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    font-weight: 850;
    line-height: 1.2;
    margin: 26px 0 12px;
}

.container.msjs h3 {
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    font-weight: 850;
    line-height: 1.25;
    margin: 18px 0 10px;
}

.container.msjs p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.container.msjs a {
    color: #ffaf08;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity .22s ease, color .22s ease;
}

.container.msjs a:hover {
    opacity: .9;
    color: #ffd27a
}

.container.msjs ul,
.container.msjs ol {
    margin: 0 0 14px;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.container.msjs ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.container.msjs ul > li {
    position: relative;
    padding: 14px 14px 14px 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    line-height: 1.55;
    overflow: hidden;
}

.container.msjs ul > li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(255, 175, 8, 0.18);
    border: 1px solid rgba(255, 175, 8, 0.35);
    box-shadow: 0 6px 18px rgba(255, 175, 8, 0.12);
}

.container.msjs ul > li::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffaf08;
}

.container.msjs ol {
    list-style: none;
    padding-left: 0;
    counter-reset: step;
    display: grid;
    gap: 10px;
}

.container.msjs ol > li {
    counter-increment: step;
    position: relative;
    padding: 14px 14px 14px 52px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    line-height: 1.55;
}

.container.msjs ol > li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    color: #0d1e2b;
    background: #ffaf08;
    box-shadow: 0 10px 22px rgba(255, 175, 8, 0.18);
}

.container.msjs img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.container.msjs p img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.container.msjs blockquote {
    margin: 14px 0;
    padding: 12px 14px 12px 16px;
    border-left: 3px solid #ffaf08;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.container.msjs table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(13, 30, 43, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: 14px 0 18px;
}

.container.msjs table th {
    background: #2d6e9a;
    color: #fff;
    font-weight: 800;
    text-align: left;
    padding: 12px 14px;
    font-size: 0.9rem;
}

.container.msjs table td {
    padding: 11px 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.container.msjs table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

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

@media (max-width: 900px) {
    .container.msjs {
        padding: 32px 14px 44px;
    }

    .container.msjs ul {
        gap: 9px
    }

    .container.msjs ul > li {
        padding: 12px 12px 12px 40px;
    }

    .container.msjs ol > li {
        padding: 12px 12px 12px 48px;
    }
}

@media (max-width: 600px) {
    .container.msjs {
        padding: 22px 12px 34px;
        border-radius: 14px;
    }

    .container.msjs h2 {
        margin-top: 22px
    }

    .container.msjs p,
    .container.msjs ul,
    .container.msjs ol {
        font-size: 0.94rem;
    }

    .container.msjs ul > li,
    .container.msjs ol > li {
        border-radius: 12px;
    }

    .container.msjs ul > li::before {
        top: 12px
    }

    .container.msjs ul > li::after {
        top: 18px
    }

    .container.msjs p img {
        height: 34px;
        margin-left: 6px;
    }
}

@media (max-width: 380px) {
    .container.msjs {
        padding: 18px 10px 28px;
    }

    .container.msjs p img {
        height: 30px;
    }
}