* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #111827;
    color: #f3f4f6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

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

.hero p {
    color: #9ca3af;
}

.apps-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.app-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #1f2937;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #374151;
    transition: 0.2s ease;
}

.app-card:hover {
    transform: translateY(-3px);
    border-color: #f97316;
}

.app-card h2 {
    margin-bottom: 10px;
}

.app-card p {
    color: #d1d5db;
}

.coming-soon {
    opacity: 0.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.brand-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
}

.site-pill {
  color: #d1d5db;
  font-size: 0.9rem;
}