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

html {
    scroll-behavior: smooth;
    background: #1E101E
}

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

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

a {
    color: #FFE600;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #fff
}

ul {
    list-style: none
}

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

:root {
    --clr-header: #05071A;
    --clr-footer: #05071A;
    --clr-bg: #1E101E;
    --clr-bg2: #120A12;
    --clr-card: #0e0718;
    --clr-primary: #FFE600;
    --clr-secondary: #26293A;
    --clr-text: #e8e0ef;
    --clr-text-muted: #9b90aa;
    --clr-border: #2a2040;
    --clr-green: #2ecc71;
    --clr-red: #e74c3c;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: .25s ease;
}

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

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

.section-pad {
    padding: 64px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .03em;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
    text-decoration: none
}

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

.btn-primary {
    background: var(--clr-primary);
    color: #05071A
}

.btn-primary:hover {
    background: #fff176;
    color: #05071A
}

.btn-secondary {
    background: var(--clr-secondary);
    color: var(--clr-text)
}

.btn-secondary:hover {
    background: #363a52;
    color: #fff
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem
}

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

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px
}

.header-logo img {
    height: 44px;
    width: auto
}

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

.header-nav a {
    color: #c5bdd4;
    font-size: .87rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    gap: 5px
}

.header-nav a:hover, .header-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.nav-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 4px 12px
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 2s infinite
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e0ef;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--clr-header);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 6px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: #c5bdd4;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .2s
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.mobile-nav-actions {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 8px
}

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

.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: #000
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    z-index: 1
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 7, 26, .85) 40%, rgba(5, 7, 26, .2))
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px
}

.hero-badge {
    display: inline-block;
    background: var(--clr-primary);
    color: #05071A;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 28px;
    line-height: 1.6
}

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

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5
}

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

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px)
}

.hero-arrow:hover {
    background: rgba(255, 230, 0, .25)
}

.hero-prev {
    left: 16px
}

.hero-next {
    right: 16px
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: .95rem;
    margin-bottom: 36px
}

.section-header {
    margin-bottom: 36px
}

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

.pros-block, .cons-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 28px;
    overflow: hidden
}

.pros-block {
    border-top: 3px solid var(--clr-green)
}

.cons-block {
    border-top: 3px solid var(--clr-red)
}

.pros-block-title, .cons-block-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px
}

.pros-block-title {
    color: var(--clr-green)
}

.cons-block-title {
    color: var(--clr-red)
}

.pc-icon {
    width: 22px;
    height: 22px
}

.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .9rem;
    color: var(--clr-text)
}

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

.pc-list li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 5px
}

.pros-block .pc-list li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green)
}

.cons-block .pc-list li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-red)
}

.mirrors-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 32px;
    overflow: hidden
}

.mirrors-datetime {
    font-size: .83rem;
    color: var(--clr-text-muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.mirrors-datetime strong {
    color: var(--clr-primary)
}

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px
}

thead th {
    background: var(--clr-secondary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em
}

thead th:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm)
}

thead th:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background .2s
}

tbody tr:hover {
    background: rgba(255, 255, 255, .03)
}

tbody td {
    padding: 13px 16px;
    font-size: .88rem;
    color: var(--clr-text);
    vertical-align: middle
}

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

.status-active {
    background: rgba(46, 204, 113, .15);
    color: #2ecc71
}

.status-inactive {
    background: rgba(231, 76, 60, .15);
    color: #e74c3c
}

.mirror-link {
    color: var(--clr-primary);
    font-weight: 500
}

.mirror-link:hover {
    text-decoration: underline
}

.screenshots-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 32px
}

.screenshots-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 14px
}

.screenshot-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5)
}

.screenshot-item img {
    width: 100%;
    height: 140px;
    object-fit: cover
}

.screenshots-slider-track {
    display: none
}

.app-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 32px
}

.app-block-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: start
}

.app-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: #fff;
    transition: background .2s, border-color .2s;
    text-decoration: none
}

.app-btn:hover {
    background: #363a52;
    border-color: var(--clr-primary);
    color: #fff
}

.app-btn-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.app-btn-label {
    font-size: .7rem;
    color: var(--clr-text-muted);
    line-height: 1.2
}

.app-btn-store {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2
}

.wheel-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 40px;
    text-align: center
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 230, 0, .2)
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--clr-primary);
    filter: drop-shadow(0 2px 6px rgba(255, 230, 0, .5))
}

.wheel-spin-btn {
    background: var(--clr-primary);
    color: #05071A;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    letter-spacing: .04em;
    text-transform: uppercase
}

.wheel-spin-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 230, 0, .35)
}

.wheel-spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.wheel-result {
    display: none;
    background: rgba(255, 230, 0, .08);
    border: 1px solid rgba(255, 230, 0, .25);
    border-radius: var(--radius);
    padding: 20px 28px;
    max-width: 380px;
    text-align: center
}

.wheel-result.show {
    display: block;
    animation: fadeInUp .4s ease
}

.wheel-result-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 8px
}

.wheel-result-text {
    color: var(--clr-text);
    font-size: .95rem;
    margin-bottom: 16px
}

.wheel-result-lose {
    background: rgba(231, 76, 60, .08);
    border-color: rgba(231, 76, 60, .25)
}

.wheel-result-lose .wheel-result-title {
    color: #e74c3c
}

.review-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 40px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border)
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-secondary);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-primary)
}

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

.author-bio {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px
}

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

.author-links a {
    font-size: .8rem;
    color: var(--clr-primary)
}

.review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin: 1.4em 0 .6em;
    font-weight: 700;
    line-height: 1.3
}

.review-content h2 {
    font-size: 1.45rem
}

.review-content h3 {
    font-size: 1.2rem
}

.review-content h4 {
    font-size: 1rem
}

.review-content p {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 1em;
    font-size: .95rem
}

.review-content ul, .review-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em
}

.review-content ul li {
    list-style: disc;
    color: var(--clr-text);
    padding: .25em 0;
    font-size: .95rem
}

.review-content ol li {
    list-style: decimal;
    color: var(--clr-text);
    padding: .25em 0;
    font-size: .95rem
}

.review-content a {
    color: var(--clr-primary);
    text-decoration: underline
}

.review-content strong {
    color: #fff;
    font-weight: 700
}

.review-content em {
    color: var(--clr-text-muted);
    font-style: italic
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(255, 230, 0, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1em 0
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0
}

.review-content table th, .review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .88rem
}

.review-content table th {
    background: var(--clr-secondary);
    color: #fff;
    text-align: left
}

.review-content table td {
    color: var(--clr-text)
}

.review-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1em 0
}

.comments-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 32px
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px
}

.comment-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    padding: 16px 20px
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.comment-author {
    font-weight: 700;
    font-size: .9rem;
    color: #fff
}

.comment-date {
    font-size: .77rem;
    color: var(--clr-text-muted)
}

.comment-stars {
    color: var(--clr-primary);
    font-size: .9rem;
    margin-bottom: 6px
}

.comment-text {
    font-size: .88rem;
    color: var(--clr-text);
    line-height: 1.6
}

.comment-form {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    padding: 24px
}

.form-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px
}

.form-group label {
    font-size: .84rem;
    color: var(--clr-text-muted);
    font-weight: 500
}

.form-group input, .form-group textarea, .form-group select {
    background: #0d0617;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .9rem;
    padding: 10px 14px;
    font-family: inherit;
    transition: border-color .2s
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--clr-primary)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.star-rating {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.star-rating input {
    display: none
}

.star-rating label {
    cursor: pointer;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .2);
    transition: color .15s
}

.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label {
    color: var(--clr-primary)
}

.site-footer {
    background: var(--clr-footer);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 52px 0 28px
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 12px
}

.footer-logo-desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 16px
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s;
    text-decoration: none
}

.social-link:hover {
    background: var(--clr-primary);
    color: #05071A
}

.social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor
}

.footer-col-title {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.footer-nav-list li {
    margin-bottom: 8px
}

.footer-nav-list a {
    font-size: .84rem;
    color: var(--clr-text-muted);
    transition: color .2s
}

.footer-nav-list a:hover {
    color: var(--clr-primary)
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 28px 0
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px
}

.footer-logo-chip {
    height: 32px;
    object-fit: contain;
    filter: brightness(.7) grayscale(.3);
    transition: filter .2s
}

.footer-logo-chip:hover {
    filter: brightness(1) grayscale(0)
}

.footer-logos-label {
    width: 100%;
    font-size: .75rem;
    color: var(--clr-text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.footer-flag-img {
    font-size: 1.4rem
}

.footer-legal {
    font-size: .76rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 680px
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline
}

.footer-legal a:hover {
    color: var(--clr-primary)
}

.footer-copyright {
    font-size: .8rem;
    color: var(--clr-text-muted);
    text-align: right
}

.widget-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #05071A, #1a0d1a);
    border-top: 2px solid var(--clr-primary);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    animation: slideUp .5s ease .8s both
}

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

.widget-text {
    font-size: .85rem;
    color: #fff;
    font-weight: 600;
    flex: 1;
    min-width: 0
}

.widget-text span {
    color: var(--clr-primary)
}

.widget-promo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.promo-code {
    background: rgba(255, 230, 0, .12);
    border: 1px dashed var(--clr-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: .06em
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0
}

.widget-close:hover {
    color: #fff
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 2000;
    align-items: center;
    justify-content: center
}

.lightbox.open {
    display: flex
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s
}

.lightbox-close:hover {
    color: var(--clr-primary)
}

.faq-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 32px
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.faq-item:last-child {
    border-bottom: none
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    font-family: inherit
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: var(--clr-primary);
    transition: transform .25s
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 16px
}

.faq-answer p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.breadcrumb {
    font-size: .8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    flex-wrap: wrap
}

.breadcrumb a {
    color: var(--clr-text-muted);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--clr-primary)
}

.breadcrumb .sep {
    opacity: .4
}

.xb9k2a {
    display: none !important
}

.wp47cz {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.f8q3mx {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.info-page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px
}

.info-page-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 1.6em 0 .7em
}

.info-page-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e0d8ec;
    margin: 1.4em 0 .6em
}

.info-page-content p {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 1em;
    font-size: .95rem
}

.info-page-content ul, .info-page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em
}

.info-page-content li {
    color: var(--clr-text);
    padding: .3em 0;
    font-size: .95rem
}

.info-page-content ul li {
    list-style: disc
}

.info-page-content ol li {
    list-style: decimal
}

.info-page-content a {
    color: var(--clr-primary)
}

.info-page-content strong {
    color: #fff
}

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0
}

.info-page-content table th, .info-page-content table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .88rem;
    text-align: left
}

.info-page-content table th {
    background: var(--clr-secondary);
    color: #fff
}

.info-page-content table td {
    color: var(--clr-text)
}

@media (max-width: 1023px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .footer-top {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }

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

    .screenshots-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .app-block-inner {
        grid-template-columns:1fr
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 44px 0
    }

    .hero-slider {
        height: 420px
    }

    .hero-content {
        padding: 0 16px
    }

    .screenshots-grid {
        display: none
    }

    .screenshots-slider-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory
    }

    .screenshots-slider-track::-webkit-scrollbar {
        height: 4px
    }

    .screenshots-slider-track::-webkit-scrollbar-thumb {
        background: var(--clr-border);
        border-radius: 2px
    }

    .screenshots-slider-track .screenshot-item {
        min-width: 70vw;
        scroll-snap-align: start
    }

    .screenshots-slider-track .screenshot-item img {
        height: 180px
    }

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

    .footer-bottom {
        flex-direction: column
    }

    .footer-copyright {
        text-align: left
    }

    .widget-sticky {
        flex-wrap: wrap;
        gap: 8px
    }

    .widget-text {
        width: 100%
    }

    .wheel-container {
        width: 240px;
        height: 240px
    }

    .review-block {
        padding: 24px
    }

    .mirrors-block {
        padding: 20px
    }

    .app-buttons {
        flex-direction: row;
        flex-wrap: wrap
    }

    .app-btn {
        flex: 1;
        min-width: 140px
    }

    .header-inner {
        height: 60px
    }
}

@media (max-width: 400px) {
    .hero-slider {
        height: 380px
    }

    .wheel-container {
        width: 200px;
        height: 200px
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 768px) {

    #app {
        padding: 36px 14px 100px !important;
    }

    #app .section-header {
        margin-bottom: 24px;
        text-align: center;
    }

    #app .section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    #app .section-subtitle {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
    }

    #app .app-block {
        padding: 18px;
        border-radius: 16px;
    }

    #app .app-block-inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    #app .app-info-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 16px;
    }

    #app .table-wrap {
        margin: 0 -18px;
        padding: 0 18px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #app table {
        width: max-content;
        min-width: 620px;
        border-collapse: collapse;
    }

    #app th,
    #app td {
        padding: 12px 14px;
        font-size: 14px;
        white-space: nowrap;
    }

    #app .app-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    #app .app-btn {
        width: 100%;
        padding: 16px;
        justify-content: flex-start;
    }

    #app .app-btn-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    #app .app-btn-label {
        font-size: 12px;
    }

    #app .app-btn-store {
        font-size: 17px;
    }

}

@media (max-width: 480px) {

    #app {
        padding: 28px 10px 90px !important;
    }

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

    #app .section-subtitle {
        font-size: 13px;
    }

    #app .app-block {
        padding: 14px;
    }

    #app .app-info-title {
        font-size: 18px;
    }

    #app .table-wrap {
        margin: 0 -14px;
        padding: 0 14px;
    }

    #app table {
        min-width: 560px;
    }

    #app th,
    #app td {
        padding: 10px 12px;
        font-size: 13px;
    }

    #app .app-btn {
        padding: 14px;
    }

    #app .app-btn-store {
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .thxbvc {
        padding: 24px 16px;
        font-size: 15px;
        line-height: 1.8;
        overflow: hidden;
    }

    .thxbvc h2 {
        font-size: 26px;
        line-height: 1.3;
        margin: 32px 0 18px;
    }

    .thxbvc h3 {
        font-size: 21px;
        line-height: 1.35;
        margin: 24px 0 14px;
    }

    .thxbvc p {
        font-size: 15px;
        line-height: 1.8;
        margin: 0 0 18px;
        word-break: break-word;
    }

    .thxbvc ul,
    .thxbvc ol {
        padding-left: 20px;
        margin: 18px 0;
    }

    .thxbvc li {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .thxbvc blockquote {
        padding: 18px;
        margin: 24px 0;
        border-left: 4px solid var(--clr-primary);
        border-radius: 12px;
        font-size: 15px;
        line-height: 1.8;
    }

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

    .thxbvc .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 18px -16px;
        padding: 0 16px;
    }

    .thxbvc table {
        display: block;
        width: max-content;
        min-width: 640px;
        border-collapse: collapse;
    }

    .thxbvc tbody,
    .thxbvc thead {
        display: table;
        width: 100%;
    }

    .thxbvc th,
    .thxbvc td {
        padding: 12px 14px;
        font-size: 14px;
        white-space: nowrap;
    }

    .thxbvc iframe {
        width: 100%;
        height: 320px;
        border-radius: 12px;
    }

}

@media (max-width: 480px) {

    .thxbvc {
        padding: 20px 12px;
        font-size: 14px;
    }

    .thxbvc h2 {
        font-size: 22px;
    }

    .thxbvc h3 {
        font-size: 18px;
    }

    .thxbvc p,
    .thxbvc li {
        font-size: 14px;
    }

    .thxbvc blockquote {
        padding: 16px;
        font-size: 14px;
    }

    .thxbvc .table-wrap {
        margin: 16px -12px;
        padding: 0 12px;
    }

    .thxbvc table {
        min-width: 560px;
    }

    .thxbvc th,
    .thxbvc td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .thxbvc iframe {
        height: 240px;
    }

}

@media (max-width: 768px) {

    #comments {
        padding: 36px 14px 90px !important;
    }

    #comments .section-header {
        margin-bottom: 24px;
        text-align: center;
    }

    #comments .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    #comments .section-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    #comments .comments-block {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    #comments .comments-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    #comments .comment-item {
        padding: 18px;
        border-radius: 16px;
    }

    #comments .comment-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 10px;
    }

    #comments .comment-author {
        font-size: 16px;
        font-weight: 700;
    }

    #comments .comment-date {
        font-size: 13px;
        opacity: .7;
    }

    #comments .comment-stars {
        font-size: 18px;
        margin-bottom: 10px;
    }

    #comments .comment-text {
        font-size: 14px;
        line-height: 1.8;
    }

    #comments .comment-form {
        padding: 18px;
        border-radius: 16px;
    }

    #comments .form-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    #comments form > div:first-child {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
    }

    #comments .form-group {
        margin-bottom: 16px;
    }

    #comments label {
        display: block;
        font-size: 14px;
        margin-bottom: 8px;
    }

    #comments input,
    #comments textarea {
        width: 100%;
        font-size: 15px;
        padding: 14px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    #comments textarea {
        min-height: 130px;
        resize: vertical;
    }

    #comments .star-rating {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    #comments .star-rating label {
        font-size: 32px;
        margin: 0;
    }

    #comments .btn {
        width: 100%;
        padding: 15px;
        font-size: 15px;
        justify-content: center;
    }

}

@media (max-width: 480px) {

    #comments {
        padding: 28px 10px 80px !important;
    }

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

    #comments .section-subtitle {
        font-size: 13px;
    }

    #comments .comment-item {
        padding: 16px;
    }

    #comments .comment-author {
        font-size: 15px;
    }

    #comments .comment-stars {
        font-size: 17px;
    }

    #comments .comment-text {
        font-size: 13px;
    }

    #comments .comment-form {
        padding: 16px;
    }

    #comments .form-title {
        font-size: 20px;
    }

    #comments input,
    #comments textarea {
        padding: 13px;
        font-size: 14px;
    }

    #comments .star-rating label {
        font-size: 28px;
    }

    #comments .btn {
        padding: 14px;
        font-size: 14px;
    }

}

@media (max-width: 768px) {

    #app {
        width: 100% !important;
        max-width: 100% !important;
        padding: 34px 14px 120px !important;
        overflow: hidden !important;
    }

    #app .section-header {
        text-align: center !important;
        margin-bottom: 22px !important;
    }

    #app .section-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    #app .section-subtitle {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
        margin: 0 auto !important;
    }

    #app .app-block {
        width: 100% !important;
        padding: 18px !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    #app .app-block-inner {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 28px !important;
    }

    #app .app-info-title {
        text-align: center !important;
        font-size: 18px !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }

    #app .table-wrap {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 14px !important;
    }

    #app table {
        width: max-content !important;
        min-width: 620px !important;
        border-collapse: collapse !important;
    }

    #app table tbody {
        display: table !important;
        width: 100% !important;
    }

    #app table tr {
        display: table-row !important;
    }

    #app table td {
        display: table-cell !important;
        padding: 12px 14px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        vertical-align: middle !important;
    }

    #app table td:first-child {
        min-width: 190px !important;
    }

    #app table td:last-child {
        min-width: 280px !important;
    }

    #app .table-wrap::-webkit-scrollbar {
        height: 7px !important;
    }

    #app .table-wrap::-webkit-scrollbar-track {
        background: #120a12 !important;
    }

    #app .table-wrap::-webkit-scrollbar-thumb {
        background: var(--clr-primary) !important;
        border-radius: 999px !important;
    }

    #app .app-block-inner > div:nth-child(2) p:not(.app-info-title) {
        text-align: center !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 18px !important;
    }

    #app .app-buttons {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 12px !important;
        width: 100% !important;
    }

    #app .app-btn {
        width: 100% !important;
        min-height: 64px !important;
        padding: 14px 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        border-radius: 14px !important;
    }

    #app .app-btn-icon {
        width: 30px !important;
        height: 30px !important;
        flex: 0 0 30px !important;
    }

    #app .app-btn-label {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    #app .app-btn-store {
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

}

@media (max-width: 480px) {

    #app {
        padding: 28px 10px 120px !important;
    }

    #app .section-title {
        font-size: 23px !important;
    }

    #app .section-subtitle {
        font-size: 13px !important;
    }

    #app .app-block {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    #app .app-info-title {
        font-size: 17px !important;
    }

    #app table {
        min-width: 560px !important;
    }

    #app table td {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    #app table td:first-child {
        min-width: 170px !important;
    }

    #app table td:last-child {
        min-width: 250px !important;
    }

    #app .app-btn {
        min-height: 60px !important;
        padding: 13px 14px !important;
    }

    #app .app-btn-icon {
        width: 26px !important;
        height: 26px !important;
        flex-basis: 26px !important;
    }

    #app .app-btn-store {
        font-size: 16px !important;
    }

}