/* src/styles/main.css */
.invisible {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
:root {
    --color-primario: #00BFFF;
}
* {
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #333;
    margin: 0;
    overflow-x: hidden;
}
#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #e5e7eb;
    text-align: center;
}
#app h1 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.introduccion {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #ccc;
    font-size: 16px;
}
.introduccion p {
    margin: 10px 0;
}
h3, h4 {
    text-align: center;
}
.titulo-container {
    padding: 20px;
}
.ruleta-container {
    flex-grow: 1; /* Ocupa el espacio central */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.canvas-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}
footer {
    width: 100%;
    padding: 20px;
    font-size: 12px;
    color: #666;
}
.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--color-primario);
}