/* Custom Hero untuk Reward dengan Overlay 50% */
.reward-hero {
    background: linear-gradient(rgba(10, 35, 66, 0.5), rgba(10, 35, 66, 0.5)), 
                url('../img/IMG20211116081012_2-scaled.jpg') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Icon Bulat untuk Reward/Punishment Section */
.reward-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Tabel Custom Styling */
.bg-deep-blue {
    background-color: var(--navbar-top) !important;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.05); /* Sedikit sentuhan emas saat hover */
}

/* Active link di navbar */
.nav-link.active {
    color: var(--accent-gold) !important;
    border-bottom: 2px solid var(--accent-gold);
}

/* Styling Carousel di Halaman Reward */
.carousel-img {
    height: 350px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: filter 0.5s ease;
}

.carousel-item:hover .carousel-img {
    filter: brightness(1);
}

/* Custom Text Deep Blue (jika belum ada di main css) */
.text-deep-blue {
    color: #0a2342;
}

.lead {
    font-weight: 600;
    color: #444;
}

/* Mempercantik list di penjelasan */
ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

