
        :root {
            --safari-gold: #f6af08;
            --safari-green: #2e8b57;
            --safari-brown: #8b4513;
            --dark-bg: #0f172a;
            --light-bg: #1e293b;
        }
        
        * {
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a3a1a 50%, #2d5a2d 100%);
            color: #fff;
            min-height: 100vh;
        }
        
        .hero-section {
            background: url('static/img/safari-bg.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(46,139,87,0.7) 0%, rgba(246,175,8,0.7) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .bonus-badge {
            background: linear-gradient(45deg, var(--safari-green), var(--safari-gold));
            border-radius: 50px;
            padding: 10px 25px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #fff, var(--safari-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
        }
        
        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #e2e8f0;
        }
        
        .cta-button {
            background: linear-gradient(45deg, var(--safari-green), var(--safari-gold));
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            color: white;
        }
        
        .demo-button {
            background: transparent;
            border: 2px solid var(--safari-gold);
            border-radius: 50px;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--safari-gold);
            transition: all 0.3s ease;
        }
        
        .demo-button:hover {
            background: var(--safari-gold);
            color: var(--dark-bg);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, var(--safari-green), var(--safari-gold));
            border-radius: 2px;
        }
        
        .feature-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--safari-green), var(--safari-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bonus-card {
            background: linear-gradient(135deg, var(--light-bg) 0%, #2d3748 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid var(--safari-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .bonus-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--safari-gold);
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .bonus-description {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .gameplay-section {
            background: url('static/img/safari-gameplay-bg.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
        }
        
        .gameplay-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.9);
        }
        
        .demo-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .demo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: all 0.3s ease;
        }
        
        .demo-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .provider-badge {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .provider-logo {
            height: 30px;
            margin-right: 10px;
        }
        
        .footer {
            background: var(--dark-bg);
            padding: 40px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(45deg, var(--safari-green), var(--safari-gold));
            padding: 15px 0;
            text-align: center;
            z-index: 100;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
        }
        
        .sticky-cta-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        @media (max-width: 768px) {
            .sticky-cta-content {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        .navbar {
            background: rgba(15, 23, 42, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 15px 0;
        }
        
        .navbar-brand img {
            max-height: 50px;
        }
        
        .navbar-menu {
            background: transparent !important;
        }
        
        .navbar-item {
            color: #fff !important;
            font-weight: 600;
        }
        
        .navbar-item:hover {
            background: transparent !important;
            color: var(--safari-gold) !important;
        }
        
        .mobile-cta {
            display: none;
        }
        
        @media (max-width: 1024px) {
            .mobile-cta {
                display: block;
            }
            
            .desktop-cta {
                display: none;
            }
        }

        /* Новые стили для раздела сравнения и FAQ */
        .comparison-section {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .content-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 20px 0;
            color: var(--safari-gold);
            border-bottom: 2px solid var(--safari-green);
            padding-bottom: 10px;
        }
        
        .content-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 15px 0;
            color: #e2e8f0;
        }
        
        .content-section p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #cbd5e1;
        }
        
        .content-section ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .content-section li {
            margin-bottom: 10px;
            line-height: 1.5;
            color: #cbd5e1;
        }
        
        .content-section strong {
            color: var(--safari-gold);
        }
        
        .faq {
            margin-top: 50px;
        }
        
        .faq-item {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid var(--safari-green);
        }
        
        .faq-item h3 {
            color: var(--safari-gold);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .comparison-highlight {
            background: linear-gradient(45deg, rgba(46,139,87,0.1), rgba(246,175,8,0.1));
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Стили для таблицы */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .specs-table th {
            background: linear-gradient(45deg, var(--safari-green), var(--safari-gold));
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        
        .specs-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: #cbd5e1;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .specs-table tr:hover {
            background: rgba(255,255,255,0.03);
        }
        
        .specs-table .highlight {
            color: var(--safari-gold);
            font-weight: 600;
        }

        /* Стили для стратегии */
        .strategy-section {
            background: linear-gradient(135deg, rgba(46,139,87,0.1) 0%, rgba(246,175,8,0.1) 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid var(--safari-gold);
        }
        
        .strategy-title {
            color: var(--safari-gold);
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .strategy-point {
            margin-bottom: 25px;
            padding-left: 20px;
            border-left: 3px solid var(--safari-green);
        }
        
        .strategy-point h4 {
            color: var(--safari-gold);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .strategy-point p {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .strategy-point ul {
            margin-top: 10px;
            padding-left: 20px;
        }
        
        .strategy-point li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .strategy-point li:before {
            content: "•";
            color: var(--safari-gold);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .key-principle {
            background: rgba(246, 175, 8, 0.1);
            border: 2px solid var(--safari-gold);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            text-align: center;
        }
        
        .key-principle h4 {
            color: var(--safari-gold);
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        /* Стили для блока игр */
        .games-section {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
        }
        
        .games-row {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .game-item {
            flex: 0 0 calc(25% - 20px);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .game-item {
                flex: 0 0 calc(50% - 20px);
            }
        }
        
        .game-icon {
            width: 100px;
            height: 100px;
            border-radius: 15px;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 2px solid var(--safari-gold);
            transition: all 0.3s ease;
        }
        
        .game-item:hover .game-icon {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(246, 175, 8, 0.3);
        }
        
        .game-name {
            font-weight: 600;
            color: #e2e8f0;
        }
    