/* DVD Logo Styling */
.dvd-logo {
    position: absolute;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: transform 0.2s ease-in-out;
    opacity: 0;
    transform: scale(0);
}

/* Spawn Animation for DVD GIFs */
@keyframes spawn {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.dvd-logo.spawn {
    animation: spawn 0.5s ease-in-out forwards;
}

/* Rain Animation */
@keyframes rain {
    from { top: -100px; right: 0; }
    to { top: 100vh; right: 100vw; }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

/* Rain Drop Styling */
.rain-drop {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    animation: rain 5s linear infinite, shake 0.5s linear infinite;
}

/* Thumbnail Container Styling */
#thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/* Thumbnail Image Styling */
.thumbnail {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.5s;
}

.thumbnail:hover {
    opacity: 0.7;
}
