﻿/* Modal trong suốt hoàn toàn */
.modal-transparent .modal-content {
    background: transparent !important;
    border: none !important;
}

/* Hiệu ứng cho ảnh GIF */
.img-gif {
    max-width: 280px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    transition: transform 0.3s;
    cursor: pointer;
}

    .img-gif:hover {
        transform: scale(1.05);
    }
/* Hiệu ứng số tiền */
#money-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 2px 2px 5px black;
}
/* Tiêu đề đổ bóng để dễ đọc trên mọi nền */
.modal-caption {
    color: #ffcc00; /* Màu vàng Tết */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}

.modal-backdrop.show {
    opacity: 0.85;
}
