@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
    --clr-purple: #73499e;
    --clr-purple-dk: #5a3480;
    --clr-purple-lt: #8f63bb;
    --clr-green: #52cf27;
    --clr-green-dk: #42a820;
    --clr-orange: #f3902f;
    --clr-orange-dk: #d97520;
    --clr-bg: #eef0f5;
    --clr-bg-alt: #e3e6ef;
    --clr-white: #ffffff;
    --clr-text: #1e1e2e;
    --clr-text-light: #5a5a72;
    --clr-border: #d0d4e0;
    --clr-card: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .16);
    --font-main: 'Roboto Condensed', Arial, sans-serif;
    --transition: .22s ease;
}

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

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-orange-dk);
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

.container--wide {
    max-width: 1400px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .3px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--green {
    background: var(--clr-green);
    color: #fff;
}

.btn--green:hover {
    background: var(--clr-green-dk);
    color: #fff;
}

.btn--orange {
    background: var(--clr-orange);
    color: #fff;
}

.btn--orange:hover {
    background: var(--clr-orange-dk);
    color: #fff;
}

.btn--purple {
    background: var(--clr-purple);
    color: #fff;
}

.btn--purple:hover {
    background: var(--clr-purple-dk);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid var(--clr-white);
}

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

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

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

.btn--xl {
    padding: 17px 40px;
    font-size: 19px;
    letter-spacing: .5px;
}

.btn--pulse {
    animation: btnPulse 2.4s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(82, 207, 39, .55);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(82, 207, 39, 0);
    }
}

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-purple);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

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

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

.header-logo img {
    height: 44px;
    width: auto;
    border-radius: var(--radius-sm);
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 11px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

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

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, .2);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.online-count::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: blink 1.6s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--clr-purple-dk);
    z-index: 850;
    padding: 24px 20px;
    overflow-y: auto;
    flex-direction: column;
    gap: 6px;
    animation: slideDown .2s ease;
}

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

.mobile-nav-overlay.is-open {
    display: flex;
}

.mobile-nav-overlay a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-nav-overlay a:hover {
    background: rgba(255, 255, 255, .12);
}

.mobile-nav-overlay a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-nav-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mobile-nav-btns .btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--clr-purple-dk);
}

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

.hero-slide {
    min-width: 100%;
    position: relative;
    min-height: 480px;
    display: grid;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(35, 12, 62, .82) 0%, rgba(35, 12, 62, .45) 60%, rgba(35, 12, 62, .15) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 60px 60px 80px;
    max-width: 620px;
    animation: fadeInLeft .6s ease both;
}

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

.hero-slide-eyebrow {
    display: inline-block;
    background: var(--clr-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.hero-slide-content h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.hero-slide-content p {
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    margin-bottom: 26px;
    line-height: 1.55;
}

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

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

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

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .35);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    transition: background var(--transition);
}

.hero-arrow:hover {
    background: var(--clr-purple);
}

.hero-arrow--prev {
    left: 16px;
}

.hero-arrow--next {
    right: 16px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 60px 0;
}

.section + .section {
    padding-top: 0;
}

.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--clr-purple);
    margin-bottom: 8px;
}

.section-sub {
    color: var(--clr-text-light);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.section-header {
    margin-bottom: 28px;
}

.section-header .section-title {
    margin-bottom: 4px;
}

/* ===== INFO TABLE ===== */
.info-table-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin-bottom: 32px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--clr-border);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background: #f7f8fc;
}

.info-table td {
    padding: 13px 18px;
    font-size: 15px;
    vertical-align: middle;
    text-align: left;
}

.info-table td:first-child {
    font-weight: 700;
    color: var(--clr-purple);
    white-space: nowrap;
    width: 38%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-table td:first-child svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: .75;
}

.info-table td:last-child {
    color: var(--clr-text);
}

.info-table td span.badge {
    display: inline-block;
    background: var(--clr-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
}

/* ===== PAYMENT TABLE ===== */
.pay-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    margin-bottom: 32px;
    background: var(--clr-card);
}

.pay-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.pay-table thead tr {
    background: var(--clr-purple);
}

.pay-table thead th {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 13px 16px;
    text-align: left;
    white-space: nowrap;
}

.pay-table tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.pay-table tbody tr:hover {
    background: #f3f5fb;
}

.pay-table tbody td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--clr-text);
    vertical-align: middle;
}

.pay-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.pay-logo-icon {
    width: 44px;
    height: 28px;
    background: var(--clr-bg-alt);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--clr-purple);
    border: 1px solid var(--clr-border);
    flex-shrink: 0;
    overflow: hidden;
}

.pay-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tag-green {
    color: var(--clr-green-dk);
    font-weight: 700;
}

.tag-orange {
    color: var(--clr-orange);
    font-weight: 700;
}

/* ===== MIRRORS TABLE ===== */
.mirror-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.mirror-timestamp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-light);
    background: var(--clr-card);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.mirror-timestamp::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.mirrors-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    background: var(--clr-card);
    margin-bottom: 32px;
}

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.mirrors-table thead tr {
    background: var(--clr-purple-dk);
}

.mirrors-table thead th {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 12px 16px;
    text-align: left;
}

.mirrors-table tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.mirrors-table tbody tr:hover {
    background: #f3f5fb;
}

.mirrors-table tbody td {
    padding: 11px 16px;
    font-size: 14px;
    vertical-align: middle;
}

.mirrors-table a {
    color: var(--clr-purple);
    font-weight: 700;
}

.mirrors-table a:hover {
    color: var(--clr-orange);
}

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

.status-badge--ok {
    background: #e6f9e0;
    color: #2b9c10;
}

.status-badge--ok::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/10;
    background: var(--clr-bg-alt);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.025);
    box-shadow: var(--shadow-md);
}

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

.screenshots-slider-wrap {
    display: none;
}

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

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

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

.screenshots-slider .screenshot-item {
    flex: 0 0 80vw;
    scroll-snap-align: start;
    aspect-ratio: 16/10;
}

/* ===== DEMO GAME ===== */
.demo-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    margin-bottom: 32px;
}

.demo-header {
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-purple-lt));
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.demo-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.demo-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 520px;
    background: #0e0e1c;
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-cta {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #fafbff;
    border-top: 1px solid var(--clr-border);
}

.demo-cta p {
    color: var(--clr-text-light);
    font-size: 14px;
    max-width: 480px;
    line-height: 1.5;
}

.demo-cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===== CONTENT BLOCK ===== */
.review-block {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    padding: 36px 40px;
    margin-bottom: 32px;
}

.review-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-purple);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--clr-bg-alt);
}

.review-block h2:first-child {
    margin-top: 0;
}

.review-block h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-purple-dk);
    margin: 22px 0 10px;
}

.review-block h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

.review-block p {
    margin-bottom: 16px;
    line-height: 1.65;
    color: var(--clr-text);
}

.review-block ul, .review-block ol {
    margin: 0 0 16px 22px;
}

.review-block li {
    margin-bottom: 7px;
    line-height: 1.6;
}

.review-block strong {
    color: var(--clr-purple);
}

.review-block em {
    color: var(--clr-text-light);
}

.review-block a {
    color: var(--clr-orange);
}

.review-block blockquote {
    background: #f5f0ff;
    border-left: 4px solid var(--clr-purple);
    padding: 14px 20px;
    margin: 16px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-light);
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

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

.review-block table th {
    background: var(--clr-purple);
    color: #fff;
    font-weight: 700;
}

.review-block table tr:nth-child(even) {
    background: #f7f8fc;
}

/* ===== FAQ ===== */
.faq-list {
    margin-bottom: 32px;
}

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

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

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

.faq-question:hover {
    background: #f5f0ff;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--clr-purple-lt);
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--clr-text);
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* ===== COMMENTS ===== */
.comments-list {
    margin-bottom: 28px;
    display: grid;
    gap: 14px;
}

.comment-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-purple-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-meta {
    flex: 1;
}

.comment-author {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-purple);
}

.comment-date {
    font-size: 12px;
    color: var(--clr-text-light);
}

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

.comment-stars svg {
    width: 16px;
    height: 16px;
    color: #f3b300;
    fill: currentColor;
}

.comment-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--clr-text);
}

.comment-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 26px 28px;
    box-shadow: var(--shadow-sm);
}

.comment-form-wrap h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-purple);
    margin-bottom: 20px;
}

.form-row {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--clr-text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--clr-purple);
    box-shadow: 0 0 0 3px rgba(115, 73, 158, .18);
}

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

.form-stars-row {
    display: flex;
    gap: 6px;
}

.form-star {
    font-size: 26px;
    cursor: pointer;
    color: #ccc;
    transition: color .12s;
    line-height: 1;
}

.form-star.active {
    color: #f3b300;
}

.form-success {
    display: none;
    background: #e6f9e0;
    border: 1px solid #b5e7a8;
    color: #2b7c18;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-top: 14px;
    animation: fadeIn .3s ease;
}

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

/* ===== AUTHOR ===== */
.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-purple-lt);
    flex-shrink: 0;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-purple);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--clr-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    color: var(--clr-text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.author-dates {
    font-size: 12px;
    color: var(--clr-text-light);
    margin-bottom: 14px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.author-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-purple);
    background: #f5f0ff;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(115, 73, 158, .2);
    transition: background var(--transition), color var(--transition);
}

.author-social-link:hover {
    background: var(--clr-purple);
    color: #fff;
}

.author-social-link svg {
    width: 15px;
    height: 15px;
}

/* ===== PROMO WIDGET ===== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, var(--clr-purple-dk), var(--clr-purple));
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
    flex-wrap: wrap;
    animation: slideUp .4s .8s both;
}

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

.promo-widget-label {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 600;
}

.promo-code-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-code {
    background: rgba(255, 255, 255, .15);
    border: 1.5px dashed rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    user-select: all;
    font-family: var(--font-main);
    transition: background var(--transition);
}

.promo-code:hover {
    background: rgba(255, 255, 255, .25);
}

.btn-copy {
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-main);
    transition: background var(--transition);
}

.btn-copy:hover {
    background: rgba(255, 255, 255, .35);
}

.btn-copy.copied {
    background: var(--clr-green);
    border-color: var(--clr-green);
}

.promo-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
    transition: color var(--transition);
}

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-purple-dk);
    color: rgba(255, 255, 255, .85);
    padding: 50px 0 20px;
    margin-bottom: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
    margin-bottom: 14px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.footer-country img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.footer-email {
    color: var(--clr-orange);
    font-size: 14px;
    font-weight: 600;
}

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

.footer-links {
    list-style: none;
    display: grid;
    gap: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--clr-orange);
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: rgba(255, 255, 255, .8);
    transition: background var(--transition), color var(--transition);
}

.footer-social:hover {
    background: var(--clr-orange);
    color: #fff;
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 24px 0;
}

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

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
    max-width: 720px;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== UTILITY ===== */
.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.card + .card {
    margin-top: 16px;
}

.text-purple {
    color: var(--clr-purple);
}

.text-green {
    color: var(--clr-green-dk);
}

.text-orange {
    color: var(--clr-orange);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-light);
    padding: 14px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--clr-orange);
}

.breadcrumb span {
    opacity: .5;
}

/* ===== INFO PAGE ===== */
.info-page {
    padding: 48px 0 64px;
}

.info-page .info-content {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    padding: 40px 44px;
}

.info-page .info-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-purple);
    margin-bottom: 24px;
}

.info-page .info-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-purple);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--clr-bg-alt);
}

.info-page .info-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.info-page .info-content ul, .info-page .info-content ol {
    margin: 0 0 16px 22px;
}

.info-page .info-content li {
    margin-bottom: 7px;
}

/* Hidden/unused elements for uniqueness */
.xb3f2a, .d9k1m, .z7q4n {
    display: none;
    visibility: hidden;
}

/* WP compatibility markers */
.wp-block-group, .wp-block-cover, .entry-content {
    display: block;
}

.wp-caption {
    max-width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .header-nav {
        gap: 2px;
    }

    .header-nav a {
        font-size: 13px;
        padding: 5px 9px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-slide {
        min-height: 320px;
    }

    .hero-slide-content {
        padding: 36px 20px;
    }

    .hero-slide-content h2 {
        font-size: 22px;
    }

    .hero-slide-content p {
        font-size: 15px;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider-wrap {
        display: block;
    }

    .author-card {
        grid-template-columns: 1fr;
    }

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

    .info-table td:first-child {
        width: 44%;
    }

    .review-block {
        padding: 20px 18px;
    }

    .info-page .info-content {
        padding: 24px 18px;
    }

    .demo-cta {
        flex-direction: column;
    }

    .section {
        padding: 40px 0;
    }

    .promo-widget {
        flex-direction: column;
        gap: 10px;
        padding: 12px 44px 12px 16px;
    }
}

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

    .header-inner {
        padding: 0 12px;
        height: 60px;
    }

    .online-count {
        display: none;
    }

    .hero-arrow {
        display: none;
    }
}

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

.wrapper,
main,
.section,
.container {
    min-width: 0;
    max-width: 100%;
}

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

@media (max-width: 1024px) {
    .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-nav {
        justify-content: flex-end;
        min-width: 0;
    }

    .header-nav a {
        padding: 6px 7px;
        font-size: 12px;
    }

    .header-actions {
        flex-shrink: 0;
    }

    .hero-slide-content {
        padding: 50px 64px;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

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

    .site-header {
        position: sticky;
        top: 0;
        width: 100%;
    }

    .header-inner {
        position: relative;
        grid-template-columns: auto minmax(0, 1fr) auto;
        width: 100%;
        height: 62px;
        padding: 8px 14px;
        gap: 10px;
    }

    .header-logo {
        min-width: 0;
    }

    .header-logo img {
        width: auto;
        height: 38px;
        max-width: 125px;
        object-fit: contain;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        justify-self: end;
        gap: 7px;
    }


    .online-count {
        padding: 4px 8px;
        font-size: 11px;
    }

    .burger {
        display: flex;
        width: 28px;
        height: 21px;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 62px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 950;
        width: 100%;
        height: calc(100dvh - 62px);
        padding: 16px 14px 28px;
        overflow-y: auto;
        background: var(--clr-purple-dk);
    }

    .mobile-nav-overlay a {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        font-size: 16px;
    }

    .mobile-nav-btns {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .mobile-nav-btns .btn {
        width: 100%;
        min-width: 0;
    }

    .hero {
        width: 100%;
    }

    .hero-slide {
        min-height: 420px;
    }

    .hero-slide-bg {
        object-position: center;
    }

    .hero-slide-overlay {
        background: linear-gradient(
                180deg,
                rgba(35, 12, 62, .84) 0%,
                rgba(35, 12, 62, .78) 100%
        );
    }

    .hero-slide-content {
        width: 100%;
        max-width: none;
        padding: 48px 42px 60px;
        text-align: center;
    }

    .hero-slide-eyebrow {
        margin-bottom: 12px;
    }

    .hero-slide-content h2 {
        margin-bottom: 14px;
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-slide-content p {
        max-width: 560px;
        margin: 0 auto 24px;
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-slide-btns {
        justify-content: center;
        width: 100%;
    }

    .hero-slide-btns .btn {
        min-height: 46px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-arrow--prev {
        left: 8px;
    }

    .hero-arrow--next {
        right: 8px;
    }

    .breadcrumb {
        padding: 12px 0;
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .section {
        width: 100%;
        padding: 42px 0;
    }

    .section + .section {
        padding-top: 0;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 30px);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .section-sub {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.6;
    }

    .info-table-wrap {
        width: 100%;
        margin-bottom: 24px;
        overflow: hidden;
    }

    .info-table,
    .info-table tbody,
    .info-table tr,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table tbody {
        display: grid;
        gap: 10px;
        padding: 10px;
    }

    .info-table tr {
        padding: 14px;
        background: #fff;
        border: 1px solid var(--clr-border);
        border-radius: 10px;
    }

    .info-table tr:nth-child(even) {
        background: #fff;
    }

    .info-table td {
        padding: 0;
        border: 0;
        overflow-wrap: anywhere;
    }

    .info-table td:first-child {
        display: flex;
        width: 100%;
        margin-bottom: 8px;
        white-space: normal;
        font-size: 13px;
    }

    .info-table td:last-child {
        padding-left: 28px;
        font-size: 14px;
        line-height: 1.5;
    }

    .info-table td span.badge {
        margin-top: 4px;
        margin-left: 4px;
    }

    .pay-table-wrap,
    .mirrors-table-wrap {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .pay-table {
        width: 760px;
        min-width: 760px;
    }

    .mirrors-table {
        width: 650px;
        min-width: 650px;
    }

    .pay-table th,
    .pay-table td,
    .mirrors-table th,
    .mirrors-table td {
        padding: 11px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .mirror-header-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .mirror-timestamp {
        width: fit-content;
        max-width: 100%;
        white-space: normal;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider-wrap {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .screenshots-slider {
        width: 100%;
        gap: 12px;
        padding-bottom: 10px;
    }

    .screenshots-slider .screenshot-item {
        flex: 0 0 84%;
        width: 84%;
        min-width: 84%;
    }

    .demo-wrap {
        width: 100%;
        border-radius: 14px;
    }

    .demo-header {
        align-items: flex-start;
        padding: 18px;
    }

    .demo-header h3 {
        max-width: 100%;
        font-size: 18px;
        overflow-wrap: anywhere;
    }

    .demo-frame-wrap {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .demo-frame-wrap iframe {
        display: block;
        width: 100%;
        height: 100%;
    }

    .demo-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 18px;
    }

    .demo-cta p {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .demo-cta-btns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .demo-cta-btns .btn {
        width: 100%;
        justify-content: center;
        padding-left: 12px;
        padding-right: 12px;
        white-space: normal;
        text-align: center;
    }

    .review-block {
        width: 100%;
        padding: 24px 20px;
        border-radius: 14px;
        overflow: hidden;
    }

    .review-block h2 {
        margin-top: 30px;
        font-size: 22px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .review-block h3 {
        font-size: 19px;
        overflow-wrap: anywhere;
    }

    .review-block p,
    .review-block li,
    .review-block blockquote {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .review-block ul,
    .review-block ol {
        margin-left: 20px;
    }

    .review-block img,
    .review-block video,
    .review-block iframe {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .review-block table {
        display: table;
        width: 100%;
        min-width: 560px;
        table-layout: auto;
    }

    .review-block:has(table) {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .review-block table th,
    .review-block table td {
        padding: 10px 12px;
        font-size: 13px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .faq-list {
        width: 100%;
    }

    .faq-item {
        width: 100%;
        border-radius: 10px;
    }

    .faq-question {
        min-height: 56px;
        padding: 15px 16px;
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-question svg {
        flex: 0 0 auto;
    }

    .faq-answer {
        padding: 14px 16px 17px;
        font-size: 14px;
    }

    .comments-list {
        width: 100%;
    }

    .comment-card {
        width: 100%;
        padding: 17px;
    }

    .comment-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .comment-meta {
        min-width: 0;
    }

    .comment-stars {
        width: 100%;
        padding-left: 52px;
    }

    .comment-body {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .comment-form-wrap {
        width: 100%;
        padding: 22px 18px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        max-width: 100%;
        font-size: 16px;
    }

    .form-textarea {
        min-height: 130px;
    }

    .comment-form-wrap .btn {
        width: 100%;
        justify-content: center;
    }

    .author-card {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        width: 100%;
        padding: 24px 20px;
        text-align: center;
    }

    .author-info {
        min-width: 0;
    }

    .author-bio {
        overflow-wrap: anywhere;
    }

    .author-dates,
    .author-socials {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-trust-row,
    .footer-logos-row {
        align-items: flex-start;
    }

    .site-footer {
        padding-top: 42px;
        padding-bottom: 92px;
        margin-bottom: 0;
    }

    .promo-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        width: 100%;
        padding: 10px 42px 10px 12px;
        gap: 8px 10px;
    }

    .promo-widget-label {
        grid-column: 1 / -1;
        font-size: 11px;
        line-height: 1.3;
    }

    .promo-code-block {
        min-width: 0;
    }

    .promo-code {
        max-width: 100%;
        padding: 6px 10px;
        font-size: 13px;
        letter-spacing: 1px;
        overflow-wrap: anywhere;
    }

    .promo-widget .btn {
        padding: 8px 11px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner {
        height: 58px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-logo img {
        height: 34px;
        max-width: 105px;
    }

    .online-count {
        display: none;
    }

    .mobile-nav-overlay {
        top: 58px;
        height: calc(100dvh - 58px);
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-slide {
        min-height: 410px;
    }

    .hero-slide-content {
        padding: 42px 18px 58px;
    }

    .hero-slide-content h2 {
        font-size: 29px;
    }

    .hero-slide-content p {
        font-size: 14px;
    }

    .hero-slide-btns {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-slide-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 15px;
        white-space: normal;
    }

    .hero-arrow {
        display: none;
    }

    .section {
        padding: 36px 0;
    }

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

    .section-sub {
        font-size: 14px;
    }

    .info-table tbody {
        padding: 8px;
    }

    .info-table tr {
        padding: 12px;
    }

    .info-table td:last-child {
        padding-left: 0;
    }

    .pay-table {
        width: 720px;
        min-width: 720px;
    }

    .mirrors-table {
        width: 620px;
        min-width: 620px;
    }

    .screenshots-slider .screenshot-item {
        flex-basis: 90%;
        width: 90%;
        min-width: 90%;
    }

    .demo-header {
        flex-direction: column;
        padding: 16px;
    }

    .demo-frame-wrap {
        aspect-ratio: 4 / 3;
    }

    .demo-cta {
        padding: 16px;
    }

    .demo-cta-btns {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-block {
        padding: 20px 14px;
    }

    .review-block h2 {
        font-size: 20px;
    }

    .review-block h3 {
        font-size: 18px;
    }

    .review-block p,
    .review-block li {
        font-size: 14px;
        line-height: 1.65;
    }

    .faq-question {
        padding: 14px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 13px 14px 15px;
        font-size: 14px;
    }

    .comment-card {
        padding: 15px;
    }

    .comment-stars {
        padding-left: 0;
    }

    .comment-form-wrap {
        padding: 19px 14px;
    }

    .author-card {
        padding: 21px 15px;
    }

    .author-avatar {
        width: 82px;
        height: 82px;
    }

    .author-dates {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-trust-row,
    .footer-logos-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-badge,
    .footer-logo-badge {
        justify-content: center;
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }

    .promo-widget {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 8px 38px 8px 10px;
    }

    .promo-widget-label {
        display: none;
    }

    .promo-code {
        font-size: 11px;
    }

    .promo-widget .btn {
        padding: 7px 9px;
        font-size: 11px;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .hero-slide-content h2 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-trust-row,
    .footer-logos-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .promo-widget {
        grid-template-columns: minmax(0, 1fr);
    }

    .promo-widget .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1025px) {
    .container {
        width: calc(100% - 80px);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-inner {
        width: calc(100% - 80px);
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-slide-content {
        width: calc(100% - 160px);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    .site-footer .container {
        width: calc(100% - 80px);
        max-width: 1200px;
    }
}

@media (min-width: 1440px) {
    .container {
        width: calc(100% - 160px);
    }

    .header-inner {
        width: calc(100% - 160px);
    }

    .site-footer .container {
        width: calc(100% - 160px);
    }
}