:root {
  --bg: #0f172a;
  --card-bg: #1e293b;
  --accent: #38bdf8;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", "Hiragino Sans", sans-serif;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.subtitle {
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.app-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-link {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.app-link:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--accent);
}

.app-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.app-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}
