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

:root {
    --c-header: #16171b;
    --c-footer: #16171b;
    --c-bg: #15161a;
    --c-btn-secondary: #3d18a4;
    --c-btn-primary: #13ca90;
    --c-btn-primary-hover: #0fb37a;
    --c-btn-secondary-hover: #310e8c;
    --c-text: #e8eaf0;
    --c-text-muted: #9098b1;
    --c-text-accent: #13ca90;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-card: #1c1d23;
    --c-card-hover: #22232c;
    --c-input-bg: #1c1d23;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.22s ease;
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.38);
    --shadow-glow-green: 0 0 24px rgba(19, 202, 144, 0.18);
    --shadow-glow-purple: 0 0 24px rgba(61, 24, 164, 0.22);
    --font-main: 'Satoshi', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: #15161a;
}

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

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

a:hover {
    color: var(--c-btn-primary);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-main);
}

input, textarea, select {
    font-family: var(--font-main);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #fff;
    box-shadow: 0 2px 16px rgba(19, 202, 144, 0.25);
}

.btn--primary:hover {
    background: var(--c-btn-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(19, 202, 144, 0.38);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: #fff;
    box-shadow: 0 2px 16px rgba(61, 24, 164, 0.22);
}

.btn--secondary:hover {
    background: var(--c-btn-secondary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(61, 24, 164, 0.38);
}

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

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

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

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

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

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

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

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

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

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

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-right: 8px;
}

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

@keyframes pulse {
    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);
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

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

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

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

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

.x7f3k2 {
    display: none;
}

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

.nav-placeholder-rz41 {
    position: absolute;
    left: -9999px;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.hero-slide.active {
    position: relative;
    opacity: 1;
}

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

.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.6) 50%, rgba(21, 22, 26, 0.2) 100%);
}

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

.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.3);
    color: var(--c-btn-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-slide-content h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero-slide-content h2 span {
    color: var(--c-btn-primary);
}

.hero-slide-content p {
    font-size: 16px;
    color: rgba(232, 234, 240, 0.8);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-slide-content .hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

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

.hero-dot.active {
    background: var(--c-btn-primary);
    transform: scale(1.3);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 5;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(22, 23, 27, 0.7);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    color: var(--c-text);
}

.hero-arrow:hover {
    background: var(--c-btn-primary);
}

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

.section {
    padding: 64px 0;
}

.section--alt {
    background: rgba(28, 29, 35, 0.5);
}

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

.section-title span {
    color: var(--c-btn-primary);
}

.section-subtitle {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 40px;
}

.section-head {
    margin-bottom: 40px;
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.toc-item:hover {
    background: var(--c-card-hover);
    border-color: rgba(19, 202, 144, 0.3);
    color: var(--c-btn-primary);
    transform: translateY(-2px);
}

.toc-item svg {
    width: 18px;
    height: 18px;
    color: var(--c-btn-primary);
    flex-shrink: 0;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

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

.payments-table th {
    background: rgba(61, 24, 164, 0.18);
    color: var(--c-text);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

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

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

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

.pm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.pm-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.pm-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(19, 202, 144, 0.12);
    color: var(--c-btn-primary);
    border: 1px solid rgba(19, 202, 144, 0.25);
}

.pm-badge--warn {
    background: rgba(255, 165, 0, 0.1);
    color: #ffaa00;
    border-color: rgba(255, 165, 0, 0.25);
}

.screenshots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1 1 calc(20% - 16px);
    min-width: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    position: relative;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-card);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.06);
}

.screenshot-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(21, 22, 26, 0.85));
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

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

.screenshot-item .overlay span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.winner-item:hover {
    background: var(--c-card-hover);
}

.winner-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.winner-rank--gold {
    background: linear-gradient(135deg, #f5c518, #e0930a);
    color: #fff;
}

.winner-rank--silver {
    background: linear-gradient(135deg, #b0bec5, #78909c);
    color: #fff;
}

.winner-rank--bronze {
    background: linear-gradient(135deg, #ce9560, #a0622d);
    color: #fff;
}

.winner-rank--rest {
    background: rgba(255, 255, 255, 0.07);
    color: var(--c-text-muted);
}

.winner-nick {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
}

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

.winner-amount {
    font-size: 15px;
    font-weight: 800;
    color: var(--c-btn-primary);
    white-space: nowrap;
}

.winner-bar-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    overflow: hidden;
}

.winner-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--c-btn-secondary), var(--c-btn-primary));
    border-radius: 2px;
}

.tournaments-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tournament-card {
    flex: 1 1 calc(20% - 20px);
    min-width: 220px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-purple);
    border-color: rgba(61, 24, 164, 0.4);
}

.tournament-card .tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(61, 24, 164, 0.18);
    border: 1px solid rgba(61, 24, 164, 0.3);
    color: #a78bfa;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: fit-content;
}

.tournament-card .tc-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.tournament-card .tc-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.tournament-card .tc-prize {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-btn-primary);
}

.tournament-card .tc-prize small {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-muted);
}

.tc-timer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tc-timer-block {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    min-width: 44px;
}

.tc-timer-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.tc-timer-label {
    display: block;
    font-size: 10px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.tc-timer-sep {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-btn-primary);
}

.tc-cta {
    margin-top: auto;
}

.demo-section {
    background: linear-gradient(135deg, rgba(61, 24, 164, 0.12) 0%, rgba(19, 202, 144, 0.08) 100%);
}

.demo-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.demo-controls {
    flex: 0 0 260px;
}

.demo-controls .section-title {
    margin-bottom: 20px;
}

.demo-slot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.demo-slot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.demo-slot-item.active, .demo-slot-item:hover {
    border-color: var(--c-btn-primary);
    background: rgba(19, 202, 144, 0.07);
}

.demo-slot-item .ds-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--c-btn-secondary), rgba(61, 24, 164, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-slot-item .ds-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.demo-slot-item .ds-info {
    flex: 1;
}

.demo-slot-item .ds-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text);
}

.demo-slot-item .ds-provider {
    font-size: 11px;
    color: var(--c-text-muted);
}

.demo-frame-wrap {
    flex: 1;
    min-width: 300px;
}

.demo-iframe-container {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    aspect-ratio: 16/10;
    background: #0a0a0f;
    box-shadow: var(--shadow-card);
}

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

.demo-cta-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.demo-cta-wrap p {
    font-size: 14px;
    color: var(--c-text-muted);
}

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

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

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

.review-author-info .name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.review-author-info .title {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

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

.review-author-info a:hover {
    color: var(--c-btn-primary);
}

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

.review-content h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    margin: 28px 0 12px;
    color: #fff;
}

.review-content h3 {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    margin: 24px 0 10px;
    color: #fff;
}

.review-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 8px;
    color: #fff;
}

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

.review-content ul, .review-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-content ul {
    list-style: disc;
}

.review-content ol {
    list-style: decimal;
}

.review-content li {
    line-height: 1.7;
}

.review-content a {
    color: var(--c-btn-secondary);
}

.review-content a:hover {
    color: var(--c-btn-primary);
}

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

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

.review-content em, .review-content i {
    font-style: italic;
}

.review-content code {
    background: rgba(255, 255, 255, 0.07);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

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

.review-content table th {
    background: rgba(61, 24, 164, 0.2);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    color: #fff;
    font-weight: 700;
}

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

.review-content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.review-content img {
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 28px 0;
}

.responsible-block {
    background: linear-gradient(135deg, rgba(61, 24, 164, 0.1), rgba(19, 202, 144, 0.05));
    border: 1px solid rgba(19, 202, 144, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.responsible-block .rg-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.responsible-block .rg-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(19, 202, 144, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.responsible-block .rg-icon svg {
    width: 28px;
    height: 28px;
    color: var(--c-btn-primary);
}

.responsible-block .rg-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.responsible-block .rg-subtitle {
    font-size: 14px;
    color: var(--c-text-muted);
}

.responsible-block p {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 20px;
}

.rg-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.rg-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    transition: border-color var(--transition), background var(--transition);
}

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

.rg-link svg {
    width: 16px;
    height: 16px;
    color: var(--c-btn-primary);
}

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

.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(61, 24, 164, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    user-select: none;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--c-btn-primary);
    transition: transform 0.3s ease;
}

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

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

.faq-answer.open {
    max-height: 600px;
    padding-bottom: 20px;
}

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

.faq-answer a {
    color: var(--c-btn-secondary);
}

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

.footer-top {
    padding: 48px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-col .fc-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.footer-flag svg {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

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

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

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

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

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.footer-badge svg {
    width: 18px;
    height: 18px;
}

.footer-badge--18 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    border-color: rgba(255, 50, 50, 0.3);
    color: #ff5555;
}

.footer-pm-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.footer-pm-logo svg {
    width: 18px;
    height: 18px;
}

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

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

.footer-copyright {
    font-size: 12px;
    color: rgba(144, 152, 177, 0.6);
    line-height: 1.6;
}

.footer-legal {
    font-size: 11px;
    color: rgba(144, 152, 177, 0.45);
    margin-top: 6px;
    line-height: 1.7;
}

.footer-license {
    font-size: 11px;
    color: rgba(144, 152, 177, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-license svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.promo-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: min(540px, calc(100vw - 32px));
    background: linear-gradient(135deg, #1e1030 0%, #0f1e18 100%);
    border: 1px solid rgba(19, 202, 144, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6), var(--shadow-glow-green);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.promo-widget.hidden {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.promo-widget-content {
    flex: 1;
}

.promo-widget-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}

.promo-widget-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-widget-code .code {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    font-family: monospace;
}

.promo-widget-code .copy-btn {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all var(--transition);
}

.promo-widget-code .copy-btn:hover {
    background: rgba(19, 202, 144, 0.1);
    border-color: var(--c-btn-primary);
    color: var(--c-btn-primary);
}

.promo-widget-code .copy-btn svg {
    width: 14px;
    height: 14px;
}

.promo-widget-bonus {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 4px;
}

.promo-widget-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 16px;
    line-height: 1;
    transition: background var(--transition), color var(--transition);
}

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

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

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
}

.card--glow:hover {
    box-shadow: var(--shadow-glow-purple);
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag--green {
    background: rgba(19, 202, 144, 0.12);
    color: var(--c-btn-primary);
    border: 1px solid rgba(19, 202, 144, 0.2);
}

.tag--purple {
    background: rgba(61, 24, 164, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(61, 24, 164, 0.25);
}

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

.animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

.entry-meta {
    display: none;
}

.widget-area {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.post-thumbnail {
    display: none;
}

@media (max-width: 1024px) {
    .tournaments-grid {
        gap: 14px;
    }

    .tournament-card {
        flex: 1 1 calc(33% - 14px);
    }

    .screenshots-grid .screenshot-item {
        flex: 1 1 calc(33% - 16px);
    }

    .footer-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        inset: 68px 0 0 0;
        background: var(--c-header);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid var(--c-border);
    }

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

    .header-nav a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        border-bottom: 1px solid var(--c-border);
    }

    .burger {
        display: flex;
    }

    .header-actions .btn--ghost {
        display: none;
    }

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

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: flex !important;
    }

    .tournaments-grid {
        display: none;
    }

    .tournaments-slider {
        display: flex !important;
    }

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

    .demo-controls {
        flex: 0 0 auto;
        width: 100%;
    }

    .demo-slot-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .demo-slot-item {
        flex: 1 1 calc(50% - 8px);
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .promo-widget {
        bottom: 10px;
    }

    .section {
        padding: 44px 0;
    }

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

    .responsible-block {
        padding: 24px 18px;
    }

    .table-wrap {
        margin: 0 -8px;
    }
}

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

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

    .toc-item {
        font-size: 13px;
        padding: 10px 14px;
    }

    .winner-bar-wrap {
        display: none;
    }

    .promo-widget {
        padding: 16px 16px;
    }

    .promo-widget-code .code {
        font-size: 16px;
    }

    .footer-badges {
        justify-content: center;
    }

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

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

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

.screenshots-slider::-webkit-scrollbar-track, .tournaments-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

.screenshots-slider::-webkit-scrollbar-thumb, .tournaments-slider::-webkit-scrollbar-thumb {
    background: var(--c-btn-secondary);
    border-radius: 2px;
}

.screenshots-slider .screenshot-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.tournaments-slider .tournament-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.info-page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 0;
}

.info-page-content h1 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.info-page-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px;
}

.info-page-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px;
}

.info-page-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 16px;
}

.info-page-content ul, .info-page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

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

.info-page-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text);
}

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

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

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

.info-page-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 28px 0;
}

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-page-content table th {
    background: rgba(61, 24, 164, 0.2);
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    color: #fff;
    font-weight: 700;
}

.info-page-content table td {
    padding: 11px 16px;
    border: 1px solid var(--c-border);
    text-align: left;
    color: var(--c-text);
}

.info-page-content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.info-page-content table a {
    color: var(--c-btn-secondary);
}

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

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

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

.form-group label span {
    color: #ff5555;
}

.form-group input, .form-group textarea, .form-group select {
    background: var(--c-input-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--c-text);
    font-size: 14px;
    font-family: var(--font-main);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: rgba(61, 24, 164, 0.5);
    box-shadow: 0 0 0 3px rgba(61, 24, 164, 0.12);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239098b1' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 38px;
}

.form-group select option {
    background: #1c1d23;
    color: var(--c-text);
}

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

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--c-btn-primary);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--c-btn-secondary);
}

#contact-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 24px 0;
}

.wp-content-placeholder {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.elementor-widget-text {
    display: none;
}

.wp-post-image {
    display: none;
}

.erzcxa {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px 0;
    padding: 32px;
    background: var(--c-card, #1b1c22);
    border: 1px solid var(--c-border, #2b2d36);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .25);
    overflow: hidden;
    box-sizing: border-box;
}

.erzcxa,
.erzcxa * {
    box-sizing: border-box;
}

.erzcxa > * {
    min-width: 0;
    max-width: 100%;
}

.erzcxa h1,
.erzcxa h2,
.erzcxa h3,
.erzcxa h4,
.erzcxa h5,
.erzcxa h6,
.erzcxa p,
.erzcxa li,
.erzcxa a,
.erzcxa span,
.erzcxa strong,
.erzcxa blockquote,
.erzcxa td,
.erzcxa th {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.erzcxa h1:first-child,
.erzcxa h2:first-child,
.erzcxa h3:first-child,
.erzcxa p:first-child {
    margin-top: 0;
}

.erzcxa > *:last-child {
    margin-bottom: 0;
}

.erzcxa p {
    line-height: 1.75;
}

.erzcxa ul,
.erzcxa ol {
    max-width: 100%;
    margin: 16px 0;
    padding-left: 24px;
}

.erzcxa li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.erzcxa a {
    max-width: 100%;
    word-break: break-word;
}

.erzcxa img,
.erzcxa picture,
.erzcxa svg,
.erzcxa video,
.erzcxa canvas,
.erzcxa object,
.erzcxa embed {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.erzcxa iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 12px;
}

.erzcxa blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    background: rgba(19, 202, 144, .07);
    border-left: 4px solid var(--c-primary, #13ca90);
    border-radius: 0 12px 12px 0;
}

.erzcxa pre {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    overflow-x: auto;
    white-space: pre;
    border: 1px solid var(--c-border, #2b2d36);
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.erzcxa code {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.erzcxa .table-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid var(--c-border, #2b2d36);
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.erzcxa table {
    width: 100%;
    max-width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    border-spacing: 0;
}

.erzcxa th,
.erzcxa td {
    padding: 13px 15px;
    border: 1px solid var(--c-border, #2b2d36);
    text-align: left;
    vertical-align: top;
}

.erzcxa th {
    background: rgba(255, 255, 255, .06);
    font-weight: 700;
}

.erzcxa input,
.erzcxa select,
.erzcxa textarea,
.erzcxa button {
    max-width: 100%;
    min-width: 0;
    font: inherit;
}

.erzcxa input,
.erzcxa select,
.erzcxa textarea {
    width: 100%;
}

.erzcxa textarea {
    resize: vertical;
}

.erzcxa .btn,
.erzcxa button,
.erzcxa input[type="submit"] {
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .erzcxa {
        width: 100%;
        max-width: 100%;
        margin: 18px 0;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .erzcxa h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .erzcxa h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .erzcxa h3 {
        font-size: 19px;
        line-height: 1.3;
    }

    .erzcxa h4 {
        font-size: 17px;
    }

    .erzcxa p,
    .erzcxa li {
        font-size: 14px;
        line-height: 1.7;
    }

    .erzcxa ul,
    .erzcxa ol {
        padding-left: 19px;
    }

    .erzcxa blockquote {
        margin: 18px 0;
        padding: 14px;
    }

    .erzcxa iframe {
        min-height: 260px;
        aspect-ratio: 16/9;
        height: auto;
    }

    .erzcxa .table-wrap {
        margin: 16px 0;
    }

    .erzcxa table {
        min-width: 600px;
        font-size: 13px;
    }

    .erzcxa th,
    .erzcxa td {
        padding: 10px 12px;
    }

    .erzcxa input,
    .erzcxa select,
    .erzcxa textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .erzcxa {
        margin: 14px 0;
        padding: 18px 12px;
        border-radius: 13px;
    }

    .erzcxa h1 {
        font-size: 23px;
    }

    .erzcxa h2 {
        font-size: 20px;
    }

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

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

    .erzcxa table {
        min-width: 520px;
    }

    .erzcxa iframe {
        min-height: 220px;
    }

    .erzcxa .btn,
    .erzcxa button,
    .erzcxa input[type="submit"] {
        width: 100%;
    }
}