body {
    background: radial-gradient(circle at center, #220000 0%, #000000 80%);
    color: #fff;
    font-family: 'Orbitron', Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

#wheel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: auto;
    box-shadow: 0 0 30px 5px #bfa43f;
    border-radius: 50%;
    background: radial-gradient(circle at center, #3a2200 0%, #1a0f00 80%);
    border: 8px solid #bfa43f;
}

canvas {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 20px #bfa43f;
    background: #111;
}

#pointer {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: clamp(12px, 5vw, 30px) solid transparent;
    border-right: clamp(12px, 5vw, 30px) solid transparent;
    border-bottom: clamp(20px, 8vw, 40px) solid #bfa43f;
    filter: drop-shadow(0 0 6px #bfa43f);
    z-index: 10;
}

#spin-button {
    margin-top: 5vh !important;
    width: 180px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 0 5px #bfa43f;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: black;
    padding: 2rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1050;
    max-width: 90vw;
    text-align: center;
    font-family: 'Orbitron', Arial, sans-serif;
}

#popup button {
    margin-top: 1rem;
    min-width: 120px;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: red;
    animation: fall linear forwards;
    z-index: 1040;
    top: 0;
    border-radius: 2px;
    filter: drop-shadow(0 0 2px #bfa43f);
}

.banner-link {
      text-decoration: none;
}

@keyframes fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg);
    }
}