:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #D32F2F;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E14;
            --bg-sec: #161B22;
            --bg-card: #1C2128;
            --text-main: #FFFFFF;
            --text-sec: #94A3B8;
            --win: #FACC15;
            --border: #30363D;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary);
        }

        header {
            background-color: var(--bg-sec);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-main);
        }

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

        .btn {
            padding: 6px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

        .btn-login {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-reg {
            background: var(--gold-grad);
            color: #000;
        }

        .banner {
            width: 100%;
            display: block;
            aspect-ratio: 2/1;
            object-fit: cover;
            cursor: pointer;
        }

        .jackpot-container {
            margin: 15px;
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

        .jackpot-title {
            color: var(--text-sec);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-size: 32px;
            font-family: 'Roboto Mono', monospace;
            font-weight: 900;
            background: var(--gold-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .intro-card {
            margin: 15px;
            padding: 20px;
            background: var(--bg-card);
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .intro-card p {
            color: var(--text-sec);
            font-size: 14px;
        }

        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .game-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border);
        }

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

        .game-card h3 {
            padding: 8px;
            font-size: 13px;
            color: var(--text-main);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-sec);
            margin: 15px;
            border-radius: 12px;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            color: var(--text-sec);
        }

        .payment-item i {
            font-size: 20px;
            color: var(--primary);
        }

        .guide-section {
            padding: 15px;
        }

        .guide-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .guide-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .guide-card p {
            font-size: 13px;
            color: var(--text-sec);
        }

        .lottery-list {
            margin: 15px;
            background: var(--bg-sec);
            border-radius: 12px;
            padding: 10px;
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 12px;
        }

        .lottery-item:last-child {
            border-bottom: none;
        }

        .lottery-user { color: var(--primary); }
        .lottery-win { color: var(--win); font-weight: bold; }

        .providers {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }

        .provider-block {
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 14px;
        }

        .provider-1 { background: #2d3436; color: var(--primary); }
        .provider-2 { background: #0984e3; color: #fff; }

        .comment-grid {
            padding: 15px;
        }

        .comment-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }

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

        .stars { color: var(--win); font-size: 12px; }

        .faq-section {
            padding: 15px;
        }

        .faq-item {
            margin-bottom: 15px;
        }

        .faq-item h3 {
            font-size: 15px;
            margin-bottom: 5px;
        }

        .faq-item p {
            font-size: 13px;
            color: var(--text-sec);
        }

        .security-footer {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-sec);
            margin-top: 20px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--text-sec);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-sec);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 1001;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-sec);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }

        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        footer {
            background: var(--bg-main);
            padding: 30px 15px;
            border-top: 1px solid var(--border);
        }

        .footer-row {
            margin-bottom: 25px;
        }

        .footer-row h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 16px;
        }

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

        .footer-links a {
            color: var(--text-sec);
            text-decoration: none;
            font-size: 13px;
        }

        .contact-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-links a {
            color: var(--text-sec);
            text-decoration: none;
            font-size: 13px;
        }

        .copyright {
            text-align: center;
            color: var(--text-sec);
            font-size: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            body { max-width: 600px; margin: 0 auto; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
        }