/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-color: #f5f5f5;
    --header-footer-bg: #ffffff;
    --primary-btn-color: #0255c2;
    --secondary-btn-color: #54b146;
    --text-color: #333;
    --light-text-color: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #0255c2;
    --font-main: 'Roboto', sans-serif;
    --wp-admin-bar-height: 32px; /* Fake WP style */
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

body.fixed {
    overflow: hidden;
}

.wrapper-qf8h2 {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-j3k5f {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

main {
    flex: 1 1 auto;
}

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

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

.section-p8d4g {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-p8d4g:last-child {
    border-bottom: none;
}

/* --- Buttons --- */
.btn-g7h2k {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    color: var(--light-text-color);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none !important;
}

.btn-g7h2k:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-s9k1j {
    background-color: var(--primary-btn-color);
}

.btn-secondary-t4l8p {
    background-color: var(--secondary-btn-color);
}

.btn-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* --- Header --- */
.header-v6n3b {
    background-color: var(--header-footer-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-v6n3b .container-j3k5f {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links-p5o8i {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links-p5o8i a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links-p5o8i a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links-p5o8i a:hover::after {
    width: 100%;
}

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

.burger-menu-z3a7s {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.burger-menu-z3a7s span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.burger-menu-z3a7s span:nth-child(1) { top: 0; }
.burger-menu-z3a7s span:nth-child(2) { top: 9px; }
.burger-menu-z3a7s span:nth-child(3) { bottom: 0; }

.burger-menu-z3a7s.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.burger-menu-z3a7s.active span:nth-child(2) { transform: scale(0); }
.burger-menu-z3a7s.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* --- Breadcrumbs --- */
.breadcrumbs-k4j8f {
    padding: 15px 0;
    background-color: #e9e9e9;
    font-size: 0.9rem;
}

.breadcrumbs-k4j8f ol {
    list-style: none;
    display: flex;
    gap: 8px;
}

.breadcrumbs-k4j8f a {
    color: var(--accent-color);
}

.breadcrumbs-k4j8f li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #999;
}

/* --- Hero Block --- */
.hero-section-m9n2b {
    position: relative;
    padding: 100px 0;
    color: var(--light-text-color);
    text-align: center;
    overflow: hidden;
}

.hero-bg-y1t6u {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.5);
}

.hero-section-m9n2b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2, 85, 194, 0.7), rgba(84, 177, 70, 0.7));
    z-index: -1;
}

.hero-content-x5c3v {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-x5c3v h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content-x5c3v .promo-code-w7e4r {
    background: rgba(0,0,0,0.3);
    border: 2px dashed var(--light-text-color);
    padding: 15px 25px;
    display: inline-block;
    margin: 20px 0;
    border-radius: 10px;
}

.promo-code-w7e4r span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-buttons-z9a1q {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- App Info Block --- */
.app-info-table-r2d6f {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.app-info-table-r2d6f th, .app-info-table-r2d6f td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.app-info-table-r2d6f th {
    background-color: #eef5ff;
    font-weight: 700;
    width: 30%;
}

.app-info-table-r2d6f td {
    background-color: var(--header-footer-bg);
}

.app-download-buttons-h5g9j {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Pros and Cons --- */
.pros-cons-grid-l3k7c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-cons-block-m8n2b {
    background-color: var(--header-footer-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pros-cons-block-m8n2b h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pros-cons-block-m8n2b ul {
    list-style: none;
}

.pros-cons-block-m8n2b li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.pros-cons-block-m8n2b li::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 5px;
    background-size: contain;
}

.pros-block-p1o9i li::before {
    content: '✔';
    color: var(--secondary-btn-color);
    font-weight: bold;
    left: 0;
    top: 0;
}

.cons-block-c5x3v li::before {
    content: '✖';
    color: #d9534f;
    font-weight: bold;
    left: 0;
    top: 0;
}

/* --- Jackpot Block --- */
.jackpot-section-j7h2k {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: var(--light-text-color);
    text-align: center;
    border-radius: 15px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.jackpot-section-j7h2k::before {
    content: '💰';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}
.jackpot-section-j7h2k::after {
    content: '🎉';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}

.jackpot-amount-a4s8d {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 15px 0;
    animation: jackpot-glow 2s infinite alternate;
}

@keyframes jackpot-glow {
    from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ffdd73; }
    to { text-shadow: 0 0 20px #fff, 0 0 30px #ffdd73, 0 0 40px #ffdd73; }
}

/* --- Screenshots & Games Sliders --- */
.slider-container-s1l4p {
    position: relative;
}
.screenshot-slide-g9h5j img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.game-card-c3x7v {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.game-card-c3x7v img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}
.game-card-c3x7v:hover img {
    transform: scale(1.1);
}
.game-overlay-o8p2i {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 15px 15px;
    color: var(--light-text-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.game-card-c3x7v:hover .game-overlay-o8p2i {
    transform: translateY(0);
}
.game-overlay-o8p2i h4 {
    margin: 0 0 10px;
}

/* --- Content Block --- */
.content-block-b6v1n {
    background: var(--header-footer-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.content-block-b6v1n h2, .content-block-b6v1n h3 {
    color: var(--accent-color);
}
.content-block-b6v1n p {
    margin-bottom: 1rem;
}
.content-block-b6v1n ul, .content-block-b6v1n ol {
    margin-bottom: 1rem;
    padding-left: 20px;
}
.content-block-b6v1n li {
    margin-bottom: 0.5rem;
}
.content-block-b6v1n table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    text-align: left;
}
.content-block-b6v1n th, .content-block-b6v1n td {
    padding: 12px;
    border: 1px solid var(--border-color);
}
.content-block-b6v1n th {
    background-color: #f8f8f8;
    font-weight: bold;
}
.content-block-b6v1n blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

/* --- Reviews --- */
.reviews-grid-r4d8g {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.review-card-c2x6m {
    background: var(--header-footer-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.review-header-h9g5j {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.review-header-h9g5j img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.review-author-a7s3d strong {
    display: block;
}
.star-rating-s1l9p svg {
    width: 18px;
    height: 18px;
    color: #fdd835;
}
.review-form-f6g2k {
    margin-top: 40px;
    background: var(--header-footer-bg);
    padding: 30px;
    border-radius: 10px;
}
.form-group-g4h8j {
    margin-bottom: 20px;
}
.form-group-g4h8j label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-control-c8x2m {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
}
.form-control-c8x2m:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(2, 85, 194, 0.2);
}
textarea.form-control-c8x2m {
    resize: vertical;
    min-height: 120px;
}
#review-success-msg {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    border-radius: 8px;
}

/* --- Author Block --- */
.author-block-a9s4d {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--header-footer-bg);
    padding: 30px;
    border-radius: 10px;
}
.author-photo-p3o7i img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.author-socials-s2l6p {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.author-socials-s2l6p a {
    display: block;
    width: 30px;
    height: 30px;
}
.author-socials-s2l6p svg {
    width: 100%;
    height: 100%;
    fill: #555;
    transition: fill 0.3s ease;
}
.author-socials-s2l6p a:hover svg {
    fill: var(--accent-color);
}

/* --- Footer --- */
.footer-f8g3k {
    background-color: var(--header-footer-bg);
    padding: 40px 0;
    color: #555;
    font-size: 0.9rem;
}
.footer-grid-g7h2k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col-c1x9m h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}
.footer-col-c1x9m ul {
    list-style: none;
}
.footer-col-c1x9m li {
    margin-bottom: 10px;
}
.footer-logos-l5k9j {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}
.footer-logos-l5k9j img {
    height: 25px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.footer-logos-l5k9j img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.footer-bottom-b4v8n {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

/* --- Fixed Widget --- */
.fixed-widget-w9e4r {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, var(--primary-btn-color), var(--secondary-btn-color));
    color: var(--light-text-color);
    padding: 15px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    animation: slide-up 0.5s 1s forwards;
}
@keyframes slide-up {
    to { transform: translateY(0); }
}
.widget-text-t3l7c strong {
    font-size: 1.2rem;
    color: #fff;
}
.widget-text-t3l7c a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline !important;
}

/* --- WordPress Fake Styles --- */
.aligncenter { text-align: center; }
.wp-block-button__link { /* Unused style */ }
#wpadminbar { height: var(--wp-admin-bar-height); /* Fake element style */ }

/* --- Responsive --- */
@media (max-width: 992px) {
    .header-nav-c2x9m {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: var(--header-footer-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }
    .header-nav-c2x9m.active {
        right: 0;
    }
    .nav-links-p5o8i {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .nav-links-p5o8i a {
        font-size: 1.2rem;
    }
    .header-actions-b1v8n .btn-g7h2k:first-child {
        display: none; /* Hide "Скачать" in nav */
    }
    .burger-menu-z3a7s {
        display: block;
    }
    .header-mobile-buttons {
        display: flex;
        gap: 10px;
    }
    .pros-cons-grid-l3k7c {
        grid-template-columns: 1fr;
    }
    .author-block-a9s4d {
        flex-direction: column;
        text-align: center;
    }
    .fixed-widget-w9e4r {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content-x5c3v h1 { font-size: 2.8rem; }
    .jackpot-amount-a4s8d { font-size: 3.5rem; }
    .app-info-table-wrapper-w1t5u {
        overflow-x: auto;
    }
    .app-info-table-r2d6f {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-buttons-z9a1q {
        flex-direction: column;
        align-items: center;
    }
    .btn-g7h2k {
        width: 100%;
        max-width: 300px;
    }
    .header-mobile-buttons .btn-g7h2k {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}
