/* Index Page Specific Styles */

.container {
  max-width: 680px;
  padding: 48px 20px 80px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 27px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.25);
}

h1 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

.tagline {
  color: #888;
  font-size: 15px;
}

/* Description Section */
.description {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.description h2 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
  font-weight: 600;
}

.description > p {
  color: #555;
  margin-bottom: 16px;
  font-size: 15px;
}

.description > p:last-of-type {
  margin-bottom: 0;
}

/* Features Grid */
.features {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fafbfc;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.feature:hover {
  background: #f5f7fa;
  border-color: rgba(25, 118, 210, 0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #E3F2FD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.feature-text h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #333;
}

.feature-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1976D2;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.download-btn:hover {
  background: #1565C0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.35);
  text-decoration: none;
  color: white;
}

/* Footer Links */
.links {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.links a {
  color: #888;
  text-decoration: none;
  margin: 0 16px;
  font-size: 14px;
  transition: color 0.2s ease;
}

.links a:hover {
  color: #1976D2;
}

@media (max-width: 600px) {
  .description {
    padding: 24px;
  }

  .feature {
    padding: 12px;
  }
}
