body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 40px;
}

.section {
  margin-top: 40px;
}

.section h2 {
  margin-bottom: 20px;
  color: #cbd5f5;
}

.tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: 0.2s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  background: #334155;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #94a3b8;
}

.coming {
  opacity: 0.6;
  cursor: default;
}

.coming:hover {
  transform: none;
  background: #1e293b;
}

.footer {
  margin-top: 50px;
  font-size: 14px;
  color: #64748b;
}