#spotify-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

#spotify-wheel-container canvas {
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.2) inset;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffeaa7, #fab1a0);
    transition: transform 0.2s ease;
}

#spotify-wheel-container button {
    background: linear-gradient(45deg, #fd79a8, #e84393, #f368e0);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 10px rgba(255,255,255,0.3) inset;
    transition: all 0.3s ease, box-shadow 0.4s ease;
}

#spotify-wheel-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.4) inset;
}

#spotify-wheel-container input[type="text"] {
    width: 80%;
    padding: 12px;
    margin-top: 15px;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid #f368e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    outline: none;
    transition: all 0.3s ease;
}

#spotify-wheel-container input[type="text"]:focus {
    border-color: #fd79a8;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 15px rgba(253,121,152,0.6);
}

#spinMessage {
    font-weight: bold;
    font-size: 18px;
    color: #222;
    margin-top: 15px;
    text-align: center;
    text-shadow: 1px 1px 3px #fff, 2px 2px 5px rgba(0,0,0,0.3);
}

#spotifyWheel {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 15px 40px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 20px 50px rgba(255,255,255,0.4); }
    100% { box-shadow: 0 15px 40px rgba(255,255,255,0.2); }
}
