/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background: #000;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #5D18E5;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5D18E5;
}

/* Menú normal (desktop) */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #5D18E5;
}

/* Botón menú móvil */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #5D18E5;
  cursor: pointer;
}

/* Hero principal */
.hero {
  background: url('https://images.unsplash.com/photo-1592496001020-8989e8b0c7e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #5D18E5;
  text-shadow: 2px 2px 8px black;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.hero button {
  background: red;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: darkred;
}

/* Secciones */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  color: #5D18E5;
  margin-bottom: 20px;
  border-bottom: 2px solid red;
  display: inline-block;
}

/* Cards de apuestas */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  border: 2px solid #444;
  transition: 0.3s;
}

.card:hover {
  border-color: #5D18E5;
  transform: scale(1.05);
}

.card h3 {
  color: red;
  margin-bottom: 10px;
}

/* Loterías */
.loterias ul {
  list-style: square;
  margin-left: 20px;
}

.loterias li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  border-top: 3px solid #5D18E5;
  margin-top: 30px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  /* Ocultar menú normal */
  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 200px;
    border-left: 3px solid #5D18E5;
    padding: 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }
}
