:root {
    --gold: #D4AF37;          /* Warna Emas Mewah */
    --gold-bright: #FFD700;   /* Emas Terang untuk Highlight */
    --bg-dark: #0f0f0f;       /* Hitam Pekat */
    --bg-card: #1e1e1e;       /* Abu-abu Gelap untuk Kartu */
    --text-main: #ffffff;     /* Teks Putih */
    --text-muted: #aaaaaa;    /* Teks Abu-abu */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding-bottom: 80px; /* Ruang untuk navigasi bawah */
}

/* --- HEADER --- */
.header {
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--gold);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.menu-btn {
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
}

.app-title {
    font-weight: bold;
    font-size: 18px;
    color: var(--gold-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- SIDE DRAWER --- */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 998;
    display: none;
    backdrop-filter: blur(3px);
}

.drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--bg-card);
    z-index: 999;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--gold);
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}

.drawer.open { left: 0; }

.drawer-header {
    padding: 30px 20px;
    background: linear-gradient(45deg, var(--gold), #8a6e1e);
    color: #000;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.drawer-item {
    padding: 15px 25px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    transition: 0.2s;
}

.drawer-item:active {
    background-color: #333;
    color: var(--gold);
}

/* --- CONTENT --- */
.container { padding: 20px; }

.card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
    font-size: 16px;
}

.card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.event-banner {
    width: 100%;
    height: 160px;
    background: radial-gradient(circle, #444 0%, #222 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-weight: bold;
}

/* Menu Cepat Buttons */
.quick-menu {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.quick-btn {
    background: linear-gradient(180deg, #222 0%, #111 100%);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px;
    border-radius: 8px;
    width: 30%;
    font-size: 12px;
    cursor: pointer;
}

.disclaimer-box {
    background: rgba(212, 175, 55, 0.1); /* Gold transparan */
    color: var(--gold);
    padding: 15px;
    font-size: 11px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    margin-top: 30px;
    text-align: justify;
}

/* --- BOTTOM NAV --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 2px solid var(--gold);
    z-index: 900;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-size: 11px;
    flex: 1;
    transition: 0.3s;
}

.nav-item.active {
    color: var(--gold-bright);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.nav-icon {
    font-size: 22px;
    margin-bottom: 4px;
}