@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-primary: #13ca90;
    --c-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-text-muted: #9097ad;
    --c-border: #252730;
    --c-card: #1c1e25;
    --c-card-hover: #22242d;
    --c-input: #1e2028;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: 0.22s ease;
}

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

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

body {
    font-family: 'Satoshi', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #0fad79;
}

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

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

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

.btn--primary:hover {
    background: #0fad79;
    color: #0d1117;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(19, 202, 144, 0.35);
}

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

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

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

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

.btn:active {
    transform: scale(0.97);
}

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin-left: 8px;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
}

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

.header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

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

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

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

.online-count {
    color: var(--c-primary);
    font-weight: 600;
}

.lang-selector {
    position: relative;
}

.lang-selector select {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
    outline: none;
    font-family: 'Satoshi', sans-serif;
    appearance: none;
    padding-right: 24px;
}

.lang-selector::after {
    content: '▾';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
    color: var(--c-text-muted);
}

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

.burger-btn {
    display: none;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 12px 20px 16px;
    gap: 4px;
}

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

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
}

.mobile-nav a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav .nav-icon {
    width: 18px;
    height: 18px;
}

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

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 22, 26, 0.92) 38%, rgba(21, 22, 26, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(19, 202, 144, 0.12);
    border: 1px solid rgba(19, 202, 144, 0.3);
    color: var(--c-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--c-primary);
}

.hero p {
    font-size: 17px;
    color: rgba(232, 234, 240, 0.8);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.hero-bonus-text {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 14px;
}

.hero-bonus-text strong {
    color: var(--c-primary);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.25;
}

.section-desc {
    color: var(--c-text-muted);
    font-size: 15px;
    margin-top: 8px;
    max-width: 580px;
}

/* ===================== INFO TABLE ===================== */
.info-table-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

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

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

.info-table td {
    padding: 13px 20px;
    font-size: 14px;
    vertical-align: middle;
}

.info-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 500;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-table td:last-child {
    color: var(--c-text);
    font-weight: 500;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: rgba(61, 24, 164, 0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 16px;
    height: 16px;
    color: var(--c-secondary);
    fill: currentColor;
}

.info-badge {
    display: inline-block;
    background: rgba(19, 202, 144, 0.12);
    color: var(--c-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

/* ===================== ADVANTAGES ===================== */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.advantage-card {
    flex: 1 1 240px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
    border-color: rgba(19, 202, 144, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.adv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgba(19, 202, 144, 0.1);
}

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

.advantage-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}

.advantage-card p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* ===================== PAYMENT TABLE ===================== */
.payment-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
}

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

.payment-table th {
    background: var(--c-card);
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}

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

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

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

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

.payment-logo-icon {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 8px;
    font-weight: 800;
    color: #222;
    overflow: hidden;
}

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

.tag-free {
    color: var(--c-primary);
    font-size: 12px;
    font-weight: 600;
}

.tag-fast {
    color: #f59e0b;
    font-size: 12px;
    font-weight: 600;
}

/* ===================== SCREENSHOTS ===================== */
.screenshots-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1 1 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

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

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 202, 144, 0.1);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--c-primary);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.slider-track {
    display: flex;
    transition: transform 0.35s ease;
}

.slider-track .screenshot-item {
    flex: 0 0 calc(100% - 24px);
    margin: 0 12px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--c-primary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(22, 23, 27, 0.85);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--c-card);
}

.slider-btn--prev {
    left: 8px;
}

.slider-btn--next {
    right: 8px;
}

/* ===================== WHEEL GAME ===================== */
.wheel-section {
    background: linear-gradient(135deg, rgba(61, 24, 164, 0.08) 0%, rgba(19, 202, 144, 0.05) 100%);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.wheel-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wheel-canvas-wrap {
    position: relative;
    flex-shrink: 0;
}

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

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

.wheel-info {
    flex: 1 1 280px;
}

.wheel-info h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--c-text);
}

.wheel-info p {
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.wheel-result {
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: none;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.win {
    background: rgba(19, 202, 144, 0.1);
    border: 1px solid rgba(19, 202, 144, 0.3);
    display: block;
}

.wheel-result.lose {
    background: rgba(255, 80, 80, 0.07);
    border: 1px solid rgba(255, 80, 80, 0.2);
    display: block;
}

.wheel-result-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

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

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

.wheel-result p {
    color: var(--c-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

/* ===================== REVIEW CONTENT ===================== */
.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--c-border);
    background: rgba(61, 24, 164, 0.07);
}

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

.review-author h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
}

.review-author p {
    font-size: 13px;
    color: var(--c-text-muted);
}

.review-author a {
    color: var(--c-secondary);
    font-size: 13px;
}

.review-content-inner {
    padding: 28px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text);
}

.review-content-inner h2,
.review-content-inner h3,
.review-content-inner h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--c-text);
}

.review-content-inner p {
    margin-bottom: 14px;
}

.review-content-inner ul,
.review-content-inner ol {
    margin: 10px 0 14px 20px;
}

.review-content-inner li {
    margin-bottom: 6px;
}

.review-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

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

.review-content-inner table th {
    background: var(--c-card);
    font-weight: 600;
    color: var(--c-text-muted);
}

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

.review-content-inner strong {
    color: var(--c-primary);
}

.review-content-inner blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 10px 16px;
    margin: 14px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

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

.faq-item {
    background: var(--c-card);
    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.3);
}

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

.faq-chevron {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(19, 202, 144, 0.15);
}

.faq-chevron svg {
    width: 13px;
    height: 13px;
    stroke: var(--c-text-muted);
}

.faq-item.open .faq-chevron svg {
    stroke: var(--c-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding var(--transition);
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65;
}

/* ===================== COMMENTS ===================== */
.comments-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.comment-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    animation: fadeInUp 0.4s ease;
}

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

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.comment-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
}

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

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

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

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

.comment-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
}

.comment-form-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--c-text);
}

.form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--c-input);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

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

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

.form-star-rating {
    display: flex;
    gap: 6px;
}

.form-star {
    font-size: 22px;
    cursor: pointer;
    color: var(--c-border);
    transition: color var(--transition);
    user-select: none;
}

.form-star.active,
.form-star:hover {
    color: #f59e0b;
}

.form-success {
    display: none;
    background: rgba(19, 202, 144, 0.1);
    border: 1px solid rgba(19, 202, 144, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--c-primary);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 12px;
}

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

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

.footer-inner {
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border);
}

.footer-brand {
    flex: 1 1 220px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    max-width: 260px;
}

.footer-flag {
    margin-top: 12px;
    font-size: 22px;
}

.footer-col {
    flex: 1 1 160px;
}

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--c-text);
}

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

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
    text-decoration: none;
}

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

.social-link svg {
    width: 16px;
    height: 16px;
    color: var(--c-text-muted);
}

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

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 20px;
}

.footer-logos-row + .footer-logos-row {
    border-top: none;
}

.footer-logo-chip {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.footer-logo-chip.trust {
    color: var(--c-primary);
    border-color: rgba(19, 202, 144, 0.2);
    background: rgba(19, 202, 144, 0.06);
}

.age-chip {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-copyright {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.65;
    max-width: 600px;
}

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

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--c-header);
    border-top: 1px solid rgba(19, 202, 144, 0.3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    animation: slideUp 0.5s ease 1.2s both;
}

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

.widget-text .widget-bonus {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
}

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

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    transition: color var(--transition);
    margin-left: auto;
}

.widget-close:hover {
    color: var(--c-text);
}

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

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

.lightbox.open {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

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

.fade-in-up {
    animation: fadeInUp 0.5s ease both;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border) 20%, var(--c-border) 80%, transparent);
    margin: 0;
}

/* ===================== INFO PAGE ===================== */
.info-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin: 40px 0;
}

.info-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--c-primary);
}

.info-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: var(--c-text-muted);
}

.info-content ul, .info-content ol {
    margin: 10px 0 14px 20px;
}

.info-content li {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

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

.info-content strong {
    color: var(--c-text);
}

/* ===================== HIDDEN WP ARTIFACTS ===================== */
.wp-block-group {
    display: block;
}

.elementor-widget-wrap {
    position: static;
}

.wpcf7 {
    display: none;
}

.wp-emoji-link {
    display: none !important;
}

#wpadminbar {
    display: none !important;
}

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

    .online-counter {
        display: none;
    }

    .lang-selector {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .wheel-inner {
        flex-direction: column;
        align-items: center;
    }

    #wheelCanvas {
        width: 220px !important;
        height: 220px !important;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 380px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .section {
        padding: 44px 0;
    }

    .info-table td {
        padding: 11px 14px;
        font-size: 13px;
    }

    .comment-form-wrap {
        padding: 20px 18px;
    }

    .footer-top {
        gap: 22px;
    }

    .sticky-widget {
        padding: 10px 16px;
    }

    .footer-inner {
        padding: 36px 0 20px;
    }

    .info-content {
        padding: 24px 20px;
    }
}

@media (max-width: 400px) {
    .btn--lg {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 24px;
    }
}
