.peg,
.wheelSVG {
    visibility: visible;
}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #0b0b0b; /* Fondo oscuro */
    overflow-x: hidden;
    overflow-y: visible;
}

.centerCircle,
.valueContainer,
.wheelOutline,
.wheelText {
    pointer-events: none;
}

/* Contenedor principal */
#container {
    width: 100vw;
    margin-top: 2rem;
}

/* Contenedor de la rueda */
.wheelContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    width: 100vw;
    height: 100vh;
}

/* Estilo de la rueda */
.wheelSVG {
    position: relative;
    overflow: visible;
    height: 75vh;
}

/* Texto de la rueda */
.wheelText {
    text-anchor: start;
    font-family: Montserrat, sans-serif;
    -webkit-user-select: none;
    user-select: none;
}

.wheelText tspan {
    text-anchor: middle;
    letter-spacing: 2px;
}

/* ✅ Color morado para el cuadro de mensaje */
.toast {
    border-radius: 12px;
    opacity: 0;
    background-color: #6A0DAD; /* Morado */
    position: absolute;
    overflow: hidden;
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    width: 50vw;
    padding: 20px 40px;
    max-width: 1000px;
}

/* Texto dentro del cuadro de mensaje */
.toast p {
    clear: both;
    font-family: Montserrat, Arial, sans-serif;
    margin: 23px;
    font-size: 30px;
    color: #ededed;
    letter-spacing: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 32px;
    -webkit-transition: line-height .2s ease;
    transition: line-height .2s ease;
}

/* ✅ Botón de giro en morado */
button {
    position: relative;
    width: 60vw;
    max-width: 400px;
    padding: 20px;
    font-weight: 700;
    font-size: 2rem;
    color: #ededed;
    background-color: #6A0DAD; /* Morado */
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 0 #4B0082; /* Morado oscuro */
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    transition: 0.3s ease;
}

/* Efecto hover en el botón */
button:hover {
    background-color: #5A0099; /* Un poco más oscuro al pasar el mouse */
}

/* Media Queries para dispositivos móviles */
@media only screen and (max-width: 480px) {
    button {
        font-size: 1rem;
        padding: 10px;
        width: 60vw;
    }
    .toast {
        padding: 0;
    }
    .toast p,
    .toast span {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
    .toast {
        padding: 0;
    }
    .toast p,
    .toast span {
        font-size: 1.8rem;
        line-height: 2rem;
    }
}

@media only screen and (min-width: 801px) {
    .toast p,
    .toast span {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

@media only screen and (max-height: 480px) {
    .toast p,
    .toast span {
        font-size: 33px;
        line-height: 35px;
    }
    button {
        font-size: 22px;
        padding: 10px;
        width: 90%;
    }
}

/* Quitar borde al enfocar el botón */
button:focus {
    outline: 0;
}

/* Enlaces en amarillo */
a:link { color: #F1DC16; }
a:visited { color: #F1DC16; }
a:hover { color: #F1DC16; }
a:active { color: #F1DC16; }
