@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-primary: #13ca90;
    --c-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-text-muted: #9ba3b8;
    --c-card: #1c1d23;
    --c-card-alt: #1f2029;
    --c-border: #2a2c38;
    --c-white: #ffffff;
    --c-star: #f5c518;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 24px rgba(19, 202, 144, 0.18);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #0fa876;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-white);
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    color: var(--c-text);
    margin-bottom: 0.85em;
}

ul, ol {
    padding-left: 1.4em;
}

ul li, ol li {
    margin-bottom: 0.4em;
    color: var(--c-text);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--c-primary);
    color: #0a1a14;
}

.btn--primary:hover {
    background: #0fa876;
    color: #0a1a14;
    box-shadow: 0 0 18px rgba(19, 202, 144, 0.45);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--c-secondary);
    color: #fff;
}

.btn--secondary:hover {
    background: #4e22c5;
    color: #fff;
    box-shadow: 0 0 18px rgba(61, 24, 164, 0.45);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--c-primary);
    border: 1.5px solid var(--c-primary);
}

.btn--outline:hover {
    background: var(--c-primary);
    color: #0a1a14;
}

.btn--lg {
    padding: 15px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

.section-label {
    display: inline-block;
    background: rgba(19, 202, 144, 0.12);
    color: var(--c-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.section-title {
    margin-bottom: 10px;
    color: var(--c-white);
}

.section-desc {
    color: var(--c-text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 600px;
}

.xw7k9 {
    display: none !important;
}

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

.dn8m3 {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

/* ==================== HEADER ==================== */
#x-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 70px;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.hdr-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-logo img {
    height: 40px;
    width: auto;
}

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

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.hdr-nav a:hover, .hdr-nav a.active {
    color: var(--c-primary);
    background: rgba(19, 202, 144, 0.08);
}

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

.hdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-muted);
    font-size: 0.78rem;
    white-space: nowrap;
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(19, 202, 144, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(19, 202, 144, 0);
    }
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 150px;
    box-shadow: var(--shadow);
    z-index: 200;
    overflow: hidden;
}

.lang-dropdown.open {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--c-text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background var(--transition);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--c-primary);
}

.lang-dropdown a.current {
    color: var(--c-primary);
    background: rgba(19, 202, 144, 0.08);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 12px 20px 20px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-primary);
}

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

.mobile-menu-divider {
    height: 1px;
    background: var(--c-border);
    margin: 8px 0;
}

/* ==================== HERO ==================== */
#x-hero {
    position: relative;
    overflow: hidden;
    background: var(--c-bg);
}

.hero-slider {
    position: relative;
    height: 540px;
}

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

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

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

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 22, 26, 0.92) 0%, rgba(21, 22, 26, 0.55) 60%, rgba(21, 22, 26, 0.2) 100%);
}

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

.hero-slide-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(19, 202, 144, 0.15);
    border: 1px solid rgba(19, 202, 144, 0.35);
    color: var(--c-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.hero-slide-content h1, .hero-slide-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide-content p {
    font-size: 1.05rem;
    color: rgba(232, 234, 240, 0.85);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    bottom: 24px;
    left: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--c-primary);
    width: 28px;
    border-radius: 4px;
}

.hero-arrows {
    position: absolute;
    right: 40px;
    bottom: 16px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.hero-arrow:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #0a1a14;
}

.hero-arrow svg {
    width: 18px;
    height: 18px;
}

/* ==================== SECTIONS ==================== */
.x-section {
    padding: 70px 0;
}

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

.x-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

/* ==================== PAYMENT METHODS TABLE ==================== */
.payment-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    font-size: 0.9rem;
}

.payment-table th {
    background: #1a1b22;
    color: var(--c-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 16px;
    text-align: left;
    border-bottom: 2px solid var(--c-border);
    white-space: nowrap;
}

.payment-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
    vertical-align: middle;
}

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

.payment-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--c-white);
}

.pm-logo-icon {
    width: 40px;
    height: 26px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.pm-logo-icon.visa {
    background: #1a1f71;
    color: #fff;
}

.pm-logo-icon.mc {
    background: #eb001b;
    color: #fff;
}

.pm-logo-icon.crypto {
    background: #f7931a;
    color: #fff;
}

.pm-logo-icon.bank {
    background: #2d6cdf;
    color: #fff;
}

.pm-logo-icon.eth {
    background: #627eea;
    color: #fff;
}

.pm-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pm-badge.green {
    background: rgba(19, 202, 144, 0.15);
    color: var(--c-primary);
}

.pm-badge.blue {
    background: rgba(61, 24, 164, 0.15);
    color: #a78bfa;
}

.pm-badge.orange {
    background: rgba(251, 146, 60, 0.15);
    color: #fb923c;
}

/* ==================== VIDEO REVIEW ==================== */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-md);
}

/* ==================== SPIN WHEEL ==================== */
.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.wheel-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.wheel-canvas-holder {
    position: relative;
}

#spinWheel {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(19, 202, 144, 0.25), 0 0 0 4px var(--c-border);
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 26px solid var(--c-primary);
    filter: drop-shadow(0 2px 8px rgba(19, 202, 144, 0.6));
}

.wheel-result {
    text-align: center;
    padding: 24px 32px;
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    min-width: 260px;
}

.wheel-result.win .wheel-result-title {
    color: var(--c-primary);
}

.wheel-result.lose .wheel-result-title {
    color: #f87171;
}

.wheel-result-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.wheel-result-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.wheel-result-text {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

/* ==================== CONTENT BLOCK ==================== */
.content-review {
    line-height: 1.75;
}

.content-review h1,
.content-review h2,
.content-review h3,
.content-review h4,
.content-review h5,
.content-review h6 {
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    color: var(--c-white);
}

.content-review h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 10px;
}

.content-review h3 {
    font-size: 1.2rem;
    color: var(--c-primary);
}

.content-review p {
    margin-bottom: 1em;
    color: var(--c-text);
}

.content-review ul, .content-review ol {
    margin: 0.8em 0 1.2em 1.5em;
}

.content-review li {
    margin-bottom: 0.5em;
    color: var(--c-text);
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow-x: auto;
    display: block;
}

.content-review table th,
.content-review table td {
    border: 1px solid var(--c-border);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.9rem;
}

.content-review table th {
    background: #1a1b22;
    color: var(--c-text-muted);
    font-weight: 700;
}

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

.content-review table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.content-review blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: rgba(19, 202, 144, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    color: var(--c-text);
    font-style: italic;
}

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

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

.content-review strong {
    color: var(--c-white);
    font-weight: 700;
}

.content-review code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
    color: #a78bfa;
}

/* ==================== SECURITY TABLE ==================== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: border-color var(--transition);
}

.security-item:hover {
    border-color: rgba(19, 202, 144, 0.35);
}

.security-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(19, 202, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon svg {
    width: 22px;
    height: 22px;
    color: var(--c-primary);
}

.security-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--c-white);
}

.security-info p {
    font-size: 0.84rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.5;
}

.security-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-top: 6px;
}

.security-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
}

/* ==================== FAQ ==================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item.open {
    border-color: rgba(19, 202, 144, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--c-white);
    gap: 12px;
    user-select: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(19, 202, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--c-primary);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--c-primary);
}

.faq-item.open .faq-icon svg {
    transform: rotate(180deg);
    color: #0a1a14;
}

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

.faq-answer-inner {
    padding: 0 22px 20px;
    color: var(--c-text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ==================== REVIEWS ==================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
    border-color: rgba(19, 202, 144, 0.3);
    transform: translateY(-2px);
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--c-white);
}

.review-date {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Review Form */
.review-form-wrap {
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 580px;
}

.form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 22px;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text);
}

.form-input, .form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 0.93rem;
    padding: 11px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(19, 202, 144, 0.12);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--c-text-muted);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(19, 202, 144, 0.1);
    border: 1px solid rgba(19, 202, 144, 0.3);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    color: var(--c-primary);
    font-weight: 600;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ==================== AUTHOR BOX ==================== */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(61, 24, 164, 0.08);
    border: 1px solid rgba(61, 24, 164, 0.25);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-top: 32px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.author-link {
    font-size: 0.82rem;
    color: var(--c-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.author-link:hover {
    color: var(--c-primary);
}

/* ==================== FOOTER ==================== */
#x-site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--c-border);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 14px;
}

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

.footer-brand-text {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.footer-country img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
}

.footer-nav-col {
    min-width: 160px;
}

.footer-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.footer-nav-col a {
    display: block;
    font-size: 0.87rem;
    color: var(--c-text-muted);
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-nav-col a:hover {
    color: var(--c-primary);
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(19, 202, 144, 0.12);
    border-color: var(--c-primary);
    color: var(--c-primary);
}

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

.footer-logos-row {
    margin-bottom: 28px;
}

.footer-logos-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.footer-logos-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.footer-logo-chip:hover {
    border-color: rgba(19, 202, 144, 0.3);
    color: var(--c-text);
}

.footer-logo-chip .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.footer-logo-chip .dot.green {
    background: var(--c-primary);
}

.footer-logo-chip .dot.orange {
    background: #f97316;
}

.footer-logo-chip .dot.blue {
    background: #3b82f6;
}

.footer-logo-chip .dot.red {
    background: #ef4444;
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 24px 0;
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

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

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

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--c-text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

/* ==================== PROMO WIDGET ==================== */
#x-promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0f1218 0%, #1a1022 50%, #0f1218 100%);
    border-top: 1px solid var(--c-border);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

#x-promo-widget.visible {
    transform: translateY(0);
}

.widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.widget-text-col {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 220px;
}

.widget-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(19, 202, 144, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-icon svg {
    width: 22px;
    height: 22px;
    color: var(--c-primary);
}

.widget-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.widget-sub {
    font-size: 0.76rem;
    color: var(--c-text-muted);
}

.widget-code-col {
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-code {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px dashed var(--c-primary);
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: 0.1em;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(19, 202, 144, 0.1);
    border: 1px solid rgba(19, 202, 144, 0.3);
    color: var(--c-primary);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(19, 202, 144, 0.2);
}

.copy-btn svg {
    width: 15px;
    height: 15px;
}

.copy-btn.copied {
    color: var(--c-primary);
}

.widget-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.widget-close svg {
    width: 12px;
    height: 12px;
}

/* ==================== FADE-IN ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ==================== TRANSITION DIVIDER ==================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--c-border) 30%, var(--c-border) 70%, transparent 100%);
    margin: 0;
}

/* ==================== WP-STYLE HIDDEN ELEMENTS ==================== */
.wp-block-group {
    display: contents;
}

.entry-content {
    display: contents;
}

#wpadminbar {
    display: none !important;
}

.wp-caption {
    display: none;
}

.elementor-hidden {
    display: none !important;
}

.fl-module {
    display: contents;
}

.wp-block-spacer {
    display: none;
}

/* ==================== INFO PAGE ==================== */
.info-page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 20px 70px;
}

.info-page-content h1 {
    margin-bottom: 22px;
}

.info-page-content h2 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.info-page-content p {
    color: var(--c-text-muted);
    margin-bottom: 1em;
}

.info-page-content ul li {
    color: var(--c-text-muted);
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hdr-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hdr-online {
        display: none;
    }
}

@media (max-width: 768px) {
    .hdr-inner {
        height: 62px;
    }

    .hero-slider {
        height: 420px;
    }

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

    .hero-slide-content h1, .hero-slide-content h2 {
        font-size: 1.8rem;
    }

    .hero-controls {
        left: 20px;
    }

    .hero-arrows {
        right: 20px;
    }

    .x-block {
        padding: 22px 18px;
    }

    .x-section {
        padding: 50px 0;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

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

    .widget-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .review-form-wrap {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 360px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .widget-code-col {
        width: 100%;
        justify-content: center;
    }

    .author-box {
        flex-direction: column;
    }

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.faq-item {
    background: linear-gradient(180deg, #1f2129, #181920);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.faq-item:hover {
    border-color: rgba(19, 202, 144, .45);
    transform: translateY(-2px);
}

.faq-item.active,
.faq-item.open {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 1px rgba(19, 202, 144, .18), 0 14px 40px rgba(19, 202, 144, .15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-question:hover {
    color: var(--c-primary);
}

.faq-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(19, 202, 144, .1);
    border: 1px solid rgba(19, 202, 144, .25);
    color: var(--c-primary);
    transition: .3s;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    transition: transform .3s;
}

.faq-item.active .faq-icon,
.faq-item.open .faq-icon {
    background: var(--c-primary);
    color: #111;
}

.faq-item.active .faq-icon svg,
.faq-item.open .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 26px 24px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .faq-list {
        gap: 12px;
        margin-top: 24px;
    }

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

    .faq-question {
        padding: 18px;
        font-size: 16px;
        gap: 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .faq-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-answer-inner {
        padding: 0 18px 18px;
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

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

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .faq-answer-inner {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}