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

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

:root {
    --color-bg: #0d0d0d;
    --color-header: #141414;
    --color-footer: #141414;
    --color-btn-orange: #ff6b00;
    --color-btn-green: #22c55e;
    --color-text: #e8e8e8;
    --color-text-muted: #9ca3af;
    --color-card: #1a1a1a;
    --color-card-border: #2a2a2a;
    --color-accent: #ff6b00;
    --color-accent-light: rgba(255, 107, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --font: 'Poppins', sans-serif;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 4px 20px rgba(255, 107, 0, 0.25);
    --shadow-green: 0 4px 20px rgba(34, 197, 94, 0.25);
}

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: #ff8c33;
}

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

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

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

.btn--orange:hover {
    background: #e55f00;
    color: #fff;
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}

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

.btn--green:hover {
    background: #16a34a;
    color: #fff;
    box-shadow: var(--shadow-green);
    transform: translateY(-1px);
}

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

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

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

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

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

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

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

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

.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-btn-orange);
    letter-spacing: -0.3px;
}

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

.header-nav a {
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

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

.header-nav svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2)
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    color: var(--color-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-family: var(--font);
    transition: all var(--transition);
}

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

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 130px;
    display: none;
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--color-text-muted);
    transition: all var(--transition);
    text-decoration: none;
}

.lang-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
}

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

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

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f0f0f;
    z-index: 998;
    padding: 20px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-nav a {
    color: var(--color-text);
    font-size: 15px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all var(--transition);
}

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

.mobile-nav-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.mobile-nav-btns .btn {
    flex: 1;
    justify-content: center;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/chicken-banner.png');
    background-size: cover;
    background-position: center 20%;
    opacity: 0.45;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-accent-light);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--color-btn-orange);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero h1 span {
    color: var(--color-btn-orange);
}

.hero-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 460px;
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-btn-orange);
}

.hero-stat span {
    font-size: 12px;
    color: var(--color-text-muted);
}

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

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

.section-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

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

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.adv-card {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-btn-orange), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.adv-card:hover::before {
    opacity: 1;
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-btn-orange);
}

.adv-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

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

/* ===== WINNERS TABLE ===== */
.winners-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
}

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

.winners-table thead th {
    background: #1a1a1a;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-card-border);
}

.winners-table tbody td {
    padding: 11px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

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

.winners-table tbody tr {
    transition: background var(--transition);
}

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

.winner-rank {
    font-weight: 700;
    color: var(--color-text-muted);
    width: 36px;
}

.winner-rank.gold {
    color: #f59e0b;
}

.winner-rank.silver {
    color: #9ca3af;
}

.winner-rank.bronze {
    color: #b45309;
}

.winner-nick {
    font-weight: 500;
    color: var(--color-text);
}

.winner-amount {
    font-weight: 700;
    color: var(--color-btn-green);
}

.winner-mult {
    background: var(--color-accent-light);
    color: var(--color-btn-orange);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

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

/* ===== BONUSES ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-card {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-btn-green);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.bonus-card:hover::after {
    transform: scaleX(1);
}

.bonus-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-casino-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.bonus-casino-logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.bonus-casino-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.bonus-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-btn-orange);
}

.bonus-amount {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.bonus-amount span {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.bonus-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.bonus-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bonus-chip {
    background: rgba(255, 255, 255, 0.06);
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 20px;
    color: var(--color-text-muted);
}

.bonus-card .btn {
    margin-top: auto;
    width: 100%;
}

.bonus-slider-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

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

.bonus-slider-dot.active {
    background: var(--color-btn-orange);
}

/* ===== DEMO GAME ===== */
.demo-wrap {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #111;
    border-bottom: 1px solid var(--color-card-border);
    flex-wrap: wrap;
    gap: 10px;
}

.demo-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-live-badge {
    background: #ff3737;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-footer {
    padding: 16px 20px;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.demo-info {
    font-size: 13px;
    color: var(--color-text-muted);
}

.demo-info strong {
    color: var(--color-btn-orange);
}

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

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

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: background var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    color: var(--color-btn-orange);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    display: block;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
}

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

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

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

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    transition: color var(--transition);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--color-btn-orange);
}

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

.footer-logo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
}

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

.footer-copyright {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    max-width: 560px;
}

.footer-copyright a {
    color: #666;
}

.footer-links-bottom {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    font-size: 12px;
    color: #555;
    transition: color var(--transition);
    text-decoration: none;
}

.footer-links-bottom a:hover {
    color: var(--color-text-muted);
}

.content-block {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 32px;
}

.content-block h2 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    margin-top: 24px;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block h3 {
    font-size: 17px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 10px;
    margin-top: 20px;
}

.content-block p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.content-block ul, .content-block ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.content-block li {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 5px;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-card-border);
}

.content-block th {
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-card-border);
}

.content-block td {
    padding: 9px 14px;
    font-size: 13px;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.content-block tr:last-child td {
    border-bottom: none;
}

.content-block a {
    color: var(--color-btn-orange);
}

/* ===== AUTHOR BLOCK ===== */
.author-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 32px;
}

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

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.author-link {
    font-size: 12px;
    color: var(--color-btn-orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.author-link:hover {
    color: #ff8c33;
}

/* ===== PROS CONS ===== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.pros-card, .cons-card {
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--color-card-border);
}

.pros-card {
    border-top: 2px solid var(--color-btn-green);
}

.cons-card {
    border-top: 2px solid #ef4444;
}

.pros-card h4 {
    color: var(--color-btn-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cons-card h4 {
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
}

.pros-card li {
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.cons-card li {
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

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

.pros-card li::before {
    content: '✓';
    color: var(--color-btn-green);
    font-weight: 700;
    flex-shrink: 0;
}

.cons-card li::before {
    content: '✗';
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== TECHNICAL PAGE ===== */
.tech-content {
    padding: 48px 0 64px;
}

.tech-content h1 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.tech-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 10px;
}

.tech-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 20px 0 8px;
}

.tech-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.tech-content ul, .tech-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.tech-content li {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.tech-content a {
    color: var(--color-btn-orange);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 14px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-btn-orange);
}

.breadcrumb-sep {
    color: #444;
}

/* ===== GAME INFO TABLE ===== */
.game-info-table {
    width: 100%;
    border-collapse: collapse;
}

.game-info-table td {
    padding: 9px 14px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-info-table td:first-child {
    color: var(--color-text-muted);
    width: 45%;
}

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

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

/* ===== WP-STYLE DECOY ELEMENTS ===== */
.wp-caption {
    display: none !important;
}

.widget_recent_comments, .widget_text {
    display: none !important;
}

.a8f3d2 {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
}

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

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

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

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

[data-delay="1"] {
    animation-delay: 0.1s;
}

[data-delay="2"] {
    animation-delay: 0.2s;
}

[data-delay="3"] {
    animation-delay: 0.3s;
}

[data-delay="4"] {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .online-counter {
        display: none;
    }

    .lang-dropdown {
        display: none;
    }

    .hero {
        min-height: 440px;
    }

    .hero-bg {
        opacity: 0.3;
    }

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

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

    .bonus-slider-dots {
        display: flex;
    }

    .bonus-card {
        display: none;
    }

    .bonus-card.active {
        display: flex;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .sticky-widget {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }

    .widget-sep {
        display: none;
    }

    .demo-iframe-wrap {
        aspect-ratio: 4/3;
    }

    .header-actions .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-stats {
        gap: 16px;
    }

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

    .winner-time {
        display: none;
    }
}

/* Unused styles for uniqualization */
.xf92k {
    display: block;
}

.q7b1m9 {
    font-size: 14px;
}

.zp3n4a {
    color: transparent;
}

.r5w2x8 {
    border: none;
}

.v6t0j3 {
    padding: 0;
}

.mn8c5q {
    margin: 0;
}

.k2p7s1 {
    position: relative;
}
