* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: #0B0E11;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }
        header {
            background-color: #1E2329;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2B3139;
        }
        header .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        header .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-area strong {
            font-size: 16px;
            font-weight: 400;
            color: #FFFFFF;
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        header .btn-login {
            background: transparent;
            color: #FFFFFF;
            border: 1px solid #474D57;
        }
        header .btn-register {
            background-color: #FCD535;
            color: #000000;
        }
        header .btn-register:hover {
            background-color: #FFE066;
        }
        main {
            padding-bottom: 80px;
            max-width: 800px;
            margin: 0 auto;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: radial-gradient(circle, #2B3139 0%, #1E2329 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #FCD535;
        }
        .jackpot-title {
            color: #FCD535;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: 'Roboto', sans-serif;
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
        }
        .intro-card {
            background-color: #1E2329;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #FCD535;
        }
        .intro-card h1 {
            font-size: 24px;
            color: #FCD535;
            margin-bottom: 10px;
            font-family: 'Li Adorsho', sans-serif;
        }
        .intro-card p {
            font-size: 16px;
            color: #B7BDC6;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 20px;
            color: #FFFFFF;
            border-left: 3px solid #FCD535;
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: #1E2329;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2B3139;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            color: #FFFFFF;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-license {
            background-color: #1E2329;
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        .pl-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #848E9C;
        }
        .pl-item i {
            font-size: 24px;
            color: #D4AF37;
        }
        .pl-item span {
            font-size: 10px;
            text-align: center;
        }
        .guidelines-section {
            padding: 0 15px;
        }
        .guide-card {
            background-color: #1E2329;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .guide-card h3 {
            color: #FCD535;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .guide-card p {
            color: #B7BDC6;
            font-size: 14px;
            text-align: justify;
        }
        .lottery-container {
            margin: 20px 15px;
            background-color: #1E2329;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
            border: 1px solid #2B3139;
        }
        .lottery-track {
            animation: scroll-up 30s linear infinite;
        }
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid #2B3139;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: #FCD535; }
        .lottery-win { color: #0ECB81; font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-item {
            background-color: #2B3139;
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            color: #FCD535;
            font-weight: 600;
            border: 1px solid #474D57;
        }
        .reviews-section {
            padding: 0 15px;
        }
        .review-card {
            background-color: #1E2329;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #2B3139;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background-color: #2B3139;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FCD535;
        }
        .review-info h4 { font-size: 14px; }
        .stars { color: #F0B90B; font-size: 12px; }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            background-color: #1E2329;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: #FFFFFF;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #2B3139;
        }
        .faq-answer {
            padding: 15px;
            color: #B7BDC6;
            font-size: 14px;
            border-top: 1px solid #474D57;
        }
        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background-color: #1E2329;
            border-radius: 12px;
            text-align: center;
        }
        .security-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        .security-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #848E9C;
        }
        .security-item i { font-size: 24px; color: #0ECB81; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background-color: #1E2329;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #2B3139;
            z-index: 1001;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: #848E9C;
            font-size: 12px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FCD535; }
        footer {
            background-color: #0B0E11;
            padding: 30px 15px 100px;
            border-top: 1px solid #2B3139;
            text-align: center;
        }
        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        .footer-contacts a {
            color: #FCD535;
            font-size: 14px;
            padding: 5px 10px;
            border: 1px solid #FCD535;
            border-radius: 4px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #848E9C;
            font-size: 13px;
        }
        .footer-copyright {
            color: #5E6673;
            font-size: 12px;
            line-height: 1.6;
        }