:root {
            --bg-pangunahin: #0a0b0d;
            --bg-sekundarya: #161a1e;
            --bg-tertiary: #21262c;
            --bg-surface: #2b3139;
            --primary-gold: #fcd535;
            --secondary-gold: #eab308;
            --accent-gold: #d97706;
            --hover-state: #ffea00;
            --success: #22c55e;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;
            --text-high: #ffffff;
            --text-medium: #94a3b8;
            --text-muted: #64748b;
            --brand-contrast: #000000;
            --border-default: #334155;
            --border-subtle: #1e293b;
            --border-active: #fcd535;
            --border-divider: #2d3748;
            --font-pangunahin: 'Montserrat', sans-serif;
            --font-sekundarya: 'Inter', sans-serif;
            --font-display: 'Poppins', sans-serif;
        }

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

        body {
            background-color: var(--bg-pangunahin);
            color: var(--text-high);
            font-family: var(--font-pangunahin);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            background-color: var(--bg-sekundarya);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-divider);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-right {
            display: flex;
            gap: 8px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }

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

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

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }

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

        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-sekundarya) 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .jackpot-label {
            color: var(--text-medium);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .jackpot-amount {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-gold);
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.4);
        }

        .intro-section {
            padding: 24px 16px;
            text-align: center;
        }

        .intro-section h1 {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 12px;
            line-height: 1.2;
        }

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

        .section-title {
            padding: 0 16px;
            margin: 24px 0 16px;
            font-size: 20px;
            font-weight: 700;
            border-left: 4px solid var(--primary-gold);
            margin-left: 16px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }

        .game-card {
            background-color: var(--bg-sekundarya);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }

        .game-card:hover {
            transform: scale(1.02);
            border-color: var(--border-active);
        }

        .game-image-wrapper {
            aspect-ratio: 1 / 1;
            width: 100%;
            background-color: var(--bg-tertiary);
        }

        .game-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

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

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

        .article-section {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .article-card {
            display: flex;
            background-color: var(--bg-sekundarya);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .article-thumb {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
        }

        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-content {
            padding: 12px;
        }

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

        .article-content p {
            font-size: 12px;
            color: var(--text-medium);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payment-section {
            padding: 24px 16px;
            background-color: var(--bg-sekundarya);
            margin: 20px 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

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

        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-muted);
        }

        .winning-records {
            padding: 16px;
            background-color: var(--bg-tertiary);
            margin: 16px;
            border-radius: 12px;
        }

        .record-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-divider);
            font-size: 13px;
        }

        .record-user {
            color: var(--primary-gold);
            font-weight: 600;
        }

        .record-amount {
            color: var(--success);
            font-weight: 700;
        }

        .providers-section {
            padding: 16px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .provider-block {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            color: var(--text-medium);
            border: 1px solid var(--border-subtle);
        }

        .reviews-section {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .review-card {
            background-color: var(--bg-sekundarya);
            padding: 16px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

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

        .review-avatar {
            font-size: 24px;
            color: var(--primary-gold);
        }

        .review-user-info h4 {
            font-size: 14px;
        }

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

        .review-text {
            font-size: 13px;
            color: var(--text-medium);
            font-style: italic;
        }

        .review-date {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 8px;
            text-align: right;
        }

        .faq-section {
            padding: 24px 16px;
        }

        .faq-item {
            margin-bottom: 20px;
            background-color: var(--bg-sekundarya);
            padding: 16px;
            border-radius: 8px;
        }

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

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

        .security-section {
            padding: 30px 16px;
            text-align: center;
            background-color: var(--bg-sekundarya);
            border-top: 2px solid var(--primary-gold);
        }

        .security-icons {
            font-size: 30px;
            color: var(--primary-gold);
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .responsible-text {
            font-size: 13px;
            color: var(--text-medium);
            margin-bottom: 10px;
        }

        .age-badge {
            display: inline-block;
            border: 2px solid var(--error);
            color: var(--error);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            line-height: 26px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background-color: var(--bg-tertiary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-divider);
            z-index: 1001;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-medium);
            font-size: 10px;
        }

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

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

        footer {
            padding: 30px 16px;
            background-color: var(--bg-pangunahin);
            border-top: 1px solid var(--border-divider);
            text-align: center;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

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

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-section { display: grid; grid-template-columns: 1fr 1fr; }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
        }