/* BACKGROUND GELAP (GTID STYLE) */
body.bg-dark-theme {
    background-color: #121212; /* Hitam Pekat */
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    padding-bottom: 70px; /* Supaya konten paling bawah tidak ketutup menu HP */
}

/* NAVBAR STYLE */
.navbar {
    background-color: #1a1a1a !important; /* Abu Gelap */
}

/* BANNER UTAMA */
.hero-banner {
    background: url('banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 200px; /* Ukuran Mobile */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1); /* Glow Kuning Tipis */
    border: 1px solid #333;
}

/* Responsif Banner: Di Laptop lebih tinggi */
@media (min-width: 768px) {
    .hero-banner {
        min-height: 380px;
    }
}

/* KARTU GAME (GRID) */
.game-card {
    transition: transform 0.2s, border-color 0.2s;
    overflow: hidden;
    border-radius: 12px;
    background-color: #1e1e1e !important;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107 !important; /* Warna Kuning GTID saat disentuh */
}

.game-card img {
    height: 100px; /* Mobile size */
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #333;
}

@media (min-width: 768px) {
    .game-card img {
        height: 140px; /* Desktop size */
    }
}

/* MENU BAWAH (MOBILE NAV) */
.fixed-bottom {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    z-index: 1050;
}

.nav-link {
    transition: color 0.3s;
}

.nav-link.active {
    color: #ffc107 !important; /* Kuning Emas */
    font-weight: 600;
}

/* MODAL POPUP */
.modal-content {
    border-radius: 15px;
    border: 1px solid #ffc107;
}

/* TAMBAHAN DI PALING BAWAH style.css */
.form-control::placeholder {
    color: #cccccc !important; /* Abu terang */
    opacity: 1;
}

.form-control {
    color: white !important; /* Warna teks saat diketik */
}