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

:root {
    --clr-bg: #0d140d;
    --clr-nav: #1b2b1b;
    --clr-nav-border: #243824;
    --clr-green: #4caf50;
    --clr-green-hover: #3d9940;
    --clr-yellow: #ffc107;
    --clr-yellow-hover: #e6ac00;
    --clr-text: #e8f5e9;
    --clr-text-muted: #9db89e;
    --clr-card: #162216;
    --clr-card-border: #2a3f2a;
    --clr-gold: #f5c842;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --font-main: 'Montserrat', sans-serif;
    --transition: .22s ease;
}

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

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

ul {
    list-style: none
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: var(--clr-nav)
}

::-webkit-scrollbar-thumb {
    background: var(--clr-green);
    border-radius: 3px
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text)
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem)
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 1.2rem
}

h3 {
    font-size: clamp(1.05rem, 2vw, 1.4rem)
}

p {
    margin-bottom: .9rem
}

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

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

.x7q2-section {
    padding: 64px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform .12s, box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px)
}

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

.btn--green:hover {
    background: var(--clr-green-hover);
    color: #fff;
    box-shadow: 0 4px 16px rgba(76, 175, 80, .4)
}

.btn--yellow {
    background: var(--clr-yellow);
    color: #1a1a00
}

.btn--yellow:hover {
    background: var(--clr-yellow-hover);
    color: #1a1a00;
    box-shadow: 0 4px 16px rgba(255, 193, 7, .4)
}

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

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

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

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

.btn--icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.x7q2-header {
    background: var(--clr-nav);
    border-bottom: 1px solid var(--clr-nav-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.x7q2-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.x7q2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

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

.x7q2-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: .04em
}

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

.x7q2-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: .82rem;
    font-weight: 600;
    transition: color var(--transition), background var(--transition)
}

.x7q2-nav a:hover, .x7q2-nav a.active {
    color: var(--clr-text);
    background: rgba(76, 175, 80, .12)
}

.x7q2-nav a svg {
    width: 15px;
    height: 15px;
    opacity: .75
}

.x7q2-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.x7q2-online {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.x7q2-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .6)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 175, 80, 0)
    }
}

.x7q2-lang {
    position: relative
}

.x7q2-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-nav-border);
    border-radius: var(--radius-sm);
    padding: 5px 9px;
    cursor: pointer;
    color: var(--clr-text);
    font-size: .8rem;
    font-family: var(--font-main)
}

.x7q2-lang-btn svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition)
}

.x7q2-lang-btn.open svg {
    transform: rotate(180deg)
}

.x7q2-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-nav);
    border: 1px solid var(--clr-nav-border);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 130px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition)
}

.x7q2-lang-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

.x7q2-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    color: var(--clr-text);
    transition: background var(--transition)
}

.x7q2-lang-dropdown a:hover {
    background: rgba(76, 175, 80, .12)
}

.x7q2-lang-flag {
    font-size: 1.1rem;
    line-height: 1
}

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

.x7q2-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

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

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

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

.x7q2-mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 65px;
    background: var(--clr-nav);
    z-index: 800;
    padding: 20px 16px;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    border-top: 1px solid var(--clr-nav-border)
}

.x7q2-mob-menu.open {
    display: flex
}

.x7q2-mob-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-weight: 600;
    font-size: .95rem;
    border-bottom: 1px solid var(--clr-nav-border)
}

.x7q2-mob-menu a svg {
    width: 18px;
    height: 18px;
    opacity: .7
}

.x7q2-mob-btns {
    display: flex;
    gap: 8px;
    margin-top: 6px
}

.x7q2-mob-btns .btn {
    flex: 1;
    justify-content: center
}

.x7q2-hero {
    position: relative;
    overflow: hidden;
    background: var(--clr-nav);
    border-bottom: 1px solid var(--clr-nav-border)
}

.x7q2-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/big-bamboo-banner.jpg');
    background-size: cover;
    background-position: center top;
    opacity: .35;
    z-index: 0
}

.x7q2-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 20, 13, .92) 40%, rgba(13, 20, 13, .3) 100%)
}

.x7q2-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 380px;
    gap: 32px;
    align-items: center;
    padding: 64px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.x7q2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, .15);
    border: 1px solid rgba(76, 175, 80, .35);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-green);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.x7q2-hero-badge svg {
    width: 12px;
    height: 12px
}

.x7q2-hero h1 {
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

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

.x7q2-hero-sub {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.65
}

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

.x7q2-hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap
}

.x7q2-hero-stat {
    text-align: center
}

.x7q2-hero-stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--clr-gold);
    font-weight: 800
}

.x7q2-hero-stat span {
    font-size: .75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.x7q2-promo-card {
    background: linear-gradient(145deg, #1e3320, #162216);
    border: 1px solid rgba(76, 175, 80, .3);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card), 0 0 40px rgba(76, 175, 80, .07)
}

.x7q2-promo-card-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-weight: 700
}

.x7q2-promo-bonus {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-yellow);
    line-height: 1.1;
    margin-bottom: 4px
}

.x7q2-promo-bonus span {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    font-weight: 500
}

.x7q2-promo-sub {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 18px
}

.x7q2-promo-code-wrap {
    background: rgba(0, 0, 0, .35);
    border: 1px dashed rgba(76, 175, 80, .4);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px
}

.x7q2-promo-code {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--clr-gold)
}

.x7q2-copy-btn {
    background: rgba(76, 175, 80, .15);
    border: 1px solid rgba(76, 175, 80, .4);
    color: var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background var(--transition)
}

.x7q2-copy-btn:hover {
    background: rgba(76, 175, 80, .3)
}

.x7q2-promo-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-green);
    background: rgba(76, 175, 80, .12);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 14px
}

.x7q2-promo-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 1.8s infinite
}

.x7q2-promo-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px
}

.x7q2-section-title {
    text-align: center;
    margin-bottom: 40px
}

.x7q2-section-title h2 {
    color: #fff
}

.x7q2-section-title p {
    color: var(--clr-text-muted);
    font-size: .95rem;
    max-width: 560px;
    margin: 8px auto 0
}

.x7q2-section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-green);
    background: rgba(76, 175, 80, .12);
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 10px
}

.x7q2-advantages {
    background: var(--clr-bg)
}

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

.x7q2-adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: fadeInUp .5s ease both
}

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

.x7q2-adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(76, 175, 80, .12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.x7q2-adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-green)
}

.x7q2-adv-card h3 {
    font-size: 1rem;
    margin-bottom: 6px
}

.x7q2-adv-card p {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin: 0
}

.x7q2-winners {
    background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-nav) 100%)
}

.x7q2-winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-card-border)
}

.x7q2-winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px
}

.x7q2-winners-table th {
    background: rgba(76, 175, 80, .1);
    color: var(--clr-text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-card-border)
}

.x7q2-winners-table td {
    padding: 12px 16px;
    font-size: .9rem;
    border-bottom: 1px solid rgba(42, 63, 42, .5)
}

.x7q2-winners-table tr:last-child td {
    border-bottom: none
}

.x7q2-winners-table tr:hover td {
    background: rgba(76, 175, 80, .05)
}

.x7q2-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-weight: 800;
    font-size: .8rem
}

.x7q2-rank--1 {
    background: linear-gradient(135deg, #f5c842, #e0a800);
    color: #1a1a00
}

.x7q2-rank--2 {
    background: linear-gradient(135deg, #b0bec5, #78909c);
    color: #1a1a00
}

.x7q2-rank--3 {
    background: linear-gradient(135deg, #cd7f32, #a05000);
    color: #fff
}

.x7q2-rank--n {
    background: var(--clr-card-border);
    color: var(--clr-text-muted)
}

.x7q2-winner-nick {
    font-weight: 600;
    color: var(--clr-text)
}

.x7q2-winner-amount {
    font-weight: 700;
    color: var(--clr-gold)
}

.x7q2-winner-mult {
    font-size: .78rem;
    color: var(--clr-green)
}

.x7q2-winners-note {
    text-align: center;
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-top: 14px
}

.x7q2-winners-refresh {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 14px
}

.x7q2-refresh-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(76, 175, 80, .1);
    border: 1px solid rgba(76, 175, 80, .25);
    border-radius: var(--radius-sm);
    color: var(--clr-green);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background var(--transition)
}

.x7q2-refresh-btn:hover {
    background: rgba(76, 175, 80, .22)
}

.x7q2-refresh-btn svg {
    width: 13px;
    height: 13px
}

.x7q2-app {
    background: var(--clr-nav)
}

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

.x7q2-app-info h2 {
    margin-bottom: 16px
}

.x7q2-app-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-card-border);
    margin-bottom: 24px
}

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

.x7q2-app-table tr:nth-child(even) td {
    background: rgba(76, 175, 80, .04)
}

.x7q2-app-table td {
    padding: 10px 14px;
    font-size: .88rem;
    border-bottom: 1px solid rgba(42, 63, 42, .5);
    text-align: left
}

.x7q2-app-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 44%;
    white-space: nowrap
}

.x7q2-app-table td:last-child {
    color: var(--clr-text);
    font-weight: 500
}

.x7q2-app-table tr:last-child td {
    border-bottom: none
}

.x7q2-download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.x7q2-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 13px 18px;
    transition: border-color var(--transition), transform var(--transition);
    text-decoration: none
}

.x7q2-dl-btn:hover {
    border-color: var(--clr-green);
    transform: translateX(4px)
}

.x7q2-dl-btn-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.x7q2-dl-btn-icon svg {
    width: 28px;
    height: 28px
}

.x7q2-dl-btn-text small {
    display: block;
    font-size: .68rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.x7q2-dl-btn-text strong {
    display: block;
    font-size: .95rem;
    color: var(--clr-text);
    font-weight: 700
}

.x7q2-app-img-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 8px
}

.x7q2-app-devices {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
    width: 100%
}

.x7q2-device-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center
}

.x7q2-device-card svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    color: var(--clr-green)
}

.x7q2-device-card p {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin: 0
}

.x7q2-device-card strong {
    display: block;
    font-size: .9rem;
    color: var(--clr-text);
    font-weight: 700;
    margin-bottom: 2px
}

.x7q2-demo {
    background: var(--clr-bg)
}

.x7q2-demo-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card)
}

.x7q2-demo-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--clr-nav);
    border-bottom: 1px solid var(--clr-nav-border)
}

.x7q2-demo-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.x7q2-demo-toolbar-left span {
    font-weight: 700;
    font-size: .95rem;
    color: var(--clr-text)
}

.x7q2-demo-badge {
    background: rgba(76, 175, 80, .15);
    border: 1px solid rgba(76, 175, 80, .3);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--clr-green);
    text-transform: uppercase
}

.x7q2-demo-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000
}

.x7q2-demo-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.x7q2-demo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-nav-border);
    flex-wrap: wrap;
    gap: 12px
}

.x7q2-demo-cta p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin: 0
}

.x7q2-demo-cta p strong {
    color: var(--clr-yellow)
}

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

.x7q2-content-block {
    background: var(--clr-nav)
}

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

.x7q2-content-inner h1, .x7q2-content-inner h2, .x7q2-content-inner h3, .x7q2-content-inner h4 {
    color: var(--clr-text);
    margin: 1.2em 0 .6em;
    line-height: 1.25
}

.x7q2-content-inner h1 {
    font-size: clamp(1.4rem, 3vw, 2rem)
}

.x7q2-content-inner h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    border-bottom: 1px solid var(--clr-card-border);
    padding-bottom: .4em
}

.x7q2-content-inner h3 {
    font-size: clamp(1rem, 2vw, 1.25rem)
}

.x7q2-content-inner p {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: .9rem;
    font-size: .95rem
}

.x7q2-content-inner a {
    color: var(--clr-green);
    text-decoration: underline
}

.x7q2-content-inner a:hover {
    color: var(--clr-gold)
}

.x7q2-content-inner ul, .x7q2-content-inner ol {
    padding-left: 1.4em;
    margin-bottom: 1rem
}

.x7q2-content-inner li {
    margin-bottom: .45rem;
    font-size: .95rem;
    line-height: 1.6;
    color: var(--clr-text)
}

.x7q2-content-inner ul li {
    list-style: disc
}

.x7q2-content-inner ol li {
    list-style: decimal
}

.x7q2-content-inner blockquote {
    border-left: 3px solid var(--clr-green);
    padding: 10px 18px;
    background: rgba(76, 175, 80, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
    font-style: italic;
    color: var(--clr-text-muted)
}

.x7q2-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.x7q2-content-inner table th {
    background: rgba(76, 175, 80, .12);
    color: var(--clr-text);
    font-size: .85rem;
    text-align: left;
    padding: 10px 14px
}

.x7q2-content-inner table td {
    padding: 9px 14px;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-card-border);
    text-align: left
}

.x7q2-content-inner table tr:last-child td {
    border-bottom: none
}

.x7q2-content-inner strong {
    color: var(--clr-gold)
}

.x7q2-content-inner em {
    color: var(--clr-text-muted)
}

.x7q2-content-inner img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
    margin: 1rem 0
}

.x7q2-content-inner hr {
    border: none;
    border-top: 1px solid var(--clr-card-border);
    margin: 1.5rem 0
}

.x7q2-faq {
    background: var(--clr-bg)
}

.x7q2-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

.x7q2-faq-item.open {
    border-color: rgba(76, 175, 80, .4)
}

.x7q2-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--clr-text);
    user-select: none
}

.x7q2-faq-q:hover {
    color: var(--clr-green)
}

.x7q2-faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-text-muted);
    transition: transform var(--transition)
}

.x7q2-faq-item.open .x7q2-faq-chevron {
    transform: rotate(180deg);
    color: var(--clr-green)
}

.x7q2-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding var(--transition)
}

.x7q2-faq-a-inner {
    padding: 0 20px 17px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.x7q2-faq-item.open .x7q2-faq-a {
    max-height: 600px
}

.x7q2-footer {
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-nav-border);
    padding: 40px 0 24px
}

.x7q2-footer-top {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.x7q2-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.x7q2-footer-logo img {
    height: 38px;
    width: auto
}

.x7q2-footer-logo-text {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-gold)
}

.x7q2-footer-desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.65
}

.x7q2-footer-col h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-text-muted);
    margin-bottom: 12px
}

.x7q2-footer-col ul li {
    margin-bottom: 6px
}

.x7q2-footer-col ul li a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.x7q2-footer-col ul li a:hover {
    color: var(--clr-green)
}

.x7q2-footer-divider {
    border: none;
    border-top: 1px solid var(--clr-nav-border);
    margin-bottom: 24px
}

.x7q2-footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px
}

.x7q2-footer-trust-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-text-muted);
    margin-right: 4px
}

.x7q2-trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-nav-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted)
}

.x7q2-trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--clr-green)
}

.x7q2-footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px
}

.x7q2-pay-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-nav-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px
}

.x7q2-pay-badge svg {
    width: 16px;
    height: 16px
}

.x7q2-footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px
}

.x7q2-footer-provider span {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.x7q2-footer-provider img {
    height: 24px;
    width: auto;
    opacity: .55;
    filter: brightness(2)
}

.x7q2-footer-provider img:hover {
    opacity: .9
}

.x7q2-footer-legal {
    font-size: .75rem;
    color: #5a7a5a;
    line-height: 1.65;
    margin-bottom: 12px
}

.x7q2-footer-legal a {
    color: #5a7a5a;
    text-decoration: underline
}

.x7q2-footer-copyright {
    font-size: .78rem;
    color: #4a6a4a;
    text-align: center
}

.x7q2-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #5a7a5a;
    font-size: .62rem;
    font-weight: 800;
    color: #5a7a5a;
    flex-shrink: 0
}

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

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.x7q2-fade-in {
    animation: fadeIn .6s ease both
}

.x7q2-fade-up {
    animation: fadeInUp .5s ease both
}

.x7q2-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.x7q2-reveal.visible {
    opacity: 1;
    transform: none
}

.x7q2-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 32px
}

.x7q2-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(76, 175, 80, .2);
    border: 2px solid rgba(76, 175, 80, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-green)
}

.x7q2-author-info {
    flex: 1
}

.x7q2-author-info strong {
    display: block;
    font-size: .9rem;
    color: var(--clr-text);
    font-weight: 700
}

.x7q2-author-info span {
    display: block;
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
    margin-top: 2px
}

.x7q2-author-link {
    font-size: .78rem;
    color: var(--clr-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px
}

.x7q2-author-link:hover {
    color: var(--clr-gold)
}

.wp-block-paragraph {
    display: block
}

.entry-content {
    display: block
}

.post-thumbnail {
    display: block
}

.wp-caption {
    display: inline-block
}

.widget-area {
    display: none
}

.sidebar-widget {
    display: none
}

.elementor-hidden {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.woocommerce-hidden {
    display: none
}

.wp-embed-responsive {
    display: block
}

.x9f3-placeholder {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
    height: 1px
}

.m4k7-empty::before {
    content: '';
    display: none
}

.r2p9-ghost {
    visibility: hidden;
    position: absolute
}

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

    .x7q2-nav {
        display: none
    }

    .x7q2-burger {
        display: flex
    }

    .x7q2-hero-inner {
        grid-template-columns:1fr
    }

    .x7q2-hero-bg::after {
        background: linear-gradient(180deg, rgba(13, 20, 13, .85) 0%, rgba(13, 20, 13, .6) 100%)
    }

    .x7q2-promo-card {
        max-width: 480px
    }

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

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

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

    .x7q2-hero-inner {
        padding: 44px 16px
    }

    .x7q2-promo-card {
        max-width: 100%
    }

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

    .x7q2-demo-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .x7q2-app-devices {
        grid-template-columns:1fr
    }

    .x7q2-widget {
        padding: 8px 12px;
        gap: 10px
    }

    .x7q2-widget-text {
        font-size: .78rem
    }

    .x7q2-content-inner {
        padding: 22px 16px
    }
}

@media (max-width: 480px) {
    .x7q2-hero-cta {
        flex-direction: column
    }

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

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

    .x7q2-mob-btns {
        flex-direction: column
    }

    .x7q2-mob-btns .btn {
        justify-content: center
    }
}

.wp-block-image figure {
    margin: 0
}

.aligncenter {
    text-align: center
}

.alignleft {
    float: left
}

.alignright {
    float: right
}

.size-full {
    max-width: 100%
}

.bamboo {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    color: var(--clr-text);
}

.bamboo > * {
    max-width: 100%;
}

.bamboo h1,
.bamboo h2,
.bamboo h3,
.bamboo h4 {
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.02em;
}

.bamboo h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    margin: 0 0 22px;
}

.bamboo h2 {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 750;
    margin: 38px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(76, 175, 80, .2);
}

.bamboo h3 {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    margin: 26px 0 12px;
}

.bamboo h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.bamboo p,
.bamboo li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text-muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bamboo p {
    margin: 0 0 16px;
}

.bamboo p + h2,
.bamboo ul + h2,
.bamboo ol + h2,
.bamboo table + h2 {
    margin-top: 42px;
}

.bamboo ul,
.bamboo ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.bamboo ul {
    list-style: disc;
}

.bamboo ol {
    list-style: decimal;
}

.bamboo li {
    margin-bottom: 9px;
}

.bamboo li::marker {
    color: var(--clr-green);
}

.bamboo a {
    color: var(--clr-green);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease, opacity .2s ease;
}

.bamboo a:hover {
    color: var(--clr-gold);
    opacity: 1;
}

.bamboo strong {
    color: var(--clr-text);
    font-weight: 700;
}

.bamboo em {
    color: #d7e7d8;
    font-style: italic;
}

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

.bamboo img {
    border-radius: 12px;
    margin: 14px 0;
}

.bamboo table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: 14px;
}

.bamboo tbody,
.bamboo thead,
.bamboo tr {
    width: 100%;
}

.bamboo th,
.bamboo td {
    padding: 12px 14px;
    border: 1px solid var(--clr-card-border);
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.bamboo th {
    background: rgba(76, 175, 80, .12);
    color: #fff;
    font-size: .83rem;
    font-weight: 700;
}

.bamboo td {
    color: var(--clr-text);
    font-size: .88rem;
}

.bamboo tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.bamboo blockquote {
    margin: 20px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--clr-green);
    background: rgba(76, 175, 80, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bamboo blockquote p:last-child {
    margin-bottom: 0;
}

.bamboo hr {
    border: 0;
    border-top: 1px solid var(--clr-card-border);
    margin: 26px 0;
}

.bamboo > ul,
.bamboo > ol {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: 14px;
    padding: 18px 18px 18px 36px;
}

.bamboo > ul li,
.bamboo > ol li {
    color: var(--clr-text);
}

.bamboo > p:first-of-type {
    font-size: 1rem;
    color: #dcebdd;
}

.bamboo h2 + ul,
.bamboo h2 + ol,
.bamboo h3 + ul,
.bamboo h3 + ol {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .bamboo {
        max-width: 100%;
        padding: 32px 18px 44px;
    }

    .bamboo h1 {
        margin-bottom: 20px;
    }

    .bamboo h2 {
        margin: 32px 0 12px;
        padding-bottom: 8px;
    }

    .bamboo h3 {
        margin: 22px 0 10px;
    }

    .bamboo p,
    .bamboo li {
        font-size: 14px;
        line-height: 1.75;
    }

    .bamboo th,
    .bamboo td {
        padding: 11px 12px;
    }

    .bamboo img {
        margin: 12px 0;
    }
}

@media (max-width: 767px) {
    .bamboo {
        padding: 24px 14px 36px;
    }

    .bamboo h1 {
        font-size: 1.7rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .bamboo h2 {
        font-size: 1.22rem;
        margin: 26px 0 10px;
    }

    .bamboo h3 {
        font-size: 1rem;
        margin: 18px 0 8px;
    }

    .bamboo p,
    .bamboo li {
        font-size: 13.5px;
        line-height: 1.72;
    }

    .bamboo ul,
    .bamboo ol {
        padding-left: 18px;
        margin-bottom: 16px;
    }

    .bamboo > ul,
    .bamboo > ol {
        padding: 14px 12px 14px 26px;
    }

    .bamboo table {
        margin: 16px 0 20px;
        border-radius: 10px;
    }

    .bamboo th,
    .bamboo td {
        padding: 10px 11px;
        font-size: .8rem;
    }

    .bamboo blockquote {
        padding: 12px 14px;
    }

    .bamboo img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .bamboo {
        padding: 20px 10px 30px;
    }

    .bamboo h1 {
        font-size: 1.45rem;
    }

    .bamboo h2 {
        font-size: 1.08rem;
        margin: 22px 0 10px;
    }

    .bamboo h3 {
        font-size: .96rem;
    }

    .bamboo p,
    .bamboo li {
        font-size: 13px;
        line-height: 1.68;
    }

    .bamboo ul,
    .bamboo ol {
        padding-left: 16px;
    }

    .bamboo > ul,
    .bamboo > ol {
        padding: 12px 10px 12px 22px;
        border-radius: 10px;
    }

    .bamboo li {
        margin-bottom: 7px;
    }

    .bamboo th,
    .bamboo td {
        padding: 9px 10px;
        font-size: .76rem;
    }

    .bamboo img {
        border-radius: 8px;
    }
}

.bamboo {
    border: 2px solid var(--clr-green);
    border-radius: 18px;
    padding: 40px 24px;
    background: var(--clr-card);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .45);
    margin: 32px auto;
    max-width: 980px;
}

#x7q2-header.x7q2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(12px);
}

body {
    padding-top: 88px;
}

.x7q2-mob-menu {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    z-index: 9998;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    body {
        padding-top: 76px;
    }

    .x7q2-mob-menu {
        top: 76px;
        max-height: calc(100vh - 76px);
    }
}

html, body {
    overflow-x: hidden;
}

body {
    min-width: 320px;
}

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

.x7q2-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

hero_section,
advantages_section,
winners_section,
app_section,
faq_section {
    display: block;
    width: 100%;
}

.x7q2-hero {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
}

.x7q2-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 32px;
    align-items: center;
}

.x7q2-hero-content {
    min-width: 0;
}

.x7q2-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    margin: 0 0 18px;
}

.x7q2-hero-sub {
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.x7q2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.x7q2-hero-badge svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.x7q2-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.x7q2-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.x7q2-hero-stat {
    min-width: 0;
}

.x7q2-hero-stat strong,
.x7q2-hero-stat span {
    display: block;
}

.x7q2-promo-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    border-radius: 24px;
}

.x7q2-promo-bonus {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.x7q2-promo-bonus span {
    display: block;
    margin-top: 6px;
    font-size: .5em;
}

.x7q2-promo-sub {
    line-height: 1.6;
}

.x7q2-promo-code-wrap {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

.x7q2-promo-code {
    flex: 1 1 220px;
    min-width: 0;
}

.x7q2-copy-btn {
    flex: 0 0 auto;
}

.x7q2-section-title {
    margin-bottom: 28px;
}

.x7q2-section-title h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin: 10px 0 14px;
}

.x7q2-section-title p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.x7q2-adv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.x7q2-adv-card {
    min-width: 0;
    padding: 24px;
    border-radius: 22px;
}

.x7q2-adv-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 14px 0 10px;
}

.x7q2-adv-card p {
    font-size: 15px;
    line-height: 1.7;
}

.x7q2-adv-icon {
    width: 56px;
    height: 56px;
}

.x7q2-adv-icon svg {
    width: 24px;
    height: 24px;
}

.x7q2-winners-refresh {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.x7q2-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.x7q2-winners-table-wrap,
.x7q2-app-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.x7q2-winners-note {
    margin-top: 14px;
    line-height: 1.6;
}

.x7q2-app-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 380px);
    gap: 28px;
    align-items: start;
}

.x7q2-app-info,
.x7q2-app-img-side {
    min-width: 0;
}

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

.x7q2-app-table td {
    padding: 14px 16px;
    vertical-align: top;
}

.x7q2-download-btns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.x7q2-dl-btn {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
}

.x7q2-dl-btn-icon {
    flex: 0 0 28px;
}

.x7q2-dl-btn-icon svg {
    width: 28px;
    height: 28px;
}

.x7q2-dl-btn-text {
    min-width: 0;
}

.x7q2-dl-btn-text small,
.x7q2-dl-btn-text strong {
    display: block;
}

.x7q2-app-devices {
    display: grid;
    gap: 12px;
}

.x7q2-device-card {
    min-width: 0;
    padding: 20px 16px;
    border-radius: 20px;
    text-align: center;
}

.x7q2-device-card svg {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
}

.x7q2-device-card strong {
    display: block;
    margin-bottom: 4px;
}

.x7q2-demo-wrap {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.x7q2-demo-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
}

.x7q2-demo-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-wrap: wrap;
}

.x7q2-demo-frame iframe {
    display: block;
    width: 100%;
    height: 640px;
    border: 0;
}

.x7q2-demo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
}

.x7q2-demo-cta p {
    margin: 0;
    line-height: 1.6;
}

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

.x7q2-faq-list {
    display: grid;
    gap: 14px;
}

.x7q2-faq-item {
    border-radius: 20px;
    overflow: hidden;
}

.x7q2-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
}

.x7q2-faq-q span {
    min-width: 0;
}

.x7q2-faq-chevron {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.x7q2-faq-a-inner {
    padding: 0 22px 20px;
    line-height: 1.7;
}

.btn {
    max-width: 100%;
}

.btn svg {
    flex: 0 0 auto;
}

@media (max-width: 1199px) {
    .x7q2-hero-inner,
    .x7q2-app-inner {
        grid-template-columns: 1fr;
    }

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

    .x7q2-download-btns {
        grid-template-columns: 1fr;
    }

    .x7q2-demo-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .x7q2-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .x7q2-hero {
        padding: 20px;
        border-radius: 20px;
    }

    .x7q2-hero h1 {
        font-size: clamp(34px, 6vw, 48px);
    }

    .x7q2-hero-sub {
        font-size: 16px;
    }

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

    .x7q2-adv-grid {
        gap: 16px;
    }

    .x7q2-adv-card {
        padding: 20px;
    }

    .x7q2-demo-frame iframe {
        height: 500px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 76px;
    }

    .x7q2-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .x7q2-hero {
        padding: 16px;
        border-radius: 18px;
    }

    .x7q2-hero-inner {
        gap: 18px;
    }

    .x7q2-hero h1 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.12;
    }

    .x7q2-hero-sub {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .x7q2-hero-badge {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 14px;
    }

    .x7q2-hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .x7q2-hero-cta .btn,
    .x7q2-promo-card .btn,
    .x7q2-demo-toolbar .btn,
    .x7q2-demo-cta-btns .btn,
    .x7q2-mob-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .x7q2-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .x7q2-hero-stat {
        padding: 14px 12px;
        border-radius: 16px;
    }

    .x7q2-hero-stat strong {
        font-size: 18px;
        line-height: 1.2;
    }

    .x7q2-hero-stat span {
        font-size: 12px;
        line-height: 1.4;
    }

    .x7q2-promo-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .x7q2-promo-card-title {
        font-size: 14px;
    }

    .x7q2-promo-bonus {
        font-size: 34px;
    }

    .x7q2-promo-sub,
    .x7q2-promo-status {
        font-size: 13px;
        line-height: 1.6;
    }

    .x7q2-promo-code-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .x7q2-promo-code,
    .x7q2-copy-btn {
        width: 100%;
    }

    .x7q2-section-title {
        margin-bottom: 22px;
    }

    .x7q2-section-title h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.2;
        margin: 8px 0 12px;
    }

    .x7q2-section-title p {
        font-size: 14px;
        line-height: 1.65;
    }

    .x7q2-adv-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .x7q2-adv-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .x7q2-adv-card h3 {
        font-size: 18px;
        margin: 12px 0 8px;
    }

    .x7q2-adv-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .x7q2-adv-icon {
        width: 46px;
        height: 46px;
    }

    .x7q2-adv-icon svg {
        width: 20px;
        height: 20px;
    }

    .x7q2-winners-refresh {
        justify-content: stretch;
    }

    .x7q2-refresh-btn {
        width: 100%;
        justify-content: center;
    }

    .x7q2-winners-table {
        min-width: 640px;
    }

    .x7q2-winners-table th,
    .x7q2-winners-table td {
        white-space: nowrap;
        padding: 12px 10px;
        font-size: 13px;
    }

    .x7q2-winners-note {
        font-size: 13px;
        line-height: 1.6;
    }

    .x7q2-app-table {
        min-width: 520px;
    }

    .x7q2-app-table td {
        padding: 12px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .x7q2-download-btns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .x7q2-dl-btn {
        padding: 14px;
        border-radius: 16px;
    }

    .x7q2-dl-btn-text strong {
        font-size: 15px;
    }

    .x7q2-app-img-side {
        gap: 12px;
    }

    .x7q2-app-devices {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .x7q2-device-card {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .x7q2-demo-wrap {
        border-radius: 18px;
    }

    .x7q2-demo-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
    }

    .x7q2-demo-toolbar-left {
        justify-content: flex-start;
    }

    .x7q2-demo-frame iframe {
        height: 320px;
    }

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

    .x7q2-demo-cta p {
        font-size: 14px;
        line-height: 1.6;
    }

    .x7q2-demo-cta-btns {
        flex-direction: column;
        gap: 10px;
    }

    .x7q2-faq-list {
        gap: 12px;
    }

    .x7q2-faq-item {
        border-radius: 16px;
    }

    .x7q2-faq-q {
        padding: 16px;
        gap: 12px;
    }

    .x7q2-faq-q span {
        font-size: 15px;
        line-height: 1.45;
    }

    .x7q2-faq-a-inner {
        padding: 0 16px 16px;
        font-size: 14px;
        line-height: 1.65;
    }

    .x7q2-nav {
        display: none;
    }

    .x7q2-online,
    .x7q2-header-right .btn {
        display: none;
    }

    .x7q2-burger {
        display: inline-flex;
    }
}

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

    .x7q2-hero {
        padding: 14px;
    }

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

    .x7q2-hero-stats {
        grid-template-columns: 1fr;
    }

    .x7q2-hero-stat strong {
        font-size: 17px;
    }

    .x7q2-promo-bonus {
        font-size: 30px;
    }

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

    .x7q2-demo-frame iframe {
        height: 260px;
    }

    .x7q2-faq-q span {
        font-size: 14px;
    }

    .x7q2-faq-a-inner {
        font-size: 13px;
    }
}

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

body {
    min-width: 320px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

.x7q2-wrap,
#x7q2-main,
.x7q2-container,
hero_section,
advantages_section,
winners_section,
app_section,
faq_section,
.x7q2-hero,
.x7q2-hero-inner,
.x7q2-hero-content,
.x7q2-promo-card,
.x7q2-adv-grid,
.x7q2-adv-card,
.x7q2-app-inner,
.x7q2-app-info,
.x7q2-app-img-side,
.x7q2-demo-wrap,
.x7q2-faq-list,
.x7q2-faq-item {
    width: 100%;
    max-width: 100%;
}

.x7q2-container,
#x7q2-main {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.x7q2-hero-inner,
.x7q2-app-inner {
    display: flex;
    flex-direction: column;
}

.x7q2-adv-grid,
.x7q2-download-btns,
.x7q2-app-devices,
.x7q2-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
}

.x7q2-hero-cta,
.x7q2-demo-cta-btns,
.x7q2-promo-code-wrap {
    display: flex;
    flex-direction: column;
}

.x7q2-hero-cta .btn,
.x7q2-demo-cta-btns .btn,
.x7q2-promo-code,
.x7q2-copy-btn,
.x7q2-dl-btn {
    width: 100%;
    max-width: 100%;
}

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

iframe {
    width: 100%;
    display: block;
}

.x7q2-winners-table-wrap,
.x7q2-app-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.x7q2-winners-table,
.x7q2-app-table {
    min-width: 600px;
}

.x7q2-demo-wrap,
.x7q2-hero,
.x7q2-promo-card,
.x7q2-adv-card,
.x7q2-device-card,
.x7q2-faq-item {
    overflow: hidden;
}

@media (max-width: 767px) {
    .x7q2-nav,
    .x7q2-online,
    .x7q2-header-right .btn {
        display: none;
    }

    .x7q2-burger {
        display: inline-flex;
    }

    .x7q2-hero h1 {
        font-size: 28px;
        line-height: 1.15;
        word-break: break-word;
    }

    .x7q2-section-title h2 {
        font-size: 24px;
        line-height: 1.2;
        word-break: break-word;
    }

    .x7q2-demo-frame iframe {
        height: 300px;
    }
}