:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60000;
            --accent: #00FF41;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --gradient-start: #1a1a1a;
            --gradient-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-highlight: #FFD700;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3B82F6;
            --border-default: #2B3139;
            --border-active: #FFD700;
            --border-subtle: #181A20;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
        }

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

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

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-active);
            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;
        }

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

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

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

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

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

        .btn-login:hover {
            border-color: var(--primary);
        }

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

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

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

        .banner-container {
            width: 100%;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .banner-container img {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 15px;
            object-fit: cover;
            display: block;
        }

        .reward-section {
            background: linear-gradient(135deg, var(--secondary), #8B0000);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
        }

        .reward-section h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #fff;
        }

        .reward-section p {
            font-size: 18px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-huge {
            background-color: var(--primary);
            color: #000;
            font-size: 22px;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.2s;
        }

        .btn-huge:hover {
            transform: scale(1.05);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid var(--border-default);
            text-align: center;
            margin-bottom: 40px;
        }

        .intro-card h1 {
            color: var(--primary);
            font-size: 32px;
            margin-bottom: 15px;
        }

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

        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            border-left: 4px solid var(--primary);
            padding-left: 15px;
        }

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

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

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

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

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

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

        .payment-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            font-size: 14px;
            border: 1px solid var(--border-default);
            color: var(--text-secondary);
        }

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

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

        .guide-item {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border-bottom: 3px solid var(--primary);
        }

        .guide-item h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }

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

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

        .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: 10px;
            margin-bottom: 10px;
        }

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

        .review-header .user-info {
            display: flex;
            flex-direction: column;
        }

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

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

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

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

        .lottery-list {
            background-color: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .lottery-row {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr 1fr;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-default);
            font-size: 14px;
            align-items: center;
        }

        .lottery-row:nth-child(even) {
            background-color: rgba(255,255,255,0.02);
        }

        .lottery-row .win-amount {
            color: var(--accent);
            font-weight: bold;
        }

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

        .provider-item {
            background: linear-gradient(45deg, var(--bg-surface), #2a3139);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-default);
        }

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

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

        .faq-question {
            padding: 15px 20px;
            background-color: rgba(255,255,255,0.05);
            cursor: pointer;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            justify-content: space-between;
        }

        .faq-answer {
            padding: 15px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            border-top: 1px solid var(--border-default);
        }

        .security-section {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 40px;
        }

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

        .badge {
            color: var(--text-secondary);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .badge i {
            color: var(--accent);
        }

        .age-notice {
            color: var(--error);
            font-weight: bold;
            margin-bottom: 15px;
            display: block;
        }

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

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

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

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

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

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

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

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

        footer .copy-text {
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (max-width: 600px) {
            .payment-methods {
                grid-template-columns: repeat(2, 1fr);
            }
            .lottery-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                text-align: center;
            }
            .lottery-row :nth-child(3), .lottery-row :nth-child(4) {
                grid-column: span 2;
            }
        }