/* Все стили остаются без изменений */
     :root {
            --primary: #D4AF37;
            --secondary: #8B0000;
            --dark: #1A1A1A;
            --light: #F5F5F5;
            --gray: #333333;
            --accent: #FF6B00;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background-color: #0D0D0D;
            background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                              url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTAgMGg2MHY2MEgweiIvPjxwYXRoIGQ9Ik0wIDBsNjAgNjBNNjAgMGwtNjAgNjAiLz48L2c+PC9zdmc+');
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(26, 26, 26, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary), #F9D423);
            color: var(--dark);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }
        
        /* Hero Section */
        .hero {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(circle at center, #2A0C0C 0%, #0D0D0D 70%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZD0iTTAgMGgxMDB2MTAwSDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTI1IDI1bDUwIDUwTTc1IDI1TDI1IDc1IiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMC41IiBvcGFjaXR5PSIwLjMiLz48L3N2Zz4=');
            opacity: 0.2;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--light);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), #FF9D00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: #CCCCCC;
            font-family: 'Roboto Slab', serif;
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .feature-text {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .feature-value {
            color: var(--primary);
            font-weight: 700;
            margin-top: 5px;
        }
        
        .game-container {
            max-width: 800px;
            height: 400px;
            margin: 0 auto;
            border: 4px solid var(--primary);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .game-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1A1A1A, #2A1E1E);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #F9D423);
            color: var(--dark);
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--primary);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        
        /* Game Info Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .game-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .game-details {
            background: rgba(26, 26, 26, 0.7);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .info-item {
            margin-bottom: 20px;
        }
        
        .info-label {
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .pros-list, .cons-list {
            padding: 25px;
            border-radius: 12px;
        }
        
        .pros-list {
            background: rgba(0, 100, 0, 0.2);
            border-left: 4px solid green;
        }
        
        .cons-list {
            background: rgba(139, 0, 0, 0.2);
            border-left: 4px solid var(--secondary);
        }
        
        .list-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .list-title::before {
            content: '✓';
            margin-right: 10px;
            color: green;
            font-weight: bold;
        }
        
        .cons-list .list-title::before {
            content: '✕';
            color: var(--secondary);
        }
        
        .pros-list ul, .cons-list ul {
            list-style: none;
        }
        
        .pros-list li, .cons-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .pros-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: green;
            font-weight: bold;
        }
        
        .cons-list li::before {
            content: '✕';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        
        /* Features Section */
        .features {
            background: radial-gradient(circle at top, #1E0F0F 0%, #0D0D0D 70%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(26, 26, 26, 0.7);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .feature-card-desc {
            color: #CCCCCC;
            font-size: 0.95rem;
        }
        
        /* Casinos Section */
        .casinos {
            background: #0D0D0D;
        }
        
        .casino-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .casino-card {
            background: rgba(26, 26, 26, 0.7);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .casino-card:hover {
            transform: translateY(-5px);
        }
        
        .casino-header {
            padding: 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #333;
        }
        
        .casino-logo {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .casino-logo img {
            max-width: 90%;
            max-height: 90%;
        }
        
        .casino-name {
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .casino-rating {
            display: flex;
            margin-top: 5px;
        }
        
        .star {
            color: var(--primary);
            margin-right: 3px;
        }
        
        .casino-body {
            padding: 20px;
        }
        
        .casino-bonus {
            background: rgba(212, 175, 55, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .bonus-amount {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .bonus-info {
            font-size: 0.9rem;
            color: #CCCCCC;
        }
        
        .casino-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--primary), #F9D423);
            color: var(--dark);
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .casino-button:hover {
            opacity: 0.9;
        }
        
        /* FAQ Section */
        .faq {
            background: radial-gradient(circle at bottom, #1E0F0F 0%, #0D0D0D 70%);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(26, 26, 26, 0.7);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(40, 40, 40, 0.5);
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(40, 40, 40, 0.7);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        /* Footer */
        footer {
            background: #0A0A0A;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 0.9rem;
        }
        
        .responsible-gaming {
            background: rgba(139, 0, 0, 0.2);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            text-align: center;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .game-info,
            .features-grid,
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-features {
                flex-wrap: wrap;
            }
            
            .pros-cons,
            .game-info,
            .features-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        /* Все предыдущие стили остаются без изменений */
        :root {
            --primary: #D4AF37;
            --secondary: #8B0000;
            --dark: #1A1A1A;
            --light: #F5F5F5;
            --gray: #333333;
            --accent: #FF6B00;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background-color: #0D0D0D;
            background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                              url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTAgMGg2MHY2MEgweiIvPjxwYXRoIGQ9Ik0wIDBsNjAgNjBNNjAgMGwtNjAgNjAiLz48L2c+PC9zdmc+');
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Стили для новой секции Game Review */
        .game-review {
            background: radial-gradient(circle at center, #1A0F0F 0%, #0D0D0D 70%);
            padding: 80px 0;
        }
        
        .review-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .review-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .review-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .review-subtitle {
            font-size: 1.2rem;
            color: #CCCCCC;
            max-width: 700px;
            margin: 0 auto;
            font-family: 'Roboto Slab', serif;
        }
        
        .review-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .review-text {
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .review-text p {
            margin-bottom: 20px;
        }
        
        .review-text strong {
            color: var(--primary);
        }
        
        .review-highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        
        .highlight-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .strategy-section {
            background: rgba(26, 26, 26, 0.7);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .strategy-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .strategy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .strategy-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .strategy-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
        }
        
        .strategy-content h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .strategy-content p {
            font-size: 0.95rem;
            color: #CCCCCC;
        }
        
        /* Адаптивность для новой секции */
        @media (max-width: 768px) {
            .review-content,
            .strategy-grid {
                grid-template-columns: 1fr;
            }
            
            .review-title {
                font-size: 2rem;
            }
        }

        /* Все остальные стили остаются без изменений */
        /* Header Styles, Hero Section, Game Info Section, Features Section, Casinos Section, FAQ Section, Footer */