* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header - ВСЕГДА ЗАКРЕПЛЕН */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            /* УБРАН transition чтобы элемент не двигался */
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Navigation Menu - ВСЕГДА ЗАКРЕПЛЕНО */
        .nav-menu {
            position: fixed;
            top: 72px;
            width: 100%;
            background: rgba(40, 40, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            /* УБРАН transition чтобы элемент не двигался */
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            gap: 2rem;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-item:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #FFD700;
            transform: translateY(-2px);
        }

        .nav-icon {
            font-size: 1.1rem;
        }

        .nav-text {
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 40px;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .auth-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
        }

        .btn-login {
            background: transparent;
            color: #FFD700;
            border: 1px solid #FFD700;
        }

        .btn-register {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        /* Main Slider - АДАПТИВНЫЕ ИЗОБРАЖЕНИЯ */
        .main-slider {
            position: relative;
            max-width: 1200px;
            margin: 2rem auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 300px;
            margin-top: 103px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        /* ИСПРАВЛЕНО: Адаптивные изображения слайдера */
        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        /* Адаптивные изображения для мобильной версии */
        @media (max-width: 768px) {
            .slider-container {
                height: 250px; /* Уменьшенная высота для мобильных */
            }
            
            .slide-image {
                object-fit: contain; /* Показывает всё изображение без обрезки */
                object-position: center center;
                background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); /* Фон для пустых областей */
            }
        }

        /* Альтернативный вариант - responsive background images */
        @media (max-width: 480px) {
            .slide {
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center center;
                background-color: #1a1a1a;
            }
            
            .slide-image {
                opacity: 0; /* Скрываем img элемент */
            }
            
            /* Устанавливаем background images через CSS */
            .slide:nth-child(1) {
                background-image: url('img/slider/61af50e35ffcb16388794597340.webp');
            }
            
            .slide:nth-child(2) {
                background-image: url('img/slider/61af51283254416388795284463.webp');
            }
            
            .slide:nth-child(3) {
                background-image: url('img/slider/summer_banner_d.webp');
            }
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: #FFD700;
            transform: scale(1.2);
        }

        .slider-btn {
            position: absolute;
            top: 78%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-btn:hover {
            background: rgba(255, 215, 0, 0.8);
            color: #000;
        }

        .slider-btn.prev {
            left: 10px;
        }

        .slider-btn.next {
            right: 10px;
        }

        /* Game Categories */
        .game-categories {
            background: rgba(40, 40, 40, 0.8);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .categories-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .categories-container::-webkit-scrollbar {
            display: none;
        }

        .category-btn {
            background: transparent;
            color: #fff;
            border: none;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            text-decoration: none;
            display: inline-block;
        }

        .category-btn:hover {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.1);
        }

        .category-btn.active {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.15);
        }

        .category-btn.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: #FFD700;
            border-radius: 1px;
        }

        /* Featured Games Slider */
        .featured-games-slider {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(178, 34, 34, 0.8));
            border: 2px solid #FFD700;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
            grid-column: span 2;
            grid-row: span 2;
        }

        .featured-games-slider::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .featured-title {
            color: #FFD700;
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .featured-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            height: calc(100% - 3rem);
        }

        .featured-slide-wrapper {
            width: 200px;
            height: 250px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .featured-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            cursor: pointer;
        }

        .featured-slide.active {
            opacity: 1;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 1.5rem 0.8rem 0.8rem;
            text-align: center;
        }

        .featured-icon {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
            color: #FFD700;
        }

        .featured-game-title {
            color: white;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 0.8rem;
        }

        .featured-live-badge {
            display: inline-block;
        }

        .live-indicator {
            background: linear-gradient(45deg, #FF6B6B, #FF8E53);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .featured-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: #FFD700;
            border: 2px solid #FFD700;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .featured-btn:hover {
            background: #FFD700;
            color: #000;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-prev {
            left: -20px;
        }

        .featured-next {
            right: -20px;
        }

        /* Games Section */
        .games-section {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            text-align: center;
            color: #FFD700;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .game-card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 215, 0, 0.2);
            height: 140px;
            position: relative;
            text-decoration: none;
            color: inherit;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: #FFD700;
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        }

        .game-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 1rem 0.5rem 0.5rem;
            font-size: 0.8rem;
            font-weight: 500;
            text-align: center;
        }

        /* About Section */
        .about-section {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-container {
            text-align: center;
        }

        .about-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .info-card {
            background: rgba(45, 45, 45, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            border-color: #FFD700;
            transform: translateY(-3px);
        }

        .info-card h4 {
            color: #FFD700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .info-card p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        /* Login Section */
        .login-section {
            padding: 2rem 1rem;
            background: rgba(255, 215, 0, 0.05);
            margin: 2rem 1rem;
            border-radius: 20px;
        }

        .login-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .login-steps {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .login-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: rgba(45, 45, 45, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .login-step-number {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .login-step-content h4 {
            color: #FFD700;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .login-step-content p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        /* Bet Types Section */
        .bet-types-section {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-description {
            text-align: center;
            opacity: 0.9;
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .bet-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .bet-type-card {
            background: rgba(45, 45, 45, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }

        .bet-type-card:hover {
            border-color: #FFD700;
            transform: translateY(-5px);
        }

        .bet-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .bet-type-card h4 {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .bet-type-card p {
            opacity: 0.9;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .example {
            background: rgba(255, 215, 0, 0.1);
            padding: 0.8rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-style: italic;
            color: #FFD700;
        }

        /* Customer Care Section */
        .customer-care-section {
            padding: 2rem 1rem;
            background: rgba(255, 215, 0, 0.05);
            margin: 2rem 1rem;
            border-radius: 20px;
        }

        .customer-care-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .care-card {
            background: rgba(45, 45, 45, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }

        .care-card:hover {
            border-color: #FFD700;
            transform: translateY(-5px);
        }

        .care-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .care-card h4 {
            color: #FFD700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .care-card p {
            opacity: 0.9;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Features Section */
        .features-section {
            padding: 2rem 1rem;
            background: rgba(255, 215, 0, 0.05);
            margin: 2rem 1rem;
            border-radius: 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(45, 45, 45, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: #FFD700;
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: #000;
        }

        .feature-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #FFD700;
        }

        .feature-desc {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Process Section */
        .process-section {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .step-card {
            background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
        }

        .step-title {
            margin: 1rem 0 0.5rem;
            color: #FFD700;
            font-size: 1.1rem;
        }

        .step-desc {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 2rem 1rem;
            background: rgba(255, 215, 0, 0.05);
            margin: 2rem 1rem;
            border-radius: 20px;
        }

        .faq-item {
            background: rgba(45, 45, 45, 0.8);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .faq-question {
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 215, 0, 0.1);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 215, 0, 0.2);
        }

        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 1rem;
            max-height: 200px;
        }

        .faq-toggle {
            color: #FFD700;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 1rem;
            margin-top: 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #FFD700;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-link:hover {
            opacity: 0.7;
        }

        /* Image optimization CSS */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Responsive images */
        .slide-image, .game-image, .featured-image {
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        /* Lazy loading placeholder */
        img[loading="lazy"] {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* WebP support detection */
        .webp .slide-image { background-image: url('img/slider/fallback.webp'); }
        .no-webp .slide-image { background-image: url('img/slider/fallback.jpg'); }

        /* Performance optimizations */
        .main-slider {
            contain: layout style paint;
        }

        .game-card {
            contain: layout style;
        }

        /* Preload hover states */
        .game-card:hover .game-image {
            transform: scale(1.05);
        }

        /* Performance optimizations */
        .lazy-load {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .lazy-load.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* МОБИЛЬНАЯ ВЕРСИЯ - ИСПРАВЛЕНО */
        @media (max-width: 768px) {
            /* Header и Nav для мобильной версии - ИСПРАВЛЕНО */
            .nav {
                padding: 0 0.5rem;
            }

            .logo {
                height: 35px;
            }

            .btn {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }

            /* ИСПРАВЛЕНО: Навигационное меню для мобильной версии */
            .nav-menu {
                top: 67px;
                padding: 0.3rem 0;
                /* Удалена transition чтобы работало синхронно с хедером */
            }

            .nav-container {
                gap: 0.5rem;
                padding: 0 0.5rem;
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
                justify-content: flex-start;
            }

            .nav-container::-webkit-scrollbar {
                display: none;
            }

            .nav-item {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
                min-width: fit-content;
            }

            .nav-icon {
                font-size: 1rem;
            }

            .nav-text {
                font-size: 0.75rem;
            }

            /* Слайдер для мобильной версии */
            .slider-container {
                margin-top: 110px;
                height: 80px;
            }

            .main-slider {
                margin: 1rem 0.5rem;
                border-radius: 15px;
            }

            .slider-btn {
                padding: 0.5rem;
                font-size: 1rem;
            }

            .slider-dots {
                bottom: 10px;
            }

            .slider-dot {
                width: 10px;
                height: 10px;
            }

            /* Категории игр для мобильной версии */
            .game-categories {
                margin: 1rem 0.5rem 1.5rem;
                padding: 0.8rem 0;
            }

            .categories-container {
                gap: 0.5rem;
                padding: 0 0.5rem;
                justify-content: flex-start;
            }

            .category-btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                min-width: fit-content;
            }

            /* ИСПРАВЛЕНО: Featured Games Slider для мобильной версии */
            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 0.5rem;
            }

            .featured-games-slider {
                grid-column: 1 / -1; /* Занимает всю ширину */
                grid-row: span 1; /* Только одну строку */
                padding: 1rem;
                margin-bottom: 1rem;
                order: -1; /* Перемещает в начало */
            }

            .featured-title {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .featured-slide-wrapper {
                width: 120px;
                height: 150px;
            }

            .featured-btn {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }

            .featured-prev {
                left: -15px;
            }

            .featured-next {
                right: -15px;
            }

            .featured-game-title {
                font-size: 0.7rem;
            }

            .featured-icon {
                font-size: 1rem;
            }

            /* Игровые карточки для мобильной версии */
            .game-card {
                height: 100px;
            }

            .game-title {
                font-size: 0.7rem;
            }

            /* About Section для мобильной версии */
            .about-info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .info-card {
                padding: 1rem;
            }

            /* Login Section для мобильной версии */
            .login-step {
                padding: 1rem;
            }

            /* Bet Types Section для мобильной версии */
            .bet-types-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .bet-type-card {
                padding: 1rem;
            }

            /* Customer Care Section для мобильной версии */
            .customer-care-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .care-card {
                padding: 1rem;
            }

            /* Features Section для мобильной версии */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-card {
                padding: 1rem;
            }

            /* Process Section для мобильной версии */
            .process-steps {
                grid-template-columns: 1fr;
            }

            /* Footer для мобильной версии */
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* УБРАНЫ все дополнительные классы для скрытия - элементы всегда видимы */