/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #fee600;
    --primary-hover: #e6cf00;
    --secondary-color: #1a1427;
    --secondary-light: #29233a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --bg-dark: #120f1a;
    --rose-button: rgba(236, 72, 153, 0.9);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Убедимся, что изображения не выходят за пределы контейнера */
img {
    max-width: 100%;
    height: auto;
}

.obf_app-container_001 {
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
}

/* ===== BUTTONS ===== */
.obf_btn_041 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    white-space: nowrap;
}

.obf_btn_041:hover {
    transform: translateY(-1px);
}

.obf_btn_041:active {
    transform: translateY(1px);
}

.obf_btn-primary_043 {
    background-color: var(--primary-color);
    color: #000;
}

.obf_btn-primary_043:hover {
    background-color: var(--primary-hover);
}

.obf_btn-outline_042 {
    background-color: var(--secondary-light);
    color: var(--text-color);
}

.obf_btn-outline_042:hover {
    background-color: #342c47;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

/* ===== SIDEBAR ===== */
.obf_sidebar_002 {
    width: 18rem;
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 30;
    display: none;
}

.obf_sidebar-content_003 {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 100%;
}

.obf_logo-container_004 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.obf_logo_005 {
    width: 180px;
    height: auto;
}

.obf_nav-group_006 {
    margin-bottom: 0.75rem;
}

.obf_nav-item_007 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.obf_nav-item_007:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.obf_nav-icon_008 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    font-size: 1.5rem;
}

.obf_nav-label_009 {
    font-size: 0.95rem;
    font-weight: 500;
}

.obf_sidebar-separator_010 {
    height: 1px;
    background-color: rgba(107, 114, 128, 0.3);
    margin: 0.75rem 0;
}

.obf_nav-dropdown-header_012 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.6rem 0;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.obf_nav-dropdown-header_012:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.obf_nav-item-inner_013 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.obf_chevron-down_014 {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.obf_nav-dropdown_011.obf_active_060 .obf_chevron-down_014 {
    transform: rotate(-135deg);
}

.obf_nav-dropdown-content_015 {
    display: none;
    margin-top: 0.25rem;
}

.obf_nav-dropdown_011.obf_active_060 .obf_nav-dropdown-content_015 {
    display: block;
}

.obf_nav-subitem_016 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0 0.5rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.obf_nav-subitem_016:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.obf_nav-subicon_017 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    font-size: 1.25rem;
}

.obf_nav-sublabel_019 {
    font-size: 1rem;
    font-weight: normal;
}

.obf_grid-icon_018 {
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(2, 1fr);
    gap: 2px;
    width: 1rem;
    height: 1rem;
}

.obf_grid-icon_018::before,
.obf_grid-icon_018::after {
    content: "";
    grid-column: 1;
    background: purple;
    border-radius: 2px;
}

.obf_grid-icon_018::before {
    grid-row: 1;
}

.obf_grid-icon_018::after {
    grid-row: 2;
}

.obf_slots-icon_020 {
    background: linear-gradient(to bottom, #d53f8c, #7e22ce);
    border-radius: 4px;
    color: #f0e68c;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.obf_live-icon_021 {
    background: linear-gradient(to bottom, #4a5568, #1a202c);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obf_live-icon_021::after {
    content: "";
    width: 1rem;
    height: 0.5rem;
    background: white;
    border-radius: 2px;
    position: relative;
}

.obf_live-icon_021::before {
    content: "";
    position: absolute;
    width: 0.25rem;
    height: 0.75rem;
    background: black;
    border-radius: 0 0 2px 2px;
    z-index: 1;
}

.obf_sidebar-footer_022 {
    margin-top: auto;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.obf_casino-time_023 {
    background-color: var(--secondary-light);
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.obf_install-app-button_024 {
    background: linear-gradient(to right, var(--primary-color), #fd7e14);
    color: #000;
    font-weight: 500;
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.obf_language-selector_025 {
    background-color: var(--secondary-light);
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.obf_language-selector-inner_026 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.obf_support-button_027 {
    background-color: var(--secondary-light);
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.obf_support-button_027:hover {
    background-color: #342c47;
}

/* ===== MAIN CONTENT ===== */
.obf_main-content_028 {
    flex: 1;
    margin-left: 0;
    padding-bottom: 4rem; /* Space for mobile footer */
    overflow-x: hidden; /* Предотвращаем горизонтальный скролл в контенте */
    max-width: 100%; /* Ограничиваем максимальную ширину */
    box-sizing: border-box; /* Учитываем padding в общей ширине */
}

/* ===== DESKTOP BANNER ===== */
.obf_desktop-banner_045 {
    max-width: 100%;
    overflow: hidden;
}

/* ===== HEADER ===== */
.obf_header_029 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    z-index: 20;
    border-bottom: 1px solid rgba(107, 114, 128, 0.4);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.obf_header-left_030 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.obf_mobile-menu-button_031 {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 0.5rem;
}

.obf_mobile-logo_034 {
    display: block;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.obf_mobile-logo_034 img {
    max-height: 36px;
    width: auto;
}

.obf_search-container_035 {
    display: none;
    flex: 1;
    max-width: 20rem;
}

.obf_search-input-wrapper_036 {
    position: relative;
    width: 100%;
}

.obf_search-icon_038 {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.obf_search-input_039 {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    height: 3rem;
    background-color: var(--bg-dark);
    border: none;
    border-radius: 9999px;
    color: #6b7280;
    font-size: 0.875rem;
    cursor: pointer;
}

.obf_header-right_040 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ===== HERO SECTION ===== */
.obf_hero-section_044 {
    margin-top: 4rem; /* Account for header height */
    padding: 1rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-banner, .obf_desktop-banner_045 {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    max-width: 100%;
}

.obf_hero-image_046 {
    width: 100%;
    height: auto;
    object-fit: contain; /* Изменено с cover на contain, чтобы баннер помещался полностью */
    max-height: 400px; /* Ограничиваем максимальную высоту, чтобы баннер не был слишком большим */
    max-width: 100%;
    display: block; /* Убираем дополнительные отступы у изображения */
    margin: 0 auto; /* Центрируем изображение */
}

/* Mobile banner */
.obf_mobile-hero-banner_047 {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(to right, #4a1a71, #29233a); /* Изменен цвет с голубого на фиолетовый */
    padding: 20px;
    color: white;
    text-align: center;
}

.obf_mobile-banner-content_048 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.obf_mobile-banner-title_049 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.obf_mobile-banner-subtitle_050 {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: var(--primary-color); /* Используем желтый цвет для подзаголовка */
}

.obf_mobile-banner-steps_051 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.obf_mobile-banner-step_052 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.obf_step-number_053 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color); /* Используем основной цвет темы */
    color: #1a1427; /* Темный цвет для текста цифр */
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 5px;
}

.obf_step-text_054 {
    font-size: 14px;
}

.obf_step-separator_055 {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

.obf_mobile-banner-button_056 {
    background-color: var(--primary-color);
    color: #1a1427;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.obf_mobile-banner-button_056:hover {
    background-color: var(--primary-hover);
}

/* ===== GAME CATEGORIES ===== */
.obf_game-categories-section_057 {
    padding: 1rem;
    margin-top: 1.5rem;
}

.obf_categories-tabs_058 {
    display: flex;
    overflow-x: auto;
    gap: 0.25rem;
    padding: 0.25rem;
    background-color: var(--secondary-color);
    border: 1px solid #2d2d2d;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    max-width: 100%;
    -webkit-overflow-scrolling: touch; /* Улучшаем скролл на iOS */
}

.obf_categories-tabs_058::-webkit-scrollbar {
    display: none;
}

.obf_category-tab_059 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    flex: none;
}

.obf_category-tab_059.obf_active_060 {
    background-color: var(--secondary-light);
    transform: scale(1.05);
}

.obf_category-icon_061 {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obf_category-icon_061 img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.obf_category-tab_059.obf_active_060 .obf_category-icon_061 img {
    transform: rotate(12deg);
}

/* ===== GAMES SECTION ===== */
.obf_games-section_062 {
    padding: 1rem;
    margin-top: 1.5rem;
}

.obf_section-title_063 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.obf_games-grid_064 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.obf_game-card_065 {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s;
}

.obf_game-card_065:hover {
    transform: translateY(-2px);
}

.obf_game-image-container_066 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.obf_game-image_067 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.obf_game-card_065:hover .obf_game-image_067 {
    transform: scale(1.1);
}

.obf_hot-label_074 {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: #e53e3e;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    z-index: 2;
}

.obf_play-button-overlay_068 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.obf_game-card_065:hover .obf_play-button-overlay_068 {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.obf_play-button_069 {
    width: 4rem;
    height: 4rem;
    background-color: var(--rose-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: translateY(1rem);
    transition: transform 0.3s, scale 0.3s;
}

.obf_game-card_065:hover .obf_play-button_069 {
    transform: translateY(0);
}

.obf_game-card_065:hover .obf_play-button_069:hover {
    transform: scale(1.1);
}

.obf_game-info_071 {
    background-color: var(--secondary-color);
    padding: 0.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.obf_game-title_072 {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.obf_game-provider_073 {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===== EXPLORE ALL GAMES ===== */
.obf_explore-all-games_075 {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.obf_explore-content_076 h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.obf_explore-content_076 p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.obf_footer_077 {
    background-color: var(--secondary-color);
    padding: 2rem 1rem 6rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(107, 114, 128, 0.4);
    display: none;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.obf_footer-content_078 {
    max-width: 75rem;
    margin: 0 auto;
}

.obf_payment-methods_079 {
    margin-bottom: 2rem;
}

.obf_payment-methods_079 h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.obf_payment-icons_080 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.obf_payment-icon_081 {
    width: 4rem;
    height: 2.5rem;
    background-color: var(--secondary-light);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.obf_payment-icon_081 img, 
.obf_payment-icon_081 svg {
    max-width: 100%;
    max-height: 100%;
}

.obf_bitcoin_082 svg {
    height: 1.5rem;
}

.footer-separator {
    height: 1px;
    background-color: rgba(107, 114, 128, 0.3);
    margin: 1.5rem 0;
}

.obf_footer-bottom_083 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.obf_footer-brand_084 {
    max-width: 32rem;
}

.obf_footer-logo_085 {
    height: 2rem;
    width: auto;
    margin-bottom: 1rem;
}

.obf_footer-description_086 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.obf_footer-links_087 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.obf_footer-links_087 a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.obf_footer-links_087 a:hover {
    color: var(--text-color);
}

.obf_footer-disclaimer_088 {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.obf_responsibility-icons_089 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.obf_responsibility-icon_090 {
    width: 1.5rem;
    height: 1.5rem;
}

.obf_responsibility-icon_090 svg {
    width: 100%;
    height: 100%;
}

/* ===== MOBILE FOOTER ===== */
.obf_mobile-footer_091 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    border-top: 1px solid #2d2d2d;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    z-index: 50;
    width: 100%;
    max-width: 100%;
}

.obf_mobile-footer-item_092 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    position: relative;
}

.obf_mobile-footer-item_092 i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.obf_mobile-footer-item_092 span {
    font-size: 0.75rem;
}

.obf_mobile-footer-item_092.obf_active_060 {
    color: var(--primary-color);
}

.obf_mobile-footer-item_092.obf_active_060::before {
    content: '';
    position: absolute;
    inset: -0.25rem;
    background-color: var(--secondary-light);
    border-radius: 9999px;
    z-index: -1;
}

/* ===== LOADER ===== */
.obf_loader_097 {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 3rem;
    height: 3rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 767px) {
    /* Мобильные стили */
    body {
        padding-right: 0; /* Убираем отступ справа, который может вызывать скролл */
    }
    
    .obf_hero-section_044 {
        padding: 1rem 1rem 0; /* Уменьшаем отступы */
    }
    
    .obf_desktop-banner_045 {
        display: none;
    }
    
    .obf_mobile-hero-banner_047 {
        display: block;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .obf_game-categories-section_057 {
        display: none;
    }
    
    .obf_games-section_062 {
        padding: 0.5rem;
    }
    
    .obf_games-grid_064 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .obf_game-card_065 {
        margin-bottom: 0.5rem;
    }
    
    .obf_mobile-logo_034 {
        display: block;
    }
    
    /* Уменьшаем размер логотипа на мобильных устройствах */
    .obf_mobile-logo_034 img {
        max-height: 36px;
        width: auto;
    }
}

@media (min-width: 768px) {
    /* Десктопные стили */
    .obf_sidebar_002 {
        display: block;
        width: 18rem;
        max-width: 18rem;
    }
    
    .obf_main-content_028 {
        margin-left: 18rem;
        max-width: calc(100% - 18rem);
        overflow-x: hidden;
    }
    
    .obf_header_029 {
        left: 18rem;
        max-width: calc(100% - 18rem);
        width: calc(100% - 18rem);
    }
    
    .obf_mobile-menu-button_031,
    .obf_mobile-logo_034 {
        display: none;
    }
    
    .obf_search-container_035 {
        display: flex;
    }
    
    .obf_mobile-footer_091 {
        display: none;
    }
    
    .obf_desktop-banner_045 {
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .obf_mobile-hero-banner_047 {
        display: none;
    }
    
    .obf_game-categories-section_057 {
        display: block;
    }
    
    .obf_games-grid_064 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .obf_footer_077 {
        display: block;
        padding-bottom: 2rem;
    }
    
    .obf_footer-bottom_083 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .obf_games-grid_064 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .hero-banner {
        height: auto;
    }
}

@media (min-width: 1280px) {
    .obf_games-grid_064 {
        grid-template-columns: repeat(6, 1fr);
    }
} 