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

:root {
    --clr-bg: #0d0d0d;
    --clr-header: #141414;
    --clr-surface: #1a1a1a;
    --clr-surface2: #222222;
    --clr-border: #2a2a2a;
    --clr-orange: #ff6b00;
    --clr-orange-hover: #e05f00;
    --clr-green: #22c55e;
    --clr-green-hover: #16a34a;
    --clr-text: #e8e8e8;
    --clr-text-muted: #9a9a9a;
    --clr-text-dim: #6b6b6b;
    --clr-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .6);
    --transition: 0.25s ease;
    --font-main: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
}

body {
    min-height: 100vh;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

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 16px;
}

main {
    flex: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-demo {
    background: var(--clr-orange);
    color: var(--clr-white);
}

.btn-demo:hover {
    background: var(--clr-orange-hover);
    color: var(--clr-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 0, .35);
}

.btn-play {
    background: var(--clr-green);
    color: var(--clr-white);
}

.btn-play:hover {
    background: var(--clr-green-hover);
    color: var(--clr-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, .35);
}

.btn-hero-demo {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, .6);
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-hero-demo:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.btn-hero-play {
    background: var(--clr-green);
    color: var(--clr-white);
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-hero-play:hover {
    background: var(--clr-green-hover);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 197, 94, .45);
}

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

.hdr-box {
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.hdr-x9k2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}

.hdr-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

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

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

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

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

.hdr-nav-link:hover {
    color: var(--clr-text);
    background: var(--clr-surface);
}

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

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
    }
    50% {
        opacity: .8;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

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

.hdr-online-count strong {
    color: var(--clr-green);
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}

.lang-btn:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange);
}

.flag-icon {
    font-size: 14px;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 200;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--clr-text-muted);
    font-size: 14px;
    transition: all var(--transition);
}

.lang-option:hover, .lang-active {
    background: var(--clr-surface);
    color: var(--clr-text);
}

.hdr-btn-group {
    display: flex;
    gap: 8px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--clr-header);
    border-left: 1px solid var(--clr-border);
    z-index: 999;
    transition: right var(--transition);
    overflow-y: auto;
    padding: 80px 0 24px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-inner {
    padding: 0 20px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--clr-text-muted);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    color: var(--clr-text);
    background: var(--clr-surface);
}

.lang-switcher-mobile {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--clr-border);
    padding-top: 16px;
}

.lang-m-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--clr-text-muted);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.lang-m-opt:hover, .lang-m-active {
    color: var(--clr-text);
    background: var(--clr-surface);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.games-block {
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, .92) 0%, rgba(13, 13, 13, .7) 60%, rgba(13, 13, 13, .4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, .15);
    border: 1px solid rgba(255, 107, 0, .4);
    color: var(--clr-orange);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .3px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hstat-item {
    flex: 1;
    min-width: 120px;
    padding: 14px 16px;
    text-align: center;
}

.hstat-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
}

.hstat-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px;
}

.hstat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .1);
    align-self: stretch;
}

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

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

.section-sub {
    font-size: 15px;
    color: var(--clr-text-muted);
}

.advantages-section {
    padding: 64px 24px;
}

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

.adv-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}

.adv-card:hover {
    border-color: var(--clr-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, .15);
}

.adv-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, .1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-orange);
    margin-bottom: 16px;
}

.adv-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.pros-cons-section {
    padding: 0 24px 64px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
}

.pros-block, .cons-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.pros-block {
    border-top: 3px solid var(--clr-green);
}

.cons-block {
    border-top: 3px solid #ef4444;
}

.pros-title, .cons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pros-title {
    color: var(--clr-green);
}

.cons-title {
    color: #ef4444;
}

.pros-list li, .cons-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--clr-text-muted);
    border-bottom: 1px solid var(--clr-border);
    line-height: 1.5;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: "+ ";
    color: var(--clr-green);
    font-weight: 700;
}

.cons-list li::before {
    content: "- ";
    color: #ef4444;
    font-weight: 700;
}

.game-info-section {
    padding: 0 24px 64px;
}

.game-table-wrap {
    overflow-x: auto;
}

.game-info-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.game-info-table th, .game-info-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.game-info-table th {
    background: var(--clr-surface);
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
}

.game-info-table td {
    background: var(--clr-header);
    color: var(--clr-text);
    font-size: 14px;
}

.game-info-table tr:last-child th, .game-info-table tr:last-child td {
    border-bottom: none;
}

.game-info-table a {
    color: var(--clr-orange);
}

.winners-section {
    padding: 0 24px 64px;
}

.winners-table-wrap {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table th {
    background: var(--clr-surface);
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.winners-table td {
    background: var(--clr-header);
    color: var(--clr-text);
    font-size: 14px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(42, 42, 42, .5);
}

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

.winners-table tr:hover td {
    background: var(--clr-surface);
}

.win-rank {
    font-weight: 700;
    color: var(--clr-text-muted);
}

.win-rank-1 {
    color: #f59e0b;
}

.win-rank-2 {
    color: #9ca3af;
}

.win-rank-3 {
    color: #cd7c2f;
}

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

.win-amount {
    color: var(--clr-green);
    font-weight: 700;
}

.win-status-win {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(34, 197, 94, .15);
    color: var(--clr-green);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.win-status-loss {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.screenshots-section {
    padding: 0 24px 64px;
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.screenshots-track {
    display: flex;
    transition: transform 0.4s ease;
}

.screenshot-slide {
    flex: 0 0 100%;
    position: relative;
}

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

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
    color: var(--clr-white);
    font-size: 14px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(20, 20, 20, .8);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: all var(--transition);
    z-index: 5;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--clr-orange);
    border-color: var(--clr-orange);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--clr-orange);
    width: 20px;
    border-radius: 4px;
}

.demo-section {
    padding: 0 24px 64px;
}

.demo-wrap {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
}

.demo-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.demo-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-cta {
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--clr-border);
}

.demo-cta-text {
    font-size: 16px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.reviews-section {
    padding: 0 24px 64px;
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.review-card:hover {
    border-color: rgba(255, 107, 0, .3);
    box-shadow: var(--shadow-sm);
}

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

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 107, 0, .15);
    border: 2px solid rgba(255, 107, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-orange);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    display: block;
    font-size: 15px;
    color: var(--clr-white);
    font-weight: 600;
    margin-bottom: 4px;
}

.review-stars {
    color: #f59e0b;
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: var(--clr-text-dim);
    margin-left: auto;
}

.review-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.author-section {
    padding: 0 24px 64px;
}

.author-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-avatar-wrap {
    flex-shrink: 0;
}

.author-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-orange), #ff9500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 22px;
    font-weight: 700;
}

.author-label {
    font-size: 12px;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.author-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 10px;
}

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

.author-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-orange);
    font-size: 13px;
    font-weight: 600;
}

.author-linkedin:hover {
    color: var(--clr-orange-hover);
}

.faq-section {
    padding: 0 24px 64px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item.open {
    border-color: rgba(255, 107, 0, .4);
}

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

.faq-question:hover {
    color: var(--clr-orange);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

.faq-answer.open {
    max-height: 400px;
    padding-bottom: 18px;
}

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

.ftr-k3m9 {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 24px 24px;
}

.ftr-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ftr-brand {
    flex: 2;
    min-width: 220px;
}

.ftr-logo {
    height: 38px;
    width: auto;
    margin-bottom: 14px;
}

.ftr-desc {
    font-size: 13px;
    color: var(--clr-text-dim);
    line-height: 1.65;
    max-width: 320px;
}

.ftr-nav-col {
    flex: 1;
    min-width: 140px;
}

.ftr-nav-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px;
}

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

.ftr-nav-link {
    font-size: 14px;
    color: var(--clr-text-dim);
    transition: color var(--transition);
}

.ftr-nav-link:hover {
    color: var(--clr-text);
}

.ftr-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0 0 28px;
}

.ftr-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.ftr-trust-group {
}

.ftr-trust-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--clr-text-dim);
    margin-bottom: 10px;
}

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

.pay-logo-wrap, .trust-logo-wrap {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition);
}

.pay-logo-wrap:hover, .trust-logo-wrap:hover {
    border-color: var(--clr-orange);
}

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

.provider-logo {
    height: 36px;
    width: auto;
    opacity: .75;
    transition: opacity var(--transition);
}

.provider-logo:hover {
    opacity: 1;
}

.ftr-legal {
    font-size: 12px;
    color: var(--clr-text-dim);
    line-height: 1.65;
    margin-bottom: 12px;
}

.ftr-copy {
    font-size: 12px;
    color: var(--clr-text-dim);
}


.technical-content {
    padding: 32px 0 48px;
}

.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-item {
    font-size: 13px;
    color: var(--clr-text-dim);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin-right: 8px;
    color: var(--clr-border);
}

.breadcrumb-current {
    color: var(--clr-text-muted);
}

.page-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 28px;
}

.technical-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-white);
    margin: 28px 0 12px;
}

.technical-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-white);
    margin: 20px 0 10px;
}

.technical-body p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.technical-body ul, .technical-body ol {
    margin: 0 0 14px 20px;
    list-style: disc;
}

.technical-body ol {
    list-style: decimal;
}

.technical-body li {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

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

.cnt-text h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--clr-white);
    margin: 40px 0 14px;
}

.cnt-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-white);
    margin: 24px 0 10px;
}

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

.cnt-text ul, .cnt-text ol {
    margin: 0 0 14px 22px;
    list-style: disc;
}

.cnt-text ol {
    list-style: decimal;
}

.cnt-text li {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.cnt-text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid var(--clr-border);
}

.cnt-text th, .cnt-text td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
}

.cnt-text th {
    background: var(--clr-surface);
    color: var(--clr-text-muted);
    font-weight: 600;
}

.cnt-text td {
    background: var(--clr-header);
    color: var(--clr-text);
}

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

.cnt-text strong {
    color: var(--clr-white);
    font-weight: 600;
}

.p-r7x2 {
    display: none !important;
}

.wc-b3f9 {
    visibility: hidden;
    position: absolute;
}

.el-placeholder-z4q {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}

@media (max-width: 900px) {
    .hdr-nav-wrap {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .pros-cons-grid {
        grid-template-columns:1fr;
    }

    .ftr-top {
        flex-direction: column;
        gap: 24px;
    }

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

    .hstat-item {
        min-width: 50%;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 40px 16px;
    }

    .hdr-x9k2 {
        padding: 10px 0;
    }

    .logo-img {
        height: 32px;
    }

    .advantages-section, .pros-cons-section, .game-info-section, .winners-section, .screenshots-section, .demo-section, .reviews-section, .author-section, .faq-section {
        padding-left: 0;
        padding-right: 0;
    }

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

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

    .screenshot-img {
        height: 220px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hstat-divider {
        display: none;
    }

    .hstat-item {
        min-width: 100%;
    }

    .pros-cons-grid {
        grid-template-columns:1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-hero-demo, .btn-hero-play {
        justify-content: center;
    }
}

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

.adv-card, .review-card, .faq-item, .pros-block, .cons-block {
    animation: fadeInUp .4s ease both;
}

.cnt-box {
    background: transparent;
}

.box {
    width: 100%;
}

.cnt-text {
    width: 100%;
}

.ytgd {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px;
    background: #1a1a1a;
    border: 1px solid #2f2f2f;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.ytgd h1 {
    font-size: 42px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 800;
}

.ytgd h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #fff;
    margin: 38px 0 16px;
    font-weight: 700;
}

.ytgd p {
    font-size: 16px;
    line-height: 1.8;
    color: #bdbdbd;
    margin-bottom: 18px;
}

.ytgd ul,
.ytgd ol {
    margin: 0 0 22px 22px;
}

.ytgd li {
    font-size: 15px;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 10px;
}

.ytgd a {
    color: #ff6b00;
    word-break: break-word;
}

.ytgd strong {
    color: #fff;
}

.ytgd table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid #2f2f2f;
}

.ytgd th {
    background: #242424;
    color: #fff;
    padding: 14px;
    font-size: 14px;
    text-align: left;
}

.ytgd td {
    background: #1f1f1f;
    color: #cfcfcf;
    padding: 14px;
    font-size: 14px;
    border-top: 1px solid #2f2f2f;
}

@media (max-width: 991px) {
    .ytgd {
        padding: 24px 20px;
        border-radius: 20px;
        margin: 24px auto;
    }

    .ytgd h1 {
        font-size: 34px;
    }

    .ytgd h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .ytgd {
        width: 100%;
        max-width: 100%;
        margin: 16px auto;
        padding: 18px 14px;
        border-radius: 18px;
    }

    .ytgd h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .ytgd h2 {
        font-size: 21px;
        line-height: 1.35;
        margin: 28px 0 12px;
    }

    .ytgd p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .ytgd ul,
    .ytgd ol {
        margin: 0 0 18px 18px;
    }

    .ytgd li {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 8px;
    }

    .ytgd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .ytgd th,
    .ytgd td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ytgd {
        padding: 16px 12px;
        border-radius: 16px;
    }

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

    .ytgd h2 {
        font-size: 19px;
    }

    .ytgd p,
    .ytgd li {
        font-size: 13.5px;
    }
}