body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #020617;
  color: #e2e8f0;
}

#app {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  text-align: center;
}

/* HEADER */
.header {
  margin-bottom: 28px;
}


.header-image {
  width: 42px;
  height: 42px;
  color: #ef4444;
  display: block;
  margin-bottom: 8px;
}
.header h1 {
  margin: 0;
  font-size: 2rem;
  color: #ef4444;
}

.header p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* LINKS */
.subdiv-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* LINK CARD */
.link-card {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: #1e293b;
  border: 1px solid #334155;

  color: #f8fafc;
  text-decoration: none;

  font-weight: 600;

  transition: 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  background: #273449;
}

/* ICON INSIDE LINK */
.link-icon {
  font-size: 22px;
  color: #60a5fa;
}