
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    position: relative;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8%;
    margin-bottom: 1px;
}
.logo-container img {
    width: 60%;
    height: auto;
}

.wheel-container {
    position: relative;
    width: 80vw;
    max-width: 560px;
    height: 80vw;
    max-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ruleta-opciones { 
    position: absolute;
     width:100%; 
     height:100%; 
     z-index:1; 
     pointer-events:none; 
}
.ruleta-opciones img { 
    width:100%; 
    height:100%; 
    object-fit:contain; 
    display:block; 
    transform-origin:50% 50%; 
}
.ruleta-base { 
    position:absolute; 
    width:100%; 
    height:100%; 
    z-index:2; 
    pointer-events:none; 
}

.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.input-container input {
    width: 80%;
    max-width: 360px;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
}
.input-container button {
    padding: 12px 18px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    background: #0077cc;
    color: white;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 18px;
    border-radius: 8px;
    width: 90%;
    max-width: 480px;
    text-align: center;
}

.ruleta-overlay { 
    position:absolute; 
    left:0; 
    top:0; 
    width:100%; 
    height:100%; 
    pointer-events:none; 
    z-index: 1.5;  
}
.ruleta-overlay img { 
    width:100%; 
    height:100%; 
    object-fit:contain; 
    display:block; 
    transform-origin:50% 50%; 
}
/* Responsive */
@media only screen and (max-width: 600px) {
  .logo-container img { width: 70%; }
  .input-container input { width: 90%; }
  .modal-content { max-width: 90%; }
}
