:root {
            --brand-primary: #FFD700;
            --brand-primary-hover: #FFC107;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-grad-start: #1a1a1a;
            --bg-grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --sem-success: #00C853;
            --sem-warning: #FF9100;
            --sem-error: #FF1744;
            --sem-info: #2979FF;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-display: 'Oswald', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--bg-grad-start), var(--bg-grad-end));
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        header .brand-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }

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

        header .brand-area strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--brand-primary);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-family: var(--font-primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 14px;
            text-decoration: none;
            text-align: center;
        }

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

        .btn-login:hover {
            background: var(--brand-primary);
            color: var(--text-inverse);
        }

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

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

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
            margin-bottom: 20px;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .jackpot-container {
            background: linear-gradient(45deg, #b8860b, #FFD700);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            color: var(--text-inverse);
            box-shadow: 0 0 15px var(--brand-primary);
        }

        .jackpot-label {
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .jackpot-amount {
            font-family: var(--font-display);
            font-size: 40px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .intro-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            border-left: 5px solid var(--brand-primary);
        }

        .intro-card h1 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--brand-primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .intro-card p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--brand-primary);
            margin: 40px 0 20px;
            text-transform: uppercase;
            border-bottom: 2px solid var(--brand-primary);
            display: inline-block;
            padding-bottom: 5px;
        }

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

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

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

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

        .game-info {
            padding: 12px;
            text-align: center;
        }

        .game-info h3 {
            font-size: 16px;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .payment-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            background: var(--border-subtle);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
        }

        .payment-item i {
            color: var(--brand-primary);
        }

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

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

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

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

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

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

        .lottery-table th {
            background: var(--border-subtle);
            color: var(--brand-primary);
            font-weight: 600;
        }

        .win-amount {
            color: var(--sem-success);
            font-weight: bold;
        }

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

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

        .provider-block:nth-child(odd) { background: linear-gradient(90deg, #333, #111); color: var(--brand-primary); }
        .provider-block:nth-child(even) { background: linear-gradient(90deg, #111, #333); color: var(--brand-secondary); }

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

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

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

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

        .comment-user {
            font-weight: bold;
            font-size: 16px;
        }

        .comment-stars {
            color: #FFC107;
            font-size: 12px;
            margin-bottom: 10px;
        }

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

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

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

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            padding: 15px;
        }

        .faq-item h3 {
            color: var(--brand-primary);
            font-size: 16px;
            margin-bottom: 10px;
        }

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

        .security-banner {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 40px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .security-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .security-icon i {
            font-size: 30px;
            color: var(--sem-success);
        }

        .security-text {
            font-size: 14px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .security-link {
            color: var(--brand-primary);
            text-decoration: none;
            font-weight: bold;
        }

        .navigator {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-surface);
            border: 1px solid var(--border-highlight);
            border-radius: 50px;
            display: flex;
            padding: 5px 15px;
            gap: 10px;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            width: 95%;
            max-width: 500px;
        }

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

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

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

        footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
            margin-bottom: 100px;
        }

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

        footer .contact-area a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        footer .contact-area a:hover {
            color: var(--brand-primary);
        }

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

        footer .links-grid a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        footer .links-grid a:hover {
            color: var(--brand-primary);
        }

        footer .copyright {
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .links-grid { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 24px; }
            .jackpot-amount { font-size: 30px; }
        }