:root {
  --bg-dark: #1D212A;
  --bg-light: #11141b;
  --gold: #B08E47;
  --gold-light: #FAE26B;
  --text: #fff;
  --text-muted: #ccc;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  background-color: var(--bg-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* align to the middle */
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
}

.logo img {
  height: 40px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-buttons button,
.contact-button {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-buttons button:hover,
.contact-button:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.hero {
  padding: 4rem 1rem;
  background: linear-gradient(145deg, #1D212A 40%, #0e0f13 100%);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  color: var(--gold);
}

.hero .store-buttons img {
  height: 60px;
  transition: transform 0.3s ease;
}

.hero .store-buttons img:hover {
  transform: scale(1.05);
}

.hero .image img {
  width: 280px;
  max-width: 100%;
}

.features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem auto;
  flex-wrap: wrap;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  height: 100px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.waitlist {
  padding: 4rem 1rem;
  background-color: var(--bg-light);
  text-align: center;
}

.waitlist h2 {
  font-size: 2rem;
  color: var(--gold);
}

.waitlist h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.waitlist form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.waitlist input {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  max-width: 300px;
  width: 100%;
}

.waitlist button {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.waitlist button:hover {
  background: var(--gold-light);
}

.site-footer {
  background: #16191F;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-buttons {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-buttons.active {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.08);
}

/* Animaciones suaves en botones */
button,
.contact-button {
  transition: all 0.3s ease;
}

button:hover,
.contact-button:hover {
  transform: translateY(-2px);
}

/* Form feedback */
#form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Store buttons hover */
.store-buttons img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Fondo de partículas */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #0f1014 0%, #1D212A 100%);
}

/* Fondo con capa oscura para contraste */
body::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Botones flotantes con glow */
button, .contact-button {
  position: relative;
  overflow: hidden;
}

button::before,
.contact-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite linear;
  z-index: 0;
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(45deg) translate(50%, 50%);
  }
}

button, .contact-button {
  z-index: 1;
}

/* Animaciones suaves */
.feature-card, .waitlist form {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.025);
}

/* Mejora del formulario */
input:focus {
  outline: 2px solid #FAE26B;
  background: #2a2f3a;
  color: white;
}

.logo_footer {
  gap: 0.5rem;
  height: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-decoration: bold;
  font-weight: bold;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -10;
  top: 0;
  left: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-brand img {
  height: 40px;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-buttons {
    display: none;
    flex-direction: column !important;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .nav-buttons button {
    width: 100%;
    text-align: center;
  }

  .nav-buttons.active {
    display: flex !important;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-top: -2rem;
    margin-bottom: 1rem;
  }
}

.store-buttons img{
  height:64px;      
  width:auto;       
  object-fit:contain;
  transition:transform .3s ease, filter .3s ease;
}

.store-buttons img:hover{
  transform:scale(1.05);
  filter:brightness(1.1);
}

@media (max-width:480px){
  .store-buttons img{height:56px;}
}

html, body {
  overflow-x: hidden;
  box-sizing: border-box;
}
