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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #111;
    color: #fff;
}

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

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.site_loader__wrap {
    width: 100px;
    height: 100px;
}

.site_loader__wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop_header {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
}

.logo {
    height: 40px;
}

.auth_buttons {
    display: flex;
    gap: 15px;
}

.login_btn, .register_btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.login_btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.register_btn {
    background: #fabb22;
    color: #111;
}

.burger_menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger_menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.main_nav {
    background: #222;
    padding: 0 20px;
}

.main_nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.main_nav li {
    padding: 15px 20px;
}

.main_nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main_nav a:hover {
    color: #fabb22;
}

.mobile_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: #111;
    z-index: 1000;
    transition: left 0.3s;
    overflow-y: auto;
}

.mobile_menu.active {
    left: 0;
}

.mobile_menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile_menu_header img {
    height: 35px;
}

.close_menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.mobile_nav ul {
    list-style: none;
    padding: 20px;
}

.mobile_nav li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.mobile_nav a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.main_banner {
    padding: 20px 0;
}

.banner_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner_content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news_ticker {
    background: #fabb22;
    color: #111;
    padding: 10px 0;
    overflow: hidden;
}

.ticker_content {
    display: flex;
    gap: 40px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.game_sections {
    padding: 50px 0;
}

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

.section_title h2 {
    font-size: 2rem;
    color: #fabb22;
}

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

.game_card {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game_card:hover {
    transform: translateY(-5px);
}

.game_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game_info {
    padding: 15px;
    text-align: center;
}

.game_info h3 {
    margin-bottom: 10px;
    color: #fff;
}

.play_btn {
    background: #fabb22;
    color: #111;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.seo_text_section {
    padding: 50px 0;
    background: #1a1a1a;
}

.seo_content {
    max-width: 800px;
    margin: 0 auto;
}

.seo_content h1 {
    color: #fabb22;
    margin-bottom: 20px;
    font-size: 2rem;
}

.seo_content h2 {
    color: #fabb22;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.seo_content h3 {
    color: #fabb22;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.seo_content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.seo_content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.seo_content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.seo_content a {
    color: #fabb22;
    text-decoration: none;
}

.seo_content a:hover {
    text-decoration: underline;
}

.faq_section {
    padding: 50px 0;
    background: #111;
}

.faq_container {
    max-width: 800px;
    margin: 0 auto;
}

.faq_item {
    background: #222;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq_question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
}

.faq_question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq_toggle {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq_answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq_answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq_answer p {
    margin: 0;
}

.testimonials {
    padding: 50px 0;
}

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

.testimonial_card {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.testimonial_card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial_author {
    color: #fabb22;
}

.breadcrumbs {
    background: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

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

.breadcrumbs li {
    color: #fff;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #fabb22;
}

.breadcrumbs a {
    color: #fabb22;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.login_section {
    padding: 50px 0;
    min-height: 60vh;
}

.login_container {
    max-width: 700px;
    margin: 0 auto;
}

.login_form {
    background: #222;
    padding: 40px;
    border-radius: 8px;
}

.login_form h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #fabb22;
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form_group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #111;
    color: #fff;
}

.form_options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember_me {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.forgot_password {
    color: #fabb22;
    text-decoration: none;
}

.forgot_password:hover {
    text-decoration: underline;
}

.submit_btn {
    width: 100%;
    padding: 12px;
    background: #fabb22;
    color: #111;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

.login_alternatives {
    text-align: center;
}

.login_alternatives a {
    color: #fabb22;
    text-decoration: none;
}

.login_alternatives a:hover {
    text-decoration: underline;
}

.error_section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error_content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error_code h1 {
    font-size: 8rem;
    color: #fabb22;
    margin-bottom: 10px;
}

.error_code h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.error_message {
    margin-bottom: 40px;
}

.error_message p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.error_actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.error_btn {
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.error_btn.primary {
    background: #fabb22;
    color: #111;
}

.error_btn.secondary {
    background: transparent;
    border: 1px solid #fabb22;
    color: #fabb22;
}

.error_links {
    margin-top: 40px;
}

.error_links h3 {
    margin-bottom: 15px;
    color: #fabb22;
}

.error_links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error_links a {
    color: #fabb22;
    text-decoration: none;
}

.error_links a:hover {
    text-decoration: underline;
}

.footer_main {
    background: #1a1a1a;
    padding: 50px 0 20px;
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer_section h3 {
    color: #fabb22;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer_section ul {
    list-style: none;
}

.footer_section li {
    margin-bottom: 10px;
}

.footer_section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer_section a:hover {
    color: #fabb22;
}

.footer_logo {
    height: 40px;
    margin-bottom: 15px;
}

.contact_info p {
    margin-bottom: 10px;
}

.footer_bottom {
    background: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .burger_menu {
        display: flex;
    }
    
    .main_nav {
        display: none;
    }
    
    .auth_buttons {
        display: none;
    }
    
    .games_grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer_content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .error_code h1 {
        font-size: 5rem;
    }
    
    .error_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error_links ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header_top {
        padding: 10px 15px;
    }
    
    .games_grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials_grid {
        grid-template-columns: 1fr;
    }
    
    .section_title h2 {
        font-size: 1.5rem;
    }
    
    .login_form {
        padding: 20px;
    }
    
    .error_code h1 {
        font-size: 4rem;
    }
}

.breadcrumbs {
    background: #222;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: #fabb22;
    text-decoration: none;
}

.breadcrumbs span {
    color: #fff;
}

.login_section {
    padding: 50px 0;
    background: #1a1a1a;
    min-height: 60vh;
}

.login_container {
    max-width: 700px;
    margin: 0 auto;
    background: #222;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.login_container h1 {
    color: #fabb22;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form_group {
    margin-bottom: 20px;
    text-align: left;
}

.form_group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form_group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-size: 16px;
}

.login_submit_btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #fabb22;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.login_links {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.login_links a {
    color: #fabb22;
    text-decoration: none;
}

.seo_section {
    padding: 50px 0;
    background: #111;
}

.seo_content {
    max-width: 800px;
    margin: 0 auto;
}

.seo_content h1 {
    color: #fabb22;
    margin-bottom: 30px;
    font-size: 2rem;
}

.seo_content h2 {
    color: #fabb22;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.seo_content h3 {
    color: #fff;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.seo_content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.seo_content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.seo_content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.error_section {
    padding: 80px 0;
    text-align: center;
    min-height: 60vh;
    background: #1a1a1a;
}

.error_content h1 {
    color: #fabb22;
    font-size: 3rem;
    margin-bottom: 20px;
}

.error_content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error_actions {
    margin-bottom: 40px;
}

.home_btn, .games_btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    background: #fabb22;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.games_btn {
    background: transparent;
    border: 1px solid #fabb22;
    color: #fabb22;
}

.popular_links h3 {
    color: #fff;
    margin-bottom: 15px;
}

.popular_links ul {
    list-style: none;
}

.popular_links li {
    display: inline-block;
    margin: 0 15px;
}

.popular_links a {
    color: #fabb22;
    text-decoration: none;
}

.download_app_btn {
    display: inline-block;
    padding: 10px 20px;
    background: #fabb22;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
}

.auth_buttons .active {
    background: #fff;
    color: #111;
}

@media (max-width: 768px) {
    .login_links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .error_actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .home_btn, .games_btn {
        margin: 0;
    }
    
    .popular_links li {
        display: block;
        margin: 10px 0;
    }
    
    .seo_content h1 {
        font-size: 1.5rem;
    }
    
    .seo_content h2 {
        font-size: 1.3rem;
    }
}

.login_subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.1rem;
}

.login_bonus_note {
    background: #333;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    text-align: center;
}

.login_bonus_note p {
    margin: 0;
    color: #fabb22;
    font-weight: bold;
}

.login_options {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.login_options h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.login_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.login_option_btn {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.login_option_btn:hover {
    background: #444;
}

@media (max-width: 768px) {
    .login_buttons {
        flex-direction: column;
    }
    
    .login_option_btn {
        text-align: center;
    }
}

.about-hero {
    background: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    color: #fabb22;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.app-feature {
    background: #222;
    padding: 20px;
    border-radius: 8px;
}

.app-feature h3 {
    color: #fabb22;
    margin-bottom: 10px;
}

.company-block {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
}

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

.company-label {
    color: #fabb22;
    display: block;
    font-weight: bold;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.team-member {
    background: #222;
    padding: 20px;
    border-radius: 8px;
}

.team-member h3 {
    color: #fabb22;
    margin-bottom: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    background: #222;
    padding: 20px;
    border-radius: 8px;
}

.stat-number {
    color: #fabb22;
    font-size: 2rem;
    font-weight: bold;
}

.cta-section {
    background: #222;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: #fabb22;
    margin-bottom: 15px;
}

.cta-actions {
    margin-top: 20px;
}

.btn {
    background: #fabb22;
    color: #111;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin: 0 10px;
}

.btn--secondary {
    background: transparent;
    border: 1px solid #fabb22;
    color: #fabb22;
}

.list {
    margin: 20px 0;
    padding-left: 20px;
}

.list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.download_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.download_option {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.download_option h3 {
    color: #fabb22;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.download_btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fabb22;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 15px;
}

.app_features {
    margin-top: 50px;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.feature h3 {
    color: #fabb22;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .app-features,
    .company-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        margin: 0;
    }
    
    .download_options {
        grid-template-columns: 1fr;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
    }
}