/* giveaway.css - Shining Royal Gold Giveaway Popup */

.giveaway-popup {
    position: fixed;
    top: 80px;
    right: 30px;
    z-index: 99999;
    display: none;
    animation: gw-pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes gw-pop-in {
    from { transform: scale(0) translateY(50px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.gw-card {
    background: linear-gradient(135deg, #D4AF37 0%, #9A7B4F 50%, #D4AF37 100%);
    background-size: 200% 200%;
    animation: gw-shine 3s linear infinite;
    border: 3px solid #F9E79F;
    border-radius: 20px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.45), 0 0 20px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #040811;
    text-align: center;
    transition: transform 0.3s;
}

.gw-card:hover {
    transform: scale(1.05) rotate(1deg);
}

@keyframes gw-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gw-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    animation: gw-bounce 2s infinite ease-in-out;
}

@keyframes gw-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gw-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #040811 !important;
}

.gw-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.9;
    color: #040811 !important;
}

.gw-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #040811;
    transition: 0.2s;
}

.gw-close:hover {
    background: rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .giveaway-popup { top: 70px; right: 14px; }
    .gw-card { width: 220px; padding: 18px; }
    .gw-icon { font-size: 36px; }
    .gw-title { font-size: 16px; }
    .gw-desc { font-size: 11px; }
}
