/* === TAMBAHAN KHUSUS LANDING PAGE === */

/* Layar Penuh Intro */
#landing-page {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    z-index: 9999; /* Paling atas */
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    transition: transform 0.5s ease-in-out; /* Efek geser saat masuk */
}

.landing-content { position: relative; z-index: 2; padding: 20px; }

/* Efek Cahaya Belakang */
.bg-glow {
    position: absolute; width: 300px; height: 300px;
    background: var(--gold); opacity: 0.15; filter: blur(80px);
    border-radius: 50%; z-index: 1; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.2); }
    100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
}

.badge-new {
    display: inline-block; padding: 5px 12px; border: 1px solid var(--gold);
    color: var(--gold); border-radius: 20px; font-size: 10px; margin-bottom: 15px;
    letter-spacing: 1px;
}

.landing-title {
    font-size: 42px; line-height: 1.1; margin-bottom: 15px;
    font-weight: 800; color: #fff; text-transform: uppercase;
}

.landing-desc { color: #888; font-size: 14px; margin-bottom: 30px; line-height: 1.6; }

/* Tombol Masuk yang Besar */
.btn-enter {
    background: var(--gold); color: #000;
    padding: 15px 40px; font-size: 16px; font-weight: bold;
    border: none; border-radius: 50px; cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform 0.2s;
}
.btn-enter:active { transform: scale(0.95); }

/* Statistik di Landing */
.stats-row {
    display: flex; justify-content: center; gap: 20px;
    margin-bottom: 40px; align-items: center;
}
.stat-item b { display: block; font-size: 18px; color: #fff; }
.stat-item span { font-size: 12px; color: #666; }
.stat-divider { width: 1px; height: 30px; background: #333; }


/* === CSS YANG LAMA (JANGAN DIHAPUS, LANJUT DI BAWAHNYA) === */
/* ... Paste CSS kamu yang lama di bawah ini atau ganti file ini ... */
/* Agar tidak bingung, saya tulis ulang CSS Dasarnya di sini juga */

:root {
    --gold: #ffc107;
    --dark: #121212;
    --border: #333;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
body { background-color: #000; color: #fff; padding-bottom: 80px; }

/* ANIMASI MASUK HALAMAN */
.fade-in { animation: fadeIn 0.5s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* NAVBAR & APP STYLES */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; background: rgba(0,0,0,0.9); position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.logo { font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.text-gold { color: var(--gold); }

.container { padding: 20px; max-width: 600px; margin: 0 auto; }

.hero-banner {
    background: linear-gradient(135deg, #222 0%, #000 100%);
    padding: 20px; border-radius: 15px; border: 1px solid #333;
    margin-bottom: 25px; display: flex; justify-content: space-between; align-items: center;
}
.hero-banner h2 { color: var(--gold); font-size: 20px; margin-bottom: 5px; }
.hero-banner p { font-size: 12px; color: #aaa; }

.section-title { font-size: 16px; margin-bottom: 15px; color: #ddd; display: flex; gap: 10px; align-items: center; }

/* GRID GAME */
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.card-game {
    background: #1a1a1a; border: 1px solid var(--border);
    border-radius: 12px; padding: 15px 5px; text-align: center; cursor: pointer;
}
.game-icon { font-size: 28px; color: var(--gold); display: block; margin-bottom: 8px; }
.game-name { font-size: 11px; font-weight: 600; }

/* MODAL & INPUT */
.modal { display: none; position: fixed; z-index: 999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); }
.modal-content { background: #121212; margin: 5% auto; width: 95%; max-width: 500px; height: 90vh; border-radius: 15px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.modal-header { padding: 15px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; }
.close-btn { font-size: 24px; color: #fff; cursor: pointer; }

.produk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.item-produk { background: #1a1a1a; padding: 15px; border-radius: 10px; border: 1px solid var(--border); cursor: pointer; }
.item-produk.selected { border-color: var(--gold); background: #222; }
.item-price { color: var(--gold); font-weight: bold; display: block; margin-top: 5px; }

.input-modern { width: 100%; padding: 12px; background: #000; border: 1px solid var(--border); color: #fff; margin-bottom: 10px; border-radius: 8px; }
.btn-checkout { width: 100%; padding: 15px; background: var(--gold); border: none; border-radius: 50px; font-weight: bold; font-size: 16px; margin-top: 10px; cursor: pointer; }

/* HISTORY & BOTTOM NAV */
.history-card { background: #1a1a1a; padding: 15px; margin-bottom: 10px; border-radius: 8px; border-left: 3px solid #555; }
.status-success { border-left-color: #00ff00; }
.status-pending { border-left-color: var(--gold); }

.bottom-nav { position: fixed; bottom: 0; width: 100%; background: #000; display: flex; justify-content: space-around; padding: 12px 0; border-top: 1px solid #222; z-index: 90; }
.nav-item { text-align: center; color: #555; font-size: 10px; cursor: pointer; }
.nav-item.active { color: var(--gold); }
.nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
