@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-header: #1f1f1f;
    --color-footer: #1a1a1a;
    --color-bg: #681d4b;
    --color-bg-dark: #540f3a;
    --color-bg-card: rgba(255, 255, 255, 0.06);
    --color-btn-gold: #ffbd78;
    --color-btn-green: #00b862;
    --color-btn-green-hover: #00a055;
    --color-btn-gold-hover: #f0a855;
    --color-text: #f5e8ff;
    --color-text-muted: #c9a8d4;
    --color-accent: #ffbd78;
    --color-border: rgba(255, 189, 120, 0.2);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --transition: 0.25s ease;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: 0.03em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn--green:hover {
    background: var(--color-btn-green-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 98, 0.4);
}

.btn--gold {
    background: var(--color-btn-gold);
    color: #1a0d0d;
}

.btn--gold:hover {
    background: var(--color-btn-gold-hover);
    color: #1a0d0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 189, 120, 0.4);
}

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

.btn--outline:hover {
    background: var(--color-btn-gold);
    color: #1a0d0d;
    transform: translateY(-2px);
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-text);
}

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

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-btn-gold), var(--color-btn-green));
    margin: 10px auto 28px;
    border-radius: 2px;
}

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

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

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

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

.header-nav a {
    color: #d4b8e0;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 189, 120, 0.12);
    color: var(--color-btn-gold);
}

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

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

.lang-picker {
    position: relative;
}

.lang-picker-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text);
    border-radius: 6px;
    padding: 7px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    transition: background var(--transition);
}

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

.lang-picker-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #2a1a2e;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 200;
}

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

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

.lang-picker-dropdown a:hover {
    background: rgba(255, 189, 120, 0.1);
    color: var(--color-btn-gold);
}

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

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

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

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

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

@media (max-width: 900px) {
    .header-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .header-nav a {
        width: 100%;
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .burger {
        display: flex;
    }

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

@media (max-width: 480px) {
    .header-actions .btn--lg {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-wolf.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 5, 35, 0.92) 40%, rgba(25, 5, 35, 0.5) 100%),
    linear-gradient(180deg, transparent 60%, rgba(104, 29, 75, 0.98) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 189, 120, 0.15);
    border: 1px solid rgba(255, 189, 120, 0.4);
    color: var(--color-btn-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    max-width: 600px;
}

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

.hero-desc {
    max-width: 520px;
    color: #c9b8d8;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

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

.hero-tiles {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 600px;
}

.hero-tile {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(6px);
}

.hero-tile-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 189, 120, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-tile-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-btn-gold);
}

.hero-tile-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-tile-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-btn-gold);
    line-height: 1.2;
}

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

    .hero-tiles {
        gap: 8px;
    }

    .hero-tile {
        padding: 10px 14px;
    }
}

/* =========== DEMO + TABLE =========== */
.game-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg) 100%);
}

.game-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.game-iframe-wrap {
    flex: 1 1 55%;
    min-width: 0;
}

.iframe-container {
    position: relative;
    background: #0d0d0d;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 189, 120, 0.25);
    box-shadow: var(--shadow);
    aspect-ratio: 16/10;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: none;
    display: block;
}

.iframe-cta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.game-table-wrap {
    flex: 1 1 42%;
    min-width: 0;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.game-details-table caption {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-btn-gold);
    text-align: left;
    padding: 14px 16px 10px;
    letter-spacing: 0.04em;
}

.game-details-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.game-details-table td {
    padding: 10px 14px;
    font-size: 0.88rem;
    text-align: left;
    vertical-align: middle;
    color: var(--color-text);
}

.game-details-table td:first-child {
    color: var(--color-text-muted);
    white-space: nowrap;
    width: 44%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.game-details-table td svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.game-details-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.tbl-value-badge {
    display: inline-block;
    background: rgba(255, 189, 120, 0.15);
    color: var(--color-btn-gold);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.82rem;
    font-weight: 600;
}

.tbl-value-green {
    color: var(--color-btn-green);
    font-weight: 600;
}

@media (max-width: 900px) {
    .game-layout {
        flex-direction: column;
    }

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

    .game-details-table {
        min-width: 360px;
    }
}

/* =========== ADVANTAGES =========== */
.advantages-section {
    padding: 60px 0;
}

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

.adv-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    flex: 1 1 calc(33.333% - 12px);
    min-width: 220px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 189, 120, 0.5);
}

.adv-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 189, 120, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

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

.adv-card h3 {
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: var(--color-text);
}

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

@media (max-width: 640px) {
    .adv-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 160px;
    }
}

@media (max-width: 380px) {
    .adv-card {
        flex: 1 1 100%;
    }
}

/* =========== SCREENSHOTS =========== */
.screenshots-section {
    padding: 60px 0;
    background: var(--color-bg-dark);
}

.screenshots-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.screenshots-grid::-webkit-scrollbar {
    height: 4px;
}

.screenshots-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.screenshots-grid::-webkit-scrollbar-thumb {
    background: var(--color-btn-gold);
    border-radius: 4px;
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 10px);
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--color-border);
    position: relative;
    cursor: pointer;
    transition: transform var(--transition);
}

.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

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

@media (max-width: 768px) {
    .screenshot-item {
        flex: 0 0 80%;
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        flex: 0 0 90%;
    }
}

/* =========== STRATEGIES =========== */
.strategies-section {
    padding: 60px 0;
}

.strategies-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.strategy-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1 1 calc(33.333% - 14px);
    min-width: 240px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.strategy-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #2a0f3d 0%, #681d4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    overflow: hidden;
}

.strategy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-card-body {
    padding: 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-card-body h3 {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    color: var(--color-btn-gold);
}

.strategy-card-body p {
    font-size: 0.86rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    flex: 1;
}

.strategy-card-body .btn {
    margin-top: 8px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .strategy-card {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .strategy-card {
        flex: 1 1 100%;
    }
}

/* =========== CONTENT =========== */
.content-section {
    padding: 60px 0;
}

.content-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.content-block h2, .content-block h3, .content-block h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    margin-top: 28px;
    color: var(--color-btn-gold);
}

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

.content-block p {
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.content-block ul, .content-block ol {
    margin: 12px 0 18px 22px;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-block ul li {
    list-style: disc;
    margin-bottom: 6px;
}

.content-block ol li {
    list-style: decimal;
    margin-bottom: 6px;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.88rem;
    overflow-x: auto;
    display: block;
}

.content-block table th {
    background: rgba(255, 189, 120, 0.15);
    color: var(--color-btn-gold);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--color-text);
    text-align: left;
}

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

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

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

.content-block blockquote {
    border-left: 4px solid var(--color-btn-gold);
    padding: 12px 20px;
    background: rgba(255, 189, 120, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 18px 0;
}

.content-block strong {
    color: var(--color-text);
    font-weight: 700;
}

.content-block em {
    color: var(--color-text-muted);
}

.content-block hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

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

/* =========== AUTHOR =========== */
.author-section {
    padding: 60px 0;
    background: var(--color-bg-dark);
}

.author-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-btn-gold);
    background: #2a1a3e;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-btn-gold);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0 14px;
}

.author-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.author-meta-item svg {
    width: 14px;
    height: 14px;
}

.author-bio {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 5px 12px;
    transition: background var(--transition), color var(--transition);
}

.author-links a:hover {
    background: rgba(255, 189, 120, 0.12);
    color: var(--color-btn-gold);
}

.author-links a svg {
    width: 14px;
    height: 14px;
}

.author-dates {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .author-meta {
        justify-content: center;
    }

    .author-links {
        justify-content: center;
    }

    .author-dates {
        justify-content: center;
    }
}

.similar-section {
    padding: 60px 0;
}

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

.similar-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    flex: 1 1 calc(25% - 14px);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.similar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.similar-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #2a0f3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-card h3 {
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    color: var(--color-text);
}

.similar-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    flex: 1;
}

.similar-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .similar-card {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 420px) {
    .similar-card {
        flex: 1 1 100%;
    }
}

/* =========== FAQ =========== */
.faq-section {
    padding: 60px 0;
    background: var(--color-bg-dark);
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
    letter-spacing: 0.03em;
    gap: 12px;
    transition: background var(--transition);
}

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

.faq-question.open {
    color: var(--color-btn-gold);
}

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

.faq-question.open .faq-toggle {
    transform: rotate(45deg);
    background: rgba(0, 184, 98, 0.2);
}

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

.faq-answer.open {
    max-height: 400px;
    padding: 0 20px 16px;
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =========== FOOTER =========== */
.site-footer {
    background: var(--color-footer);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
}

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

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--color-btn-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-links-col a {
    display: block;
    font-size: 0.82rem;
    color: #888;
    padding: 4px 0;
    transition: color var(--transition);
}

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

.footer-trust {
    flex: 1 1 100%;
}

.footer-trust h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.72rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge.badge-18 {
    background: rgba(255, 80, 80, 0.1);
    border-color: rgba(255, 80, 80, 0.3);
    color: #ff5050;
    font-size: 0.85rem;
    font-weight: 800;
}

.payment-logos, .social-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.payment-logo, .social-logo, .provider-logo {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), border-color var(--transition);
}

.payment-logo:hover, .social-logo:hover, .provider-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 189, 120, 0.3);
}

.payment-logo svg, .social-logo svg, .provider-logo svg {
    width: 16px;
    height: 16px;
}

.provider-logo--img {
    padding: 4px 8px;
}

.provider-logo--img img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.76rem;
    color: #666;
    line-height: 1.7;
}

.footer-bottom a {
    color: #888;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--color-btn-gold);
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    color: #666;
    margin-top: 6px;
}

/* =========== WIDGET =========== */
.casino-widget {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 2000;
    width: 280px;
}

.widget-toggle {
    width: 100%;
    background: var(--color-btn-green);
    color: #fff;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background var(--transition);
}

.widget-toggle:hover {
    background: var(--color-btn-green-hover);
}

.widget-toggle svg {
    transition: transform 0.3s ease;
}

.widget-toggle.collapsed svg {
    transform: rotate(180deg);
}

.widget-body {
    background: #1e1028;
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    max-height: 360px;
    transition: max-height 0.35s ease;
}

.widget-body.collapsed {
    max-height: 0;
}

.widget-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-casino:last-child {
    border-bottom: none;
}

.widget-casino-num {
    width: 22px;
    height: 22px;
    background: rgba(255, 189, 120, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-btn-gold);
    flex-shrink: 0;
}

.widget-casino-info {
    flex: 1;
    min-width: 0;
}

.widget-casino-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-casino-bonus {
    font-size: 0.72rem;
    color: var(--color-btn-gold);
}

.widget-casino-btn {
    background: var(--color-btn-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition);
    white-space: nowrap;
}

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

@media (max-width: 480px) {
    .casino-widget {
        width: calc(100vw - 32px);
        right: 16px;
    }
}

/* =========== SECTION SPACING =========== */
.s-pad {
    padding: 60px 0;
}

.mt-0 {
    margin-top: 0 !important;
}

/* =========== INFO PAGES =========== */
.info-page {
    padding: 48px 0 60px;
}

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

.info-page .content-block {
    margin-top: 0;
}

/* =========== SCROLL ANIMATIONS =========== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* =========== UNUSED STYLES (uniqualization) =========== */
.x7f2a1 {
    display: none;
}

.wc3d9b {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

.q8r4m2 {
    pointer-events: none;
    opacity: 0;
    font-size: 0;
}

.z5k9j1 {
    color: transparent;
    font-size: 0;
    line-height: 0;
}

/* =========== WP COMPAT =========== */
.wp-caption {
    max-width: 100%;
}

.wp-block-image {
    max-width: 100%;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.alignright {
    float: right;
    margin-left: 16px;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

.entry-content {
    width: 100%;
}

.elementor-widget {
    display: block;
}

.elementor-section {
    display: block;
}

/* =========== UTILITIES =========== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-btn-gold);
}

.text-green {
    color: var(--color-btn-green);
}

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

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* =========== PROGRESS BAR =========== */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-btn-gold), var(--color-btn-green));
    z-index: 9998;
    width: 0%;
    transition: width 0.1s linear;
}

.wg-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    width: 100%;
    background: #1f1f1f;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35);
}

.wg-header__inner {
    width: 100%;
    max-width: 1200px;
    min-height: 64px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.wg-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.wg-header__logo img {
    display: block;
    width: auto;
    height: 44px;
}

.wg-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.wg-header__link {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #d9c7df;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.wg-header__link:hover {
    background: rgba(255, 189, 120, .12);
    color: #ffbd78;
}

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

.wg-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.wg-header__button--outline {
    color: #ffbd78;
    border: 1px solid #ffbd78;
    background: transparent;
}

.wg-header__button--outline:hover {
    background: #ffbd78;
    color: #1f1f1f;
}

.wg-header__button--green {
    color: #fff;
    background: #00b862;
}

.wg-header__button--green:hover {
    color: #fff;
    background: #009f55;
}

.wg-lang {
    position: relative;
}

.wg-lang__button {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    cursor: pointer;
}

.wg-lang__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: #291c2c;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.wg-lang.is-open .wg-lang__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.wg-lang__item {
    display: block;
    padding: 9px 12px;
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
}

.wg-lang__item:hover {
    background: rgba(255, 255, 255, .08);
}

.wg-burger {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.wg-burger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

.wg-mobile {
    position: fixed;
    inset: 0;
    z-index: 4999;
    visibility: hidden;
    pointer-events: none;
}

.wg-mobile.is-open {
    visibility: visible;
    pointer-events: auto;
}

.wg-mobile__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    opacity: 0;
    transition: opacity .25s ease;
}

.wg-mobile.is-open .wg-mobile__backdrop {
    opacity: 1;
}

.wg-mobile__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    padding: 18px;
    background: #1f1f1f;
    box-shadow: -14px 0 35px rgba(0, 0, 0, .4);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
}

.wg-mobile.is-open .wg-mobile__panel {
    transform: translateX(0);
}

.wg-mobile__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.wg-mobile__logo img {
    display: block;
    width: auto;
    height: 42px;
}

.wg-mobile__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.wg-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 0;
}

.wg-mobile__link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.wg-mobile__link:hover {
    background: rgba(255, 189, 120, .14);
    color: #ffbd78;
}

.wg-mobile__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wg-mobile__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 9px;
    font-weight: 700;
    text-decoration: none;
}

.wg-mobile__button--outline {
    color: #ffbd78;
    border: 1px solid #ffbd78;
}

.wg-mobile__button--green {
    color: #fff;
    background: #00b862;
}

body.wg-menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .wg-header__nav {
        display: none;
    }

    .wg-burger {
        display: flex;
    }
}

@media (min-width: 901px) {
    .wg-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .wg-header__inner {
        min-height: 60px;
        padding: 8px 12px;
    }

    .wg-header__logo img {
        height: 40px;
    }

    .wg-mobile__panel {
        width: 100%;
    }
}