/* styles.css */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: white;
}

header {
  text-align: center;
  padding: 80px 20px 40px;
  animation: fadeIn 1s ease;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  color: #94a3b8;
  font-size: 1.2rem;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px;
}

.app {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.app.visible {
  opacity: 1;
  transform: translateY(0);
}

.app:hover {
  transform: translateY(-8px) scale(1.02);
}

.app img {
  width: 90px;
  border-radius: 22px;
}

.btn {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.play {
  background: #22c55e;
  color: black;
}

.play:hover {
  background: #16a34a;
}

.appstore {
  background: white;
  color: black;
}

.appstore:hover {
  background: #e2e8f0;
}

.store-btn {
  background: rgba(255,255,255,0.1);
  color: white;
}

.store-btn:hover {
  background: rgba(255,255,255,0.2);
}

footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* TuMatch Style */
#stores {
    display: none;
    margin-top: 15px;
}
