@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.container {
    max-width: 700px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Wheel Container */
.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px auto;
}

/* Wheel */
#wheel {
    width: 100%;
    height: auto;
    transition: transform 4s ease-out;
}

/* Pointer */
.pointer {
    width: 20px;
    height: 40px;
    background-color: yellow;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

/* Button */
button {
    background-color: #ff4d4d;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 25px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

button:hover {
    background-color: #ff1a1a;
}

button:active {
    transform: scale(1.1);
}

/* Result */
#result {
    font-size: 1.8rem;
    margin-top: 20px;
}