.disc-wrapper {
    position: fixed;
    bottom: 2px;
    right: 5px; 
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 999;
}

.disc {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transform: translate(0,0);
    z-index: 10;
}

.disc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: auto;
    cursor: pointer;
    animation: spin 3s linear infinite;
    z-index: 10;
}

.hidden {
    visibility: hidden;
}

.capsule {
    color: #f7f0f5ff;
    background-color: #5c5552ff;
    border-radius: 30px;
    width: 150px;
    height: 25px;
    margin-left: auto;
    margin-right: auto;
}

.curve-out {
    animation: curveOut 0.7s forwards ease-in;
}

.curve-in {
    animation: curveIn 0.7s forwards ease-out;
}

@keyframes curveOut {
    0% { transform: translate(0,0); opacity: 1; }
    50% { transform: translate(50px, 40px); opacity: 0.6; }
    100% { transform: translate(80px,120px); opacity: 0; }
}

@keyframes curveIn {
    0% { transform: translate(80px, -120px); opacity: 0; }
    50% { transform: translate(-40px, -40px); opacity: 0.7; }
    100% { transform: translate(0,0); opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}