:root {
  --bg: #05060a;
  --bg-alt: #0b0d14;
  --accent: #ffb347;
  --accent-soft: rgba(255, 179, 71, 0.25);
  --text: #f5f5f5;
  --muted: #9fa3b7;
  --glass-bg: rgba(15, 18, 30, 0.85);
  --border-glass: rgba(255, 255, 255, 0.06);
  --radius: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

body {
  background: radial-gradient(circle at top, #151827 0, #05060a 55%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app {
  width: 100%;
  max-width: 480px;
  padding: 18px;
}

.header {
  text-align: center;
  margin-bottom: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ffb347 0, #ff7e5f 60%);
  color: #05060a;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 24px rgba(255, 179, 71, 0.7);
}

.title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

.subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.glass {
  background: var(--glass-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.card {
  padding: 18px 16px;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffb347, #ff7e5f);
  color: #05060a;
  box-shadow: 0 10px 24px rgba(255, 179, 71, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 179, 71, 0.8);
}

.btn.primary:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(255, 179, 71, 0.5);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-card {
  padding: 10px;
  text-align: left;
}

.mini-card h3 {
  font-size: 12px;
  margin-bottom: 4px;
}

.mini-card p {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.8;
}
