:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #E60000;
            --bg-main: #1A1A1A;
            --bg-surface: #2D2D2D;
            --bg-overlay: #000000;
            --bg-highlight: #3D3D3D;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #1A1A1A;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #404040;
            --border-strong: #FFD700;
            --border-muted: #262626;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Poppins', 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: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .logo-section img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }
        header .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-heading);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header .btn {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-family: var(--font-accent);
            font-weight: 500;
            border: none;
            transition: 0.3s;
        }
        header .btn-login {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        header .btn-login:hover { background-color: rgba(255, 215, 0, 0.1); }
        header .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }
        header .btn-register:hover { background-color: var(--primary-hover); }

        main { padding: 20px 15px; max-width: 1200px; margin: 0 auto; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 25px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(45deg, #000, #2D2D2D);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 30px;
        }
        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--text-primary);
            margin: 30px 0 20px;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .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-muted);
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
            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-accent);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background-color: var(--bg-highlight);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            color: var(--secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i {
            font-size: 20px;
            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: 15px;
            border: 1px solid var(--border-default);
        }
        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }
        .guide-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .winner-list {
            background-color: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .winner-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-muted);
            font-size: 13px;
            text-align: center;
            align-items: center;
        }
        .winner-row:nth-child(even) { background-color: var(--bg-highlight); }
        .winner-row .username { font-weight: bold; color: var(--text-primary); }
        .winner-row .amount { color: var(--primary); font-weight: bold; }
        .winner-row .time { color: var(--text-muted); }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-block {
            background-color: var(--bg-highlight);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
            border: 1px dashed var(--primary);
            font-family: var(--font-heading);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--secondary);
        }
        .review-header .user-info {
            display: flex;
            flex-direction: column;
        }
        .review-header .username { font-weight: bold; }
        .review-header .stars { color: var(--primary); font-size: 12px; }
        .review-body {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-muted);
            text-align: right;
        }

        .faq-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .faq-item {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }
        .faq-item h3 {
            font-size: 16px;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .faq-item p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .security-section {
            background-color: var(--bg-overlay);
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .security-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-size: 14px;
        }
        .security-badge i { color: var(--success); }
        .security-text {
            color: var(--text-muted);
            font-size: 13px;
            max-width: 700px;
            margin: 0 auto 20px;
        }
        .security-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            font-size: 13px;
        }
        .security-links a {
            color: var(--primary);
            text-decoration: none;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--bg-surface);
            border-top: 2px solid var(--border-strong);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            z-index: 1001;
            padding: 10px 0;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 11px;
            gap: 5px;
            transition: 0.3s;
        }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: var(--bg-overlay);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-muted);
            text-align: center;
        }
        footer .contact-row {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        footer .contact-row a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }
        footer .contact-row a:hover { color: var(--primary); }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .links-grid a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        footer .links-grid a:hover { color: var(--text-primary); }
        footer .copyright {
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-muted);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(4, 1fr); }
            .links-grid { grid-template-columns: repeat(3, 1fr); }
            .winner-row { font-size: 11px; }
        }