
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0e1a;
            color: #fff;
            line-height: 1.6;
        }
        
        a {
            color: #f8d849;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #f8d849 0%, #f5a623 100%);
            color: #0a0e1a;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #f5a623 0%, #f8d849 100%);
            color: #0a0e1a;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: #f8d849;
        }
        
        h1 {
            font-size: 42px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 36px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #f8d849 0%, #f5a623 100%);
        }
        
        h3 {
            font-size: 24px;
        }
        
        p {
            margin-bottom: 15px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #2a3655;
        }

        th {
            background-color: #1a2238;
            color: #f8d849;
        }

        tr:hover {
            background-color: rgba(248, 216, 73, 0.1);
        }

        .seo-block {
            background-color: #131a2d;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .seo-block ul, .seo-block ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .seo-block li {
            margin-bottom: 8px;
        }

        .seo-image {
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .image-container {
            position: relative;
            text-align: center;
            margin: 25px 0;
        }

        .image-btn {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            min-width: 200px;
        }
        
        /* Header */
        header {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: bold;
            color: #f8d849;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
        }
        
        /* Hero Section */
.hero {
    background: url('../img/3.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 0 20px;

        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 26, 0.7);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }
        
        .hero h1 {
            font-size: 52px;
            margin-bottom: 30px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .hero-btns .btn {
            min-width: 200px;
        }
        
        /* Features Section */
        .features {
            background-color: #4f121200;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background-color: #1a2238;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .feature-icon {
            font-size: 50px;
            color: #f8d849;
            margin-bottom: 20px;
        }
        
        /* Games Section */
        .games {
            background-color: #0a0e1a;
        }
        
        .games-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background-color: #1a2238;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: #f8d849;
            color: #0a0e1a;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .game-card {
            background-color: #1a2238;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .game-img {
            height: 160px;
            background-color: #0a0e1a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #f8d849;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .game-provider {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .game-btn {
            width: 100%;
            padding: 10px;
            background-color: #f8d849;
            color: #0a0e1a;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .game-btn:hover {
            background-color: #f5a623;
        }
        
        /* Bonuses Section */
        .bonuses {
            background-color: #131a2d;
        }
        
        .bonus-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 50px;
        }
        
        .bonus-card {
            background: linear-gradient(135deg, #1a2238 0%, #2a3655 100%);
            border-radius: 10px;
            padding: 30px;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .bonus-card:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(248, 216, 73, 0.1) 0%, rgba(248, 216, 73, 0) 70%);
            transform: rotate(30deg);
        }
        
        .bonus-card h3 {
            margin-bottom: 15px;
        }
        
        .bonus-amount {
            font-size: 32px;
            font-weight: bold;
            color: #f8d849;
            margin-bottom: 15px;
        }
        
        .bonus-list {
            margin-bottom: 20px;
            list-style-position: inside;
        }
        
        .bonus-list li {
            margin-bottom: 8px;
        }
        
        /* Reviews Section */
        .reviews {
            background-color: #0a0e1a;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .review-card {
            background-color: #1a2238;
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }
        
        .review-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: rgba(248, 216, 73, 0.2);
            font-family: serif;
            line-height: 1;
        }
        
        .review-text {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #f8d849;
            color: #0a0e1a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }
        
        .author-name {
            font-weight: bold;
        }
        
        .author-rating {
            color: #f8d849;
            margin-top: 3px;
        }
        
        /* FAQ Section */
        .faq {
            background-color: #131a2d;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #2a3655;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-size: 20px;
            color: #f8d849;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            display: none;
            padding: 10px 0;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        /* Tags Cloud */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 40px;
        }
        
        .tag {
            background-color: #1a2238;
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background-color: #f8d849;
            color: #0a0e1a;
        }
        
        /* Footer */
        footer {
            background-color: #000000;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #f8d849;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: #aaa;
        }
        
        .footer-links a:hover {
            color: #f8d849;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #1a2238;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #f8d849;
            color: #0a0e1a;
            transform: translateY(-3px);
        }
        
        .copyright {
            color: #666;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .bonus-cards {
                flex-direction: column;
                align-items: center;
            }

            table {
                display: block;
                overflow-x: auto;
            }

            .image-btn {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin-top: 15px;
            }
        }
    