   /* КРИТИЧЕСКИЕ СТИЛИ - загружаются первыми */
        * {
            margin: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* Отступ для якорных ссылок */
        }
        
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 80px; /* Компенсация высоты фиксированного хедера */
        }
        
        h3, h2
        {
            padding-top:1.7em;
        }
        
         h4, h5
        {
            padding-top:1.3em;
        }
        
        p
        {
            padding-top:0.5em;
        }
      
        
        /* ФИКСИРОВАННАЯ ШАПКА - ВСЕГДА ВИДИМА */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            transform: translateZ(0);
            will-change: transform;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }
        
        /* ОСТАЛЬНЫЕ СТИЛИ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            height: 80px; /* Фиксированная высота хедера */
        }
        
        .logo img {
            height: 40px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .logo img:hover {
            transform: scale(1.05);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            transform: translateZ(0);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
            color: #000;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) translateZ(0);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
        }
        
        .language-selector {
            position: relative;
        }
        
        .language-toggle {
            padding: 8px 12px;
            cursor: pointer;
            white-space: nowrap;
            border-radius: 4px;
            transition: background-color 0.2s ease;
        }
        
        .language-toggle:hover {
            background-color: rgba(0,0,0,0.05);
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            min-width: 140px;
            z-index: 1001;
        }
        
        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .language-dropdown a {
            display: block;
            padding: 10px 16px;
            color: #333;
            text-decoration: none;
            transition: background 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .language-dropdown a:last-child {
            border-bottom: none;
        }
        
        .language-dropdown a:hover {
            background: #f5f5f5;
        }
        
        /* Hero Section */
        .hero {
            padding: 40px 0;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .hero-text {
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .hero-text {
                text-align: left;
            }
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #222;
        }
        
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #666;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffc107, transparent);
            margin: 25px 0;
            max-width: 300px;
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .slot-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: translateZ(0);
        }
        
        /* Game Section */
        .game-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .game-container {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .game-header {
            background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
            color: #000;
            padding: 20px;
            text-align: center;
        }
        
        .game-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }
        
        .game-frame-container {
            position: relative;
            width: 100%;
            padding-bottom: 75%; /* Соотношение сторон 4:3 */
            height: 0;
            overflow: hidden;
        }
        
        .game-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            background: #000;
        }
        
        .game-info {
            padding: 20px;
            background: #fff;
            border-top: 1px solid #eee;
        }
        
        .game-description {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Content Sections */
        .section {
            padding: 60px 0;
        }
        
        .section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #222;
            text-align: center;
        }
        
        .content-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #444;
        }
        
        /* Table Styles */
        .table-container {
            margin: 30px 0;
            overflow-x: auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            min-width: 600px;
        }
        
        .specs-table th,
        .specs-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .specs-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #333;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        /* Video Section */
        .video-section {
            text-align: center;
        }
        
        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .video-placeholder {
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
            position: relative;
            cursor: pointer;
        }
        
        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 193, 7, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .video-play-button:hover {
            background: #ffc107;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-play-button::after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-left: 20px solid #000;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }
        
        /* FAQ Section - Заголовок слева */
        .faq {
            margin-top: 40px;
        }
        
        .faq-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #222;
            text-align: left; /* Заголовок слева */
        }
        
        .faq-item {
            margin-bottom: 30px;
            background: #fff;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }
        
        .faq-question {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            padding: 0;
            cursor: default;
        }
        
        .faq-question::after {
            display: none;
        }
        
        .faq-answer {
            max-height: none;
            padding: 0;
            color: #666;
            line-height: 1.6;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        /* Кнопка "Наверх" */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #ffc107;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            background: #ff9800;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
        }
        
        /* Footer - Без желтых заголовков и линии */
        .footer {
            background: #222;
            color: #fff;
            padding: 60px 0 30px;
        }
        
        .footer-table-container {
            margin-bottom: 40px;
            overflow-x: auto;
        }
        
        .footer-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            background: transparent;
        }
        
        .footer-table th {
            background: transparent;
            color: #ccc; /* Серый цвет вместо желтого */
            padding: 15px 20px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            border: none; /* Убрана линия */
        }
        
        .footer-table td {
            padding: 15px 20px;
            border: none;
            vertical-align: top;
            color: #ccc;
        }
        
        .footer-table a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        
        .footer-table a:hover {
            color: #ffc107;
        }
        
        .footer-table tr:last-child td {
            border-bottom: none;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Оптимизации для мобильных устройств */
        @media (max-width: 767px) {
            body {
                padding-top: 70px; /* Меньший отступ для мобильных */
            }
            
            .header-content {
                padding: 10px 0;
                height: 70px;
            }
            
            .logo img {
                height: 35px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .game-section {
                padding: 30px 0;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .content-text {
                font-size: 1rem;
            }
            
            .specs-table th,
            .specs-table td {
                padding: 10px 12px;
                font-size: 14px;
            }
            
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .language-dropdown {
                min-width: 120px;
            }
            
            .game-frame-container {
                padding-bottom: 100%; /* Более квадратное соотношение для мобильных */
            }
            
            .faq-question {
                font-size: 1.1rem;
            }
            
            .footer-table {
                min-width: 600px;
            }
            
            .footer-table th,
            .footer-table td {
                padding: 12px 15px;
                font-size: 14px;
            }
        }
        
        /* Темная тема */
        @media (prefers-color-scheme: dark) {
            body {
                background: #1a1a1a;
                color: #e0e0e0;
            }
            
            .header {
                background: rgba(45, 45, 45, 0.95);
            }
            
            .header.scrolled {
                background: rgba(45, 45, 45, 0.98);
            }
            
            .hero-title {
                color: #fff;
            }
            
            .hero-description {
                color: #b0b0b0;
            }
            
            .game-section {
                background: linear-gradient(135deg, #252525 0%, #2d2d2d 100%);
            }
            
            .game-container {
                background: #2d2d2d;
            }
            
            .game-info {
                background: #2d2d2d;
                border-color: #444;
            }
            
            .game-description {
                color: #ccc;
            }
            
            .section:nth-child(even) {
                background: #252525;
            }
            
            .section-title {
                color: #fff;
            }
            
            .content-text {
                color: #ccc;
            }
            
            .specs-table {
                background: #2d2d2d;
                color: #e0e0e0;
            }
            
            .specs-table th {
                background: #333;
                color: #fff;
            }
            
            .specs-table th,
            .specs-table td {
                border-color: #444;
            }
            
            .faq-item {
                background: transparent;
            }
            
            .faq-question {
                color: #fff;
            }
            
            .faq-answer {
                color: #ccc;
            }
            
            .language-dropdown {
                background: #2d2d2d;
            }
            
            .language-dropdown a {
                color: #e0e0e0;
                border-color: #444;
            }
            
            .language-dropdown a:hover {
                background: #333;
            }
            
            .language-toggle:hover {
                background-color: rgba(255,255,255,0.1);
            }
        }
        
        /* Высокая контрастность */
        @media (prefers-contrast: high) {
            .btn-primary {
                background: #000;
                color: #fff;
            }
            
            .divider {
                background: #000;
            }
        }
        
        /* Уменьшение движения */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
        }
