@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;900&family=Roboto+Mono:wght@500&display=swap');

        body {
            background-color: #05070A;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background-color: #0A0E17;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2D343F;
        }

        header .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        header strong {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #D4AF37;
        }

        header .auth-buttons {
            display: flex;
            gap: 10px;
        }

        header button {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-login {
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #3E4756;
        }

        .btn-register {
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            color: #05070A;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px 100px 15px;
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            margin: 15px 0;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: #12161F;
            border: 2px solid #D4AF37;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .jackpot-label {
            color: #F9A825;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 36px;
            color: #FFD700;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            font-weight: bold;
        }

        .intro-card {
            background-color: #12161F;
            padding: 30px;
            border-radius: 16px;
            margin: 25px 0;
            border-left: 5px solid #D4AF37;
        }

        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            color: #D4AF37;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            color: #FFFFFF;
            margin: 40px 0 20px 0;
            text-align: center;
        }

        h3 {
            font-size: 14px;
            margin: 10px 0;
            color: #FFFFFF;
            text-align: center;
            font-weight: 500;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .game-card {
            background-color: #1C222D;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s ease;
            border: 1px solid #2D343F;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: #D4AF37;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }

        .payment-item {
            background: #1C222D;
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: #B0B8C1;
        }

        .payment-item i {
            display: block;
            font-size: 24px;
            margin-bottom: 8px;
            color: #D4AF37;
        }

        .guide-section {
            display: grid;
            gap: 20px;
            margin: 40px 0;
        }

        .guide-card {
            background: #1C222D;
            padding: 20px;
            border-radius: 12px;
        }

        .winners-marquee {
            background: #12161F;
            padding: 15px 0;
            overflow: hidden;
            border-top: 1px solid #2D343F;
            border-bottom: 1px solid #2D343F;
            margin: 30px 0;
        }

        .marquee-content {
            display: flex;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .winner-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0 30px;
            border-right: 1px solid #2D343F;
        }

        .winner-val {
            color: #00C853;
            font-weight: bold;
        }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 30px 0;
        }

        .provider-block {
            background: linear-gradient(45deg, #1C222D, #252B38);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            font-weight: bold;
            color: #D4AF37;
            border: 1px solid #2D343F;
        }

        .reviews-section {
            display: grid;
            gap: 15px;
        }

        .review-card {
            background: #1C222D;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #1E2530;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .review-header i {
            font-size: 24px;
            color: #B0B8C1;
        }

        .stars {
            color: #FFD700;
            font-size: 12px;
        }

        .faq-section {
            margin: 40px 0;
        }

        .faq-item {
            background: #12161F;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            font-weight: 600;
            color: #D4AF37;
            cursor: pointer;
            border-bottom: 1px solid #2D343F;
        }

        .faq-answer {
            padding: 15px 20px;
            font-size: 14px;
            color: #B0B8C1;
            line-height: 1.6;
        }

        .responsible-gaming {
            background: #1C222D;
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            margin: 40px 0;
        }

        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: #D4AF37;
        }

        .age-limit {
            display: inline-block;
            border: 2px solid #FF3D00;
            color: #FF3D00;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-weight: bold;
            margin: 10px 0;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #12161F;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2D343F;
            z-index: 1001;
        }

        .navigator a {
            text-decoration: none;
            color: #B0B8C1;
            font-size: 11px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .navigator i {
            font-size: 20px;
            color: #D4AF37;
        }

        footer {
            background: #0A0E17;
            padding: 40px 20px 100px 20px;
            border-top: 1px solid #2D343F;
        }

        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        footer a {
            color: #B0B8C1;
            text-decoration: none;
            font-size: 14px;
        }

        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        footer .copyright {
            text-align: center;
            font-size: 12px;
            color: #626D7A;
            border-top: 1px solid #2D343F;
            padding-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            h1 { font-size: 48px; }
            h2 { font-size: 36px; }
            .payment-methods { grid-template-columns: repeat(8, 1fr); }
        }