        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: white;
        }
        /* Фиксированное меню - во всю ширину */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #030304;
            padding: 10px 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 8px 0px 2px;
        }
        .logo-container {
            display: flex;
            align-items: center;
        }
        .logo-image {
            margin-left: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .logo-text {
            color: white;
            font-size: 20px;
            font-weight: bold;
            text-decoration: none;
        }
        .nav-buttons {
            display: flex;
            gap: 10px;
        }
        .nav-btn {
            background: linear-gradient(45deg, #632555, #4C1F43);
            color: white;
            border: none;
            padding: 8px 15px;
            text-decoration: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        /* Анимация пульсации */
        .nav-btn {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 3px 6px rgba(0,0,0,0.3);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            }
        }
        .nav-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 3px 6px rgba(0,0,0,0.3);
            animation: none;
        }
        .nav-btn:active {
            transform: scale(0.98);
        }
        /* Основной контент - фиксированная ширина */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 60px;
        }
        /* Hero секция */
        .hero {
            display: flex;
            height: 80vh;
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #f8f8f8;
            padding: 20px;
        }
        .hero-image {
            flex: 1;
            background-image: url('/images/main.jpg');
            background-size: cover;
            background-position: center;
            min-height: 300px;
        }
        .hero-title {
            font-size: 3rem;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 30px;
            text-align: center;
        }
        .hero-btn {
            background: linear-gradient(45deg, #632555, #4C1F43);
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            width: 80%;
            max-width: 300px;
        }
        /* Анимация пульсации для кнопки Play */
        .hero-btn {
            animation: pulse 2s infinite;
        }
        .hero-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            animation: none;
        }
        .hero-btn:active {
            transform: scale(0.98);
        }
        /* Секция игр */
        .games-section {
            padding: 40px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: #333;
        }
        .games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        .game-image {
            width: 100%;
            height: 200px;
            background-color: #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #666;
        }
        .game-image img {
            border-radius: 8px;
        }        
        .game-image:hover {
            transform: scale(1.03);
        }
        /* Бонусные блоки */
        .bonus-section {
            padding: 20px 0;
            margin: 20px 0;
        }
        .bonus-block {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f8f8f8;
            border-radius: 8px;
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 15px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .bonus-logo {
            display: flex;
            align-items: center;
        }
        .bonus-logo img {
            border-radius: 5px;
        }
        .bonus-logo-image {
            margin-left: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bonus-text-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }
        .bonus-text {
            padding: 0 10px 0 10px;
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            text-align: center;
        }
        .bonus-btn {
            background: linear-gradient(45deg, #632555, #4C1F43);
            color: white;
            border: none;
            padding: 10px 15px;
            font-size: 14px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        /* Анимация пульсации для бонусной кнопки */
        .bonus-btn {
            animation: pulse 2s infinite;
        }
        .bonus-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 3px 6px rgba(0,0,0,0.3);
            animation: none;
        }
        .bonus-btn:active {
            transform: scale(0.98);
        }
        /* Преимущества */
        .advantages-section {
            padding: 10px 0;
            background-color: white;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .advantage-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
            border: 2px solid #632555;
        }
        .advantage-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #632555;
        }
        .advantage-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }
        .advantage-description {
            color: #666;
            font-size: 0.9rem;
        }
        /* Текстовая секция */
        .text-section {
            padding: 20px 0;
        }
        .text-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .text-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }
        .text-section p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }
        /* Таблица */
        .info-table {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-collapse: collapse;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .info-table th,
        .info-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }
        .info-table th {
            background-color: #632555;
            color: white;
            font-weight: bold;
        }
        .info-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .info-table tr:hover {
            background-color: #f1f1f1;
        }
        /* Плюсы и минусы */
        .pros-cons-section {
            margin: 30px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .pros-cons-title {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #333;
        }
        .pros-cons-container {
            display: flex;
            gap: 30px;
        }
        .pros-list, .cons-list {
            flex: 1;
        }
        .pros-list h3, .cons-list h3 {
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #632555;
        }
        .pros-list ul, .cons-list ul {
            list-style-type: none;
            padding-left: 0;
        }
        .pros-list li, .cons-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: #555;
        }
        .pros-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #632555;
            font-weight: bold;
        }
        .cons-list li:before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #f44336;
            font-weight: bold;
        }
        /* FAQ секция */
        .faq-section {
            padding: 20px 0;
            background-color: white;
        }
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            background-color: #f8f8f8;
            padding: 15px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }
        .faq-answer.open {
            padding: 15px;
            max-height: 500px;
        }
        .toggle-icon {
            transition: transform 0.3s ease;
        }
        .toggle-icon.open {
            transform: rotate(180deg);
        }
        /* Отзывы */
        .reviews-section {
            padding: 20px 0;
            background-color: white;
        }
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .review-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
        }
        .review-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #f0f0f0;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #666;
        }
        .review-photo img {
            width: 50px;
            border-radius: 50%;
        }        
        .review-text {
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 15px;
            color: #555;
        }
        .review-author {
            font-weight: bold;
            color: #333;
            margin-bottom: 3px;
            font-size: 0.95rem;
        }
        .review-details {
            color: #666;
            font-size: 0.8rem;
        }
        /* Футер - во всю ширину */
        .footer {
            background-color: #030304;
            color: white;
            padding: 20px 0 10px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 10px 0;
            padding: 0 20px;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }
        .footer-link:hover {
            color: white;
        }
        .payment-methods-bottom {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }
        .payment-icon-bottom {
            width: 40px;
            height: 25px;
            background-color: #555;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: white;
            font-weight: bold;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 20px auto 0;
            padding-top: 20px;
            border-top: 1px solid #555;
            text-align: center;
            color: #ccc;
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px 0 20px;
        }
        .language-selector-left {
            display: flex;
            gap: 10px;
            text-align: left;
        }
        .language-selector-right {
            display: flex;
            gap: 10px;
            text-align: right;
        }
        .flag-btn {
            width: 30px;
            height: 20px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            background-size: cover;
            background-position: center;
        }
        .flag-ru {
            background-color: #fff;
            background-image: linear-gradient(to bottom, #fff 0%, #fff 33%, #d52b1e 33%, #d52b1e 66%, #0039a6 66%, #0039a6 100%);
        }
        .flag-en {
            background-color: #fff;
            background-image: linear-gradient(to bottom, #012169 0%, #012169 33%, #fff 33%, #fff 66%, #c8102e 66%, #c8102e 100%);
        }
        .flag-fr {
            background-color: #fff;
            background-image: linear-gradient(to right, #002654 0%, #002654 33%, #fff 33%, #fff 66%, #ce1126 66%, #ce1126 100%);
        }
        /* Кнопка прокрутки наверх */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #632555;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .scroll-to-top:hover {
            background-color: #4C1F43;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4);
        }
        .scroll-to-top:active {
            transform: translateY(-1px);
        }
        /* Адаптивность */
        @media (max-width: 992px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .games-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero {
                flex-direction: column;
                height: auto;
            }
            .hero-image {
                display:none;
            }                 
            .hero-content {
                width: 100%;
                padding: 30px;
                text-align: center;
                align-items: center;
                margin: 20px 0;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .pros-cons-container {
                flex-direction: column;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                margin: 20px auto 0;
            }
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }
        @media (max-width: 576px) {
            .bonus-logo {
                display:none;
            }
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .nav-buttons {
                flex-direction: column;
                gap: 8px;
            }
            .advantages-grid {
                gap: 15px;
            }
            .footer-links {
                gap: 15px;
            }
            .footer-bottom {
                margin: 15px auto 0;
            }
            .hero-content {
                padding: 20px;
                margin: 10px 0;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
        }