body {
            background-color: #1a1d24;
            color: #ffffff;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background: #111419;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #FFD700;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 8px 15px;
            border-radius: 20px;
            border: none;
            font-weight: bold;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .btn:active {
            transform: scale(0.95);
        }
        .btn-login {
            background: transparent;
            color: #FFD700;
            border: 1px solid #FFD700;
        }
        .btn-register {
            background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%);
            color: #ffffff;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: radial-gradient(circle, #2a2e38 0%, #111419 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #FFD700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label {
            color: #FFD700;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            font-variant-numeric: tabular-nums;
            text-shadow: 0 0 10px #FFD700;
        }
        .intro-card {
            margin: 15px;
            padding: 20px;
            background: #252932;
            border-radius: 15px;
        }
        .intro-card h1 {
            font-size: 20px;
            color: #FFD700;
            margin: 0 0 10px 0;
        }
        .intro-card p {
            font-size: 14px;
            color: #cccccc;
            margin: 0;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 18px;
            margin: 0;
            color: #FFD700;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: #252932;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: #ffffff;
            transition: transform 0.2s;
        }
        .game-card:hover {
            transform: translateY(-3px);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            display: block;
            object-fit: cover;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 13px;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: #888;
            margin-top: 3px;
        }
        .payments-licensing {
            margin: 20px 15px;
            padding: 20px;
            background: #111419;
            border-radius: 15px;
            text-align: center;
        }
        .icon-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            opacity: 0.8;
        }
        .icon-grid i {
            font-size: 24px;
            color: #FFD700;
        }
        .guidelines-section {
            padding: 15px;
        }
        .guideline-item {
            background: #252932;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
            border-left: 4px solid #FFD700;
        }
        .guideline-item h3 {
            font-size: 16px;
            margin: 0 0 8px 0;
            color: #FFD700;
        }
        .guideline-item p {
            font-size: 13px;
            color: #bbb;
            margin: 0;
        }
        .marquee-container {
            background: #111419;
            padding: 15px 0;
            overflow: hidden;
            margin: 20px 0;
        }
        .marquee-content {
            display: flex;
            animation: marquee 40s linear infinite;
            gap: 30px;
            width: max-content;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .winner-tag {
            background: #252932;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 12px;
            white-space: nowrap;
            border: 1px solid #333;
        }
        .winner-tag span {
            color: #FFD700;
            font-weight: bold;
        }
        .providers-wall {
            background: #111419;
            padding: 20px 15px;
            margin: 20px 0;
            text-align: center;
        }
        .providers-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            font-size: 14px;
            color: #888;
            font-weight: bold;
        }
        .reviews-section {
            padding: 0 15px;
        }
        .review-card {
            background: #252932;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: #FFD700;
        }
        .review-user-info h3 {
            font-size: 14px;
            margin: 0;
        }
        .stars {
            color: #FFD700;
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: #666;
        }
        .faq-section {
            padding: 20px 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: #111419;
            border-radius: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: #FFD700;
            margin-top: 0;
        }
        .faq-item p {
            font-size: 13px;
            color: #ccc;
            margin-bottom: 0;
        }
        .security-section {
            background: #111419;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        .security-icons i {
            font-size: 30px;
            color: #FFD700;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #111419;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: #888;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 3px;
        }
        .nav-item.active {
            color: #FFD700;
        }
        footer {
            background: #0d0f13;
            padding: 30px 15px;
            color: #666;
            text-align: center;
        }
        .footer-contacts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-contacts a {
            color: #FFD700;
            text-decoration: none;
            font-size: 13px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 12px;
        }
        .copyright {
            font-size: 11px;
            border-top: 1px solid #222;
            padding-top: 20px;
        }