/* Reset & base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #e9f3ff;
  background: #0b0e14;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Theme - colores del logo */
:root {
  --bg: #0b0e14;
  --text: #e9f3ff;
  --muted: #9db3cc;
  --accent: #14c8ff;   /* celeste del + */
  --accent-2: #7c4dff; /* morado complementario */
  --shadow: rgba(0,0,0,.35);
}
.accent { color: var(--accent); }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Hero section */
.hero {
  min-height: 100vh;
  background: url('images/bg.png') center/cover no-repeat;
  background-attachment: fixed;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,200,255,.1), rgba(124,77,255,.1)), 
              linear-gradient(180deg, rgba(11,14,20,.3), rgba(11,14,20,.7));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.hero-banner {
  width: min(1200px, 400vw);
  height: auto;
  margin: 0 auto 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 1px;
}

.hero h3 {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 2rem;
}

.hero p {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 1.2rem;
}

/* Download section */
.download-links {
  margin-top: 40px;
}

.download-links h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.store-link {
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
}

.store-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-link img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow);
}

/* Footer */
.site-footer {
  background: rgba(11,14,20,.9);
  border-top: 1px solid rgba(20,200,255,.2);
  padding: 20px 0;
  text-align: center;
}

.brand-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 10px;
}

.site-footer small {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    padding: 20px 0;
  }
  
  .hero-banner {
    width: min(300px, 90vw);
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: clamp(24px, 8vw, 40px);
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .store-links {
    gap: 10px;
  }
  
  .store-link img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .store-links {
    flex-direction: column;
    align-items: center;
  }
  
  .store-link img {
    height: 45px;
  }
}