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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0c10;
  background-image: radial-gradient(circle at 20% 20%, rgba(90, 70, 255, 0.12), transparent 40%),
                     radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.08), transparent 40%);
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #eaeaea;
}

.wrap {
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

.sub {
  text-align: center;
  color: #8a8f98;
  margin-top: 8px;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.portals {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #16171d;
  border: 1px solid #262832;
  border-radius: 12px;
  padding: 18px 22px;
  text-decoration: none;
  color: #eaeaea;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}

.card:hover {
  border-color: #5a46ff;
  background: #1a1b23;
  transform: translateY(-2px);
}

.label {
  font-size: 1rem;
  font-weight: 500;
}

.arrow {
  color: #5a46ff;
  font-size: 1.1rem;
}