﻿body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Valor negativo para que quede detrás */
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contenedor-principal {
  position: relative;
  z-index: 1;
}

header {
  background-color: #1a053c; /* Fondo morado oscuro */
  color: #a020f0; /* Morado gaming para el texto */
  text-align: center;
  padding: 1em 0;
  animation: fuego 5s infinite; /* Animación de fuego */
}

@keyframes fuego {
  0% {
    text-shadow: 0 0 10px #8a2be2, 0 0 20px #9400d3, 0 0 30px #9932cc; /* Sombras iniciales */
  }
  50% {
    text-shadow: 0 0 20px #9400d3, 0 0 30px #9932cc, 0 0 40px #8a2be2; /* Sombras intermedias */
  }
  100% {
    text-shadow: 0 0 10px #9932cc, 0 0 20px #8a2be2, 0 0 30px #9400d3; /* Sombras finales */
  }
}

main {
  padding: 20px;
}

.juegos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {

  color: red;
display: inline-block;
margin: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease-in;
}

.juegos a {
  display: inline-block;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease-in;
}

.juegos a img {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.juegos a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.juegos img {
  width: 128px;
  height: 128px;
  display: block;
  margin: 0 auto;
}

h1, h2, h3, h4, h5 {
  color: red; /* Color gris oscuro como ejemplo */
}

.juegos span {
  display: block;
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  color: #f4f4f4;
}

footer {
  background-color: #1a053c;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  animation: slideInUp 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ... tu código CSS ... */

.music-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1a053c;
    border: 1px solid #a020f0;
    padding: 10px;
    color: #a020f0;
}

.music-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.music-list {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    display: none;
    transition: height 0.5s ease-in-out; /* Transición para la altura */
    overflow: hidden; /* Asegura que la animación sea suave */
}

.music-list.show {
    display: block;
}

.music-list li {
    cursor: pointer;
    padding: 5px;
    transition: background-color 0.5s ease; /* Transición para el color de fondo */
}

.music-list li:hover {
    background-color: #4a148c; /* Color morado más claro al pasar el ratón */
}

/* Estilos para el texto "Escuchar Música" */
.music-text {
    color: #007bff; /* Color azul */
    font-weight: bold; /* Texto en negrita */
    font-size: 1.2em; /* Tamaño de fuente más grande */
}

/* Estilos para el botón "Reproducir Música" */
.music-button {
    background-color: #a020f0; /* Fondo Morado */
    color: white; /* Texto blanco */
    padding: 10px 20px; /* Espaciado interno */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    font-size: 1em; /* Tamaño de fuente */
}

/* Estilos para el botón cuando el cursor está encima */
.music-button:hover {
    background-color: #9B26B6; /* Morado más oscuro al pasar el cursor */
}

.notification-list {
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 250px;
    display: none;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.notification-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.notification-list li:last-child {
    border-bottom: none;
}

.notification-list .delete-notification {
    background: #e74c3c;
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.notification-list .delete-notification:hover {
    background: #c0392b;
}

/* Estilo para el mensaje "No tienes notificaciones" */
.notification-list li:first-child {
    text-align: center;
    color: #888;
}

.game {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.game .animated-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #1a053c, #a020f0);
  transition: width 0.3s ease;
}

.game:hover .animated-line {
  width: 100%;
}

.zoomable-image {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 1024px;
    height: 768px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#animated-text {
  font-size: 2em; /* Ajusta el tamaño según sea necesario */
  font-weight: bold;
  white-space: nowrap; /* Evita saltos de línea */
}


        /* Estilos para la campana de notificaciones */
.notification-bell {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url('Images/campana.png');
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
  position: absolute;
  top: 20px;
  right: 60px;
}

.notification-bell:hover {
  transform: scale(1.1);
}

.notification-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: red;
            color: white;
            border-radius: 50%;
            padding: 4px 6px;
            font-size: 12px;
            animation: pulse 1s infinite;
            display: none;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Estilos para la imagen de perfil */
        #profileImage {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        /* Estilos para los juegos */
        .juego {
            display: inline-block;
            margin: 10px;
        }

        .juego img {
            width: 50px;
            height: 50px;
        }

.pagination {
    margin-top: 20px;
    text-align: center;
    color: #eee;
}

.pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #a020f0;
    color: #eee;
}

.pagination span.current {
    background-color: #a020f0;
    color: #fff;
    border-color: #a020f0;
}

.pagination span:hover {
    background-color: #1a053c;
}

/* Estilo para el botón "Reproducir Música" */
.music-button {
    background-color: #a020f0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.music-button:hover {
    background-color: #9B26B6;
}

.fechasis {
  display: block; /* Cambiamos a block para que ocupe el ancho necesario */
  color: #a020f0;
  background-color: #1a053c;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  width: fit-content; /* El ancho se ajusta al contenido */
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* Centra el texto dentro del cuadro */
}

#imagen-debajo-footer {
    position: absolute;
    */* opacity: 0.8; */*
}

.modo-interruptor {
  position: relative; /* Para posicionar los elementos internos */
  display: inline-block; /* O block si quieres que ocupe toda la línea */
  overflow: hidden; /* Para ocultar el desbordamiento de los iconos */
  width: 100px; /* Ancho del botón */
  height: 30px; /* Alto del botón */
  border: 1px solid #ccc; /* Borde del botón */
  border-radius: 15px; /* Bordes redondeados */
}

#boton-modo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background-color: #eee; /* Color de fondo del "deslizador" */
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out; /* Transición suave para el deslizamiento */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
}

#boton-modo.dark {
  transform: translateX(calc(100% - 30px)); /* Desplaza el botón hacia la derecha */
  background-color: #333; /* Color de fondo en modo oscuro */
  color: #fff;
}

.icono-izquierda, .icono-derecha {
  position: absolute;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  transition: opacity 0.3s ease-in-out;
}

.icono-izquierda {
  left: 0;
}

.icono-derecha {
  right: 0;
  opacity: 0; /* Inicialmente oculto */
}

#boton-modo.dark .icono-izquierda {
  opacity: 0;
}

#boton-modo.dark .icono-derecha {
  opacity: 1;
}

body.dark-mode {
  background-color: #222;
  color: #eee;
  /* Aquí puedes añadir más estilos para el modo oscuro de otros elementos de tu página */
}