* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background:
    radial-gradient(circle at 20% 20%, rgba(99,102,241,0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(56,189,248,0.12), transparent 45%),
    radial-gradient(circle at center, #0f172a, #020617);
  animation: bgShift 18s ease-in-out infinite alternate;
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
}

@keyframes bgShift {
  0% {
    background-position: 0% 0%, 100% 0%, center;
  }
  100% {
    background-position: 10% 10%, 90% 10%, center;
  }
}

header {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #1e293b, #020617);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  opacity: 0.85;
}

main {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.app {
  position: relative;
  display: flex;
  gap: 2rem;
  background: #020617;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.app::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(99,102,241,0.35),
    transparent
  );
}

.app img {
  width: 150px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app:hover img {
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.35),
    0 0 30px rgba(99,102,241,0.45);
}

.app p {
  color: #cbd5f5;
  line-height: 1.6;
}

.app h2 {
  letter-spacing: 0.02em;
}


.status {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: #334155;
  border-radius: 999px;
  font-size: 0.85rem;
}

.store-buttons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  align-items: center;
}

.store-badge {
  height: 40px;   /* scales nicely while keeping quality */
}


.store-badge:hover {
  transform: scale(1.05);
}

footer a {
  color: #a5b4fc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 700px) {
  .app {
    flex-direction: column;
    text-align: center;
  }

  .app img {
    width: 120px;
  }
}

/* Brand Title */
.brand-title {
  text-shadow: 0 0 40px rgba(99,102,241,0.35);
}


.tagline {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Contact Button */
.contact-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: softPulse 4s infinite;
}

.contact-btn:hover {
  animation: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.45);
}

@keyframes softPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99,102,241,0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(99,102,241,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99,102,241,0);
  }
}


/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.modal-content {
  animation: modalFade 0.25s ease-out;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.modal h2 {
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

/* Form */
form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

form input,
form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.6rem;
  background: #020617;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #e5e7eb;
}

form button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem;
  background: #6366f1;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.close {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
}
