/* Pengaturan Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', Gadget, sans-serif; /* Font tegas mirip gaya game */
}

body {
    background: linear-gradient(180deg, #05140b 0%, #010502 100%); /* Hijau gelap ke hitam */
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 480px; /* Lebar standar layar HP agar responsif */
    background-color: #0a1a0f;
    border: 2px solid #143d22;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0px 0px 30px rgba(0, 255, 100, 0.2);
}

/* Pengaturan Tampilan Banner Gambar */
.banner-box {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #ffb700; /* Bingkai emas menyala */
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 183, 0, 0.4);
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Layout Grid untuk Tombol */
.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

/* Pengaturan Tombol Link */
.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 10px;
    text-transform: uppercase;
    transition: transform 0.1s, box-shadow 0.2s;
}

.btn:active {
    transform: scale(0.96);
}

.btn-gold {
    background: linear-gradient(180deg, #ffcc00 0%, #b38f00 100%);
    color: #000000;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
}

.btn-dark {
    background-color: #0b2414;
    color: #ffcc00;
    border: 1px solid #1a4d2b;
}

/* Tabel Data Informasi */
.info-table {
    background-color: #050d08;
    border-radius: 12px;
    padding: 5px 10px;
    margin-bottom: 20px;
    border: 1px solid #142e1b;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 5px;
    border-bottom: 1px solid #142e1b;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

.info-row:last-child {
    border-bottom: none;
}

.label {
    color: #a3c2ae;
}

.value {
    font-weight: bold;
}

.val-gold { color: #ffcc00; }
.val-green { color: #00ff66; }

.badge-status {
    background-color: #330000;
    color: #ff3333;
    padding: 2px 8px;
    border-radius: 5px;
    border: 1px solid #660000;
    font-size: 11px;
}

/* Bagian Text Checklist Keunggulan */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #00ff66;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

/* Kaki Halaman (Footer) */
footer {
    text-align: center;
    font-size: 11px;
    color: #667a6e;
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.footer-highlight {
    color: #ffcc00;
    font-weight: bold;
    font-size: 10px;
}