.section-banner {
    background: linear-gradient(90deg, #007bff, #009cfd);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.section-banner .banner-title {
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.section-banner .banner-title i {
    font-size: 1.2rem;
}

.section-banner .see-all {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.raffle-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    align-items: center;
}

.streamer-img {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #009cfd;
    box-shadow: 0 0 10px #009cfd;
}

.raffle-details {
    flex: 1 1 auto;
    min-width: 250px;
}

.raffle-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.streamer-name {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.raffle-dates {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
}

.status-badge {
    font-weight: 600;
    padding: 0.3em 0.75em;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-active {
    background-color: #28a745;
    color: white;
}

.status-inactive {
    background-color: #dc3545;
    color: white;
}

.status-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    padding: 0.4em 0.9em;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.products-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-item {
    width: 80px;
    text-align: center;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #ddd;
    box-shadow: 0 1px 5px rgb(0 0 0 / 0.1);
    margin-bottom: 5px;
}

.product-image:hover {
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}

.product-name {
    font-size: 0.8rem;
    color: #444;
}

.join-btn {
    flex: 0 0 120px;
    text-align: center;
}

.btn-join {
    background: linear-gradient(90deg, #FC2203, #ff9900);
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgb(252 34 3 / 0.6);
    transition: background 0.3s ease;
    width: 100%;
}

.btn-join:hover {
    background: linear-gradient(90deg, #e31e00, #e67300);
    box-shadow: 0 6px 14px rgb(227 30 0 / 0.8);
}

.countdown-timer {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    font-size: 0.85rem;
}

.time-box {
    background-color: #f9f9f9;
    border: 1px solid #333; 
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.time-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000; 
}

.time-label {
    font-size: 0.75rem;
    color: #555; 
}

.raffle-participants {
    background: #fff4e0;
    border: 1px solid #ff9900;
    border-radius: 12px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px #ff990055;
}
