@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

body {
    background-color: #000;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.wii-container {
    width: 900px;
    height: 500px;
    /* Usamos bg.png como fondo principal */
    background: url('img/bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: scale(1.75);
    /* Simula el zoom manteniendo el centrado */
}







.header {
    text-align: right;
    padding: 25px 50px;
    font-size: 28px;
    color: #ccc;
    font-style: italic;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 5;
    letter-spacing: 1px;
}

.main-stage {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 800px;
    /* Perspectiva para efecto 3D si lo mejoramos */
    z-index: 5;
    margin-top: -20px;
}

.arrow {
    width: 40px;
    height: auto;
    cursor: pointer;
    z-index: 20;
    transition: transform 0.2s, filter 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.arrow:hover {
    transform: translateY(-50%) scale(1.2);
    filter: brightness(1.5);
    opacity: 1;
}

.arrow:active {
    filter: brightness(2) drop-shadow(0 0 10px white);
    transform: translateY(-50%) scale(0.9);
}

/* Ajuste de rotación para las flechas según la imagen arrow.png */
/* Asumiremos que apunta a la derecha o izquierda y ajustaremos */
.arrow-left {
    left: 30px;
    transform: translateY(-50%);
}

.arrow-left:hover {
    transform: translateY(-50%) scale(1.2);
}

.arrow-right {
    right: 30px;
    transform: translateY(-50%);
}

.arrow-right:hover {
    transform: translateY(-50%) scale(1.2);
}

.disc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 280px;
}

.disc-wrapper {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Efecto rebote suave */
    display: flex;
    justify-content: center;
    align-items: center;
}

.disc {
    border-radius: 50%;
    animation: spin 6s linear infinite;
    /* Sombra suave detrás del disco */
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.6));
}

/* Estilos de posición del carrusel */

/* Disco central (Activo) */
.disc-wrapper.center {
    transform: translateX(0) scale(1.2);
    z-index: 10;
    opacity: 1;
}

.disc-wrapper.center .disc {
    width: 200px;
    height: 200px;
}

/* Disco siguiente (Derecha) */
.disc-wrapper.right {
    transform: translateX(200px) scale(0.6);
    z-index: 5;
    opacity: 0.8;
    filter: brightness(0.7);
}

.disc-wrapper.right .disc {
    width: 200px;
    /* Tamaño base, escalado por el wrapper */
    height: 200px;
}

/* Disco previo (Izquierda) */
.disc-wrapper.left {
    transform: translateX(-200px) scale(0.6);
    z-index: 5;
    opacity: 0.8;
    filter: brightness(0.7);
}

.disc-wrapper.left .disc {
    width: 200px;
    height: 200px;
}

/* Discos ocultos */
.disc-wrapper.hidden {
    transform: scale(0);
    opacity: 0;
    z-index: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.message {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    z-index: 5;
    font-weight: 300;
    height: 50px;
    /* Espacio reservado */
    transition: opacity 0.3s;
    position: relative;
    top: -20px;
}

.footer {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 160px;
    z-index: 5;
    position: relative;
}

.wii-btn {
    width: 280px;
    height: 250px;
    background: url('img/button.png') no-repeat center center;
    background-size: 100% 100%;
    border: none;
    color: #eee;
    font-size: 22px;
    font-style: italic;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: transform 0.1s, filter 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    top: -45px;
}

.wii-btn span {
    position: relative;
    top: 0px;
}

/* Si button.png tiene el texto, ocultaríamos el span, pero asumo que es solo el shape */

.wii-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.wii-btn:active {
    transform: scale(0.95);
    filter: brightness(2);
}