/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #f1f1f1;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* Header / Hero */
.hero {
  background: linear-gradient(145deg, #141414, #1f1f1f);
  padding: 80px 20px 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.emoji {
  font-size: 1.6rem;
  margin-right: 8px;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 30px;
}

.download-btn {
  background-color: #007acc;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease;
  margin: 10px 0;
}

.gradient-title {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}


.platform-label {
  color: #888;
  font-size: 0.95rem;
  margin-top: 25px;
  margin-bottom: 5px;
}


.download-btn.large {
  font-size: 1.2rem;
  padding: 16px 34px;
}

.badge.not-supported {
  background: #2a2a2a;
  color: #666;
  border: 1px solid #444;
  opacity: 0.6;
  cursor: not-allowed;
}


.download-btn:hover {
  background-color: #005fa3;
}

/* Platform Badges */
.platform-badges {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: #2a2a2a;
  color: #ccc;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #444;
}

.badge.coming {
  background: #1f1f1f;
  border-color: #555;
  color: #888;
}

/* Features */
.features h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.feature {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  min-height: 260px;
}

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

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature p {
  color: #aaa;
  font-size: 0.95rem;
  padding: 0 10px;
}

/* Reviews */
.reviews h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: #ccc;
  font-size: 0.95rem;
}

.review-name {
  margin-top: 10px;
  font-weight: bold;
  color: #aaa;
}

/* Download Info */
.download-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.download-info p {
  font-size: 1rem;
  color: #ccc;
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #121212;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  border-top: 1px solid #1c1c1c;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .download-btn {
    width: 100%;
  }

  .features-grid,
  .review-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}
