:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-surface-variant: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #707A8A;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3498DB;
            --border-subtle: #363C44;
            --border-medium: #474D57;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }

        header .brand strong {
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-heading);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-family: var(--font-heading);
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-size: 14px;
        }

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

        .btn-login:hover {
            background-color: var(--bg-surface-variant);
        }

        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse, #000);
        }

        .btn-register:hover {
            background-color: var(--primary-dark);
        }

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

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
            cursor: pointer;
        }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
            border: 2px solid var(--primary);
        }

        .jackpot-title {
            font-family: var(--font-heading);
            font-size: 18px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }

        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

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

        h2 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--text-primary);
            margin: 30px 0 20px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-subtle);
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border-color: var(--primary);
        }

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

        .game-card h3 {
            padding: 12px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            font-family: var(--font-heading);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .payment-item {
            background-color: var(--bg-surface-variant);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-subtle);
        }

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

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .guide-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
            font-family: var(--font-heading);
        }

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }

        .lottery-table th {
            background-color: var(--bg-surface-variant);
            color: var(--primary);
            font-family: var(--font-heading);
        }

        .lottery-table td:nth-child(3) {
            color: var(--success);
            font-weight: bold;
        }

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

        .provider-box {
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-heading);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 60px;
        }

        .p1 { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
        .p2 { background: linear-gradient(135deg, #4776E6, #8E54E9); }
        .p3 { background: linear-gradient(135deg, #00b09b, #96c93d); }
        .p4 { background: linear-gradient(135deg, #f7971e, #ffd200); }
        .p5 { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
        .p6 { background: linear-gradient(135deg, #eb3349, #f45c43); }
        .p7 { background: linear-gradient(135deg, #1d976c, #93f9b9); }
        .p8 { background: linear-gradient(135deg, #3a1c71, #d76d77); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .comment-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

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

        .comment-header i {
            font-size: 30px;
            color: var(--text-disabled);
        }

        .comment-header .user-info h4 {
            font-size: 16px;
            color: var(--text-primary);
        }

        .comment-header .stars {
            color: var(--primary);
            font-size: 12px;
        }

        .comment-body {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-disabled);
            text-align: right;
        }

        .faq-section {
            margin-bottom: 30px;
        }

        .faq-item {
            background-color: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: var(--bg-surface-variant);
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 15px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-footer {
            text-align: center;
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border-medium);
        }

        .security-footer .ssl-seal {
            font-size: 40px;
            color: var(--success);
            margin-bottom: 15px;
        }

        .security-footer p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .security-footer a {
            color: var(--primary);
            text-decoration: none;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
            transition: 0.3s;
        }

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

        .nav-item:hover {
            color: var(--primary);
        }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 15px 120px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
        }

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

        footer .contact-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        footer .link-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }

        footer .link-columns a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        footer .link-columns a:hover {
            color: var(--primary);
        }

        footer .copyright {
            color: var(--text-disabled);
            font-size: 13px;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .provider-wall { grid-template-columns: 1fr; }
            footer .link-columns { grid-template-columns: repeat(2, 1fr); }
        }