:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #F9E076;
            --accent-gold-dark: #996515;
            --brand-black: #000000;
            --brand-deep-blue: #0A192F;
            --main-bg: #0D0D0D;
            --surface-bg: #1A1A1A;
            --card-bg: #242424;
            --overlay-bg: rgba(0, 0, 0, 0.9);
            --primary-text: #FFFFFF;
            --secondary-text: #E0E0E0;
            --muted-text: #A0A0A0;
            --brand-text: #D4AF37;
            --inverse-text: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --win-highlight: #FFD700;
            --default-border: #333333;
            --active-border: #D4AF37;
            --subtle-divider: #262626;
        }

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

        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-gold);
        }

        header {
            background-color: var(--brand-deep-blue);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-gold);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
        }

        .logo-section img {
            width: 25px;
            height: 25px;
        }

        .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--primary-gold);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            text-decoration: none;
            font-size: 14px;
        }

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

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

        .btn-register {
            background-color: var(--primary-gold);
            color: var(--brand-black);
        }

        .btn-register:hover {
            background-color: var(--secondary-gold);
        }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid var(--primary-gold);
            margin-bottom: 20px;
        }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--brand-deep-blue), var(--brand-black));
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--primary-gold);
            margin-bottom: 30px;
        }

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

        .jackpot-amount {
            font-size: 48px;
            font-weight: 900;
            color: var(--win-highlight);
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .intro-section h1 {
            font-size: 48px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

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

        .section-title {
            font-size: 32px;
            text-align: center;
            margin: 40px 0 20px;
            position: relative;
            padding-bottom: 10px;
        }

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

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

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

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
        }

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

        .game-card h3 {
            padding: 15px;
            font-size: 18px;
            text-align: center;
            color: var(--primary-text);
        }

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

        .article-card {
            background-color: var(--surface-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--subtle-divider);
            display: flex;
            flex-direction: column;
            text-decoration: none;
            transition: 0.3s;
        }

        .article-card:hover {
            border-color: var(--primary-gold);
        }

        .article-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .article-content {
            padding: 20px;
        }

        .article-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-gold);
        }

        .article-content p {
            font-size: 14px;
            color: var(--muted-text);
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }

        .payment-item {
            background-color: var(--card-bg);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--subtle-divider);
            color: var(--secondary-text);
            font-weight: 500;
        }

        .payment-item i {
            display: block;
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--primary-gold);
        }

        .winner-list {
            background-color: var(--surface-bg);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid var(--subtle-divider);
        }

        .winner-item {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr 1fr;
            padding: 12px;
            border-bottom: 1px solid var(--subtle-divider);
            font-size: 14px;
            align-items: center;
        }

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

        .winner-item .amount {
            color: var(--win-highlight);
            font-weight: bold;
        }

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

        .provider-box {
            background: linear-gradient(135deg, var(--card-bg), var(--brand-deep-blue));
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            font-weight: bold;
            font-size: 18px;
            border-left: 4px solid var(--primary-gold);
        }

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

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

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

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

        .review-user {
            font-weight: bold;
            color: var(--primary-text);
        }

        .review-stars {
            color: var(--win-highlight);
            font-size: 14px;
            margin-bottom: 10px;
        }

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

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

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

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

        .faq-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--secondary-gold);
        }

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

        .security-section {
            background-color: var(--brand-deep-blue);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-gold);
            margin-bottom: 40px;
        }

        .security-icon {
            font-size: 40px;
            color: var(--primary-gold);
            margin-bottom: 15px;
        }

        .security-text {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .security-link {
            color: var(--secondary-gold);
            text-decoration: underline;
            font-size: 14px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--brand-deep-blue);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary-gold);
            z-index: 2000;
        }

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

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

        footer {
            background-color: var(--brand-black);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--subtle-divider);
            text-align: center;
        }

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

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

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

        .copyright {
            color: var(--muted-text);
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .intro-section h1 { font-size: 32px; }
            .jackpot-amount { font-size: 32px; }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .winner-item { grid-template-columns: 1fr 1fr; gap: 10px; }
            .winner-item div:nth-child(3), .winner-item div:nth-child(4) { margin-top: 5px; }
        }