<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===== PALETA DE COLORES FINAL =====
#121a2f - Fondo principal (body, header, banner)
#232a3d - Contenedores, secciones destacadas
#fdd500 - Acento (botones, enlaces activos, tÃ­tulos)
*/

/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121a2f;
  color: #ffffff;
  line-height: 1.6;
}

/* ===== ENCABEZADO ===== */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #121a2f;
  padding: 15px 20px;
}

.logo-img {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fdd500;
  text-decoration: none;
  font-weight: bold;
}

.auth-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-register {
  background-color: #fdd500;
  color: #121a2f;
}

.btn-login {
  background-color: transparent;
  color: #fdd500;
  border: 2px solid #fdd500;
}

/* ===== BANNER PRINCIPAL ===== */
.main-banner {
  text-align: center;
  padding: 60px 20px;
  background-color: #121a2f;
  color: #ffffff;
}

.main-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.main-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #fdd500;
  color: #121a2f;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== SECCIONES DESTACADAS ===== */
.featured-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #121a2f;
  padding: 40px 20px;
  gap: 20px;
}

.featured-sections .section {
  flex: 1 1 350px;
  height: 350px;
  position: relative;
  background-color: #232a3d;
  
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  min-width: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.featured-sections h2 {
  color: #fdd500;
  margin-bottom: 10px;
}

.featured-sections p {
  margin-bottom: 15px;
}

/* Overlay oscuro al hacer hover */
.featured-sections .section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.featured-sections .section:hover::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.featured-sections .section h2, .featured-sections .section p{
  position: relative;
  z-index: 2;
  color: #FFF;
  font-weight: bold;
}


/* Texto de "Click aquÃ­ para jugar" */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fdd500;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.featured-sections .section:hover .overlay-text {
  opacity: 1;
}




.btn-secondary {
  background-color: transparent;
  color: #fdd500;
  border: 2px solid #fdd500;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== PIE DE PÃGINA ===== */
.site-footer {
  background-color: #121a2f;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #fdd500;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fdd500;
}

.footer-column p {
  margin: 5px 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #232a3d;
  padding-top: 15px;
  color: #fdd500;
}


/* SECCION COMO JUGAR */

.how-to-section {
  background-color: #121a2f;
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.how-to-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fdd500;
}

.how-to-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.how-to-card {
  background-color: #232a3d;
  padding: 25px 80px;
  flex: 1 1 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-card h3 {
  color: #fdd500;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.how-to-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.how-to-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}



.recomendados-section {
  background-color: #121a2f;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  margin-top: 20px;
}

.slider-container::-webkit-scrollbar {
  height: 8px;
}

.slider-container::-webkit-scrollbar-thumb {
  background-color: #fdd500;
  border-radius: 4px;
}

.slider-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  background-color: #232a3d;
  border-radius: 15px;
  width: 200px;
  height: 260px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.slider-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.slider-item p {
  font-size: 0.95rem;
  color: #fdd500;
}

.slider-item:hover {
  transform: scale(1.05);
}
















/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Oculta el UL dentro del nav */
  .main-nav .nav-list {
    display: none;
  }

  /* Header: organiza logo + auth-buttons en una fila */
  header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .logo-img {
    height: 45px;
  }

  .how-to-card {
    background-color: #232a3d;
    padding: 25px 20px;
    flex: 1 1 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .auth-buttons {
    flex-direction: row;
    gap: 10px;
    margin-top: 0;
  }

  /* Opcional: ajustar tamaÃ±o de botones */
  .auth-buttons .btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
}</pre></body></html>