/* Importación de fuente desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos generales */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #c090f8 0%, #b5e0ff 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.playstore-btn img {
  width: 160px;
  height: auto;
  transition: transform 0.2s ease;
}

.playstore-btn img:hover {
  transform: scale(1.05);
}

/* MODOS DE JUEGO */
.modes {
  padding: 60px 20px;
  background: #f4f8ff;
  text-align: center;
}

.modes h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.mode {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.mode h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.mode p {
  font-size: 0.95rem;
  color: #555;
}

/* QUIÉNES SOMOS */
.about {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.about p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.barcelona-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

footer a {
  color: #90e0ef;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

/* COOKIES BANNER */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.95);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  z-index: 999;
}

.cookie-banner p {
  margin-bottom: 10px;
}

.cookie-banner a {
  color: #90e0ef;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #90e0ef;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
