
#prize-window {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 350px;
    height: 110px;
    background-color: rgba(255, 239, 153, 0.8); 
    border-radius: 50px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: prize-animate 5s ease-in-out infinite;
    padding: 1px; 
    margin: 1px; 
}


#prize-text {
    z-index: 11; 
    font-weight: bold;
    font-size: 18px;
    padding: 0 1px; 
    margin: 0; 
    display: block;
    line-height: 1.2; 
}


#details-link {
    position: absolute;
    bottom: 1px;
    width: 100%;
    text-align: center;
    color: #333;
    font-size: 15px;
    cursor: pointer;
    text-decoration: underline;
    
}


@keyframes prize-animate {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


#prize-details-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 97%;
    height: 97%;
    background-color: rgba(255, 239, 153, 0.9);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 20;
    padding: 2px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    margin: 1px; 
}

#prize-details-window.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#prize-details-window .close-btn {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}


#prize-details-text {
    font-size: 1rem;
    color: #333;
    margin-top: 30px;
    white-space: pre-wrap; 
    line-height: 1.6;
    padding: 10px; 
}


@media (max-width: 768px) {
    #prize-window {
        top: 25%;
        right: 10%;
        width: 200px;
        height: 95px;
        font-size: 14px; 
        padding: 10px; 
        margin: 5px; 
    }

    #prize-text {
        font-weight: bold;
        font-size: 14px; 
        padding: 5px; 
        margin: 2px; 
    }
}


@media (max-width: 480px) {
    #prize-window {
        top: 25%;
        right: 10%;
        width: 200px;
        height: 95px;
        font-size: 14px; 
        padding: 1px; 
        margin: 1px; 
    }

    #prize-text {
        font-weight: bold;
        font-size: 14px; 
        padding: 1px; 
        margin: 1px; 
    }
}
