/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  background: #0f0f13;
  color: #f0f0f0;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #6C63FF, #9E78FF);
  text-align: center;
  padding: 4rem 1rem 2rem;
}

header img {
  width: 80px;
  height: 80px;
  border-radius: 20%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

header h1 {
  font-size: 3rem;
  margin: 0;
}

header p {
  font-size: 1.25rem;
  color: #e0e0ff;
  margin: 0.5rem 0 1rem;
}

.store-badge {
  height: 48px;
  margin-top: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

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

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #a78bfa;
}

.feature p {
  color: #ccc;
  font-size: 1rem;
}

.preview-section {
  background: #16161d;
  text-align: center;
  padding: 4rem 1rem;
}

.preview-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.preview-section p {
  color: #aaa;
  margin-bottom: 2rem;
}

.preview-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.preview-gallery img {
  width: 250px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.preview-gallery img:hover {
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #888;
  background: #0a0a0e;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }

  header p {
    font-size: 1rem;
  }
}
