/* Base Reset */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #222 0%, #0f0f0f 60%, #050505 100%);
  color: #fff;
}

/* Layout */
.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

/* Card */
.card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
}

/* Logo */
.logoWrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.4));
}

/* Text */
.title {
  font-size: 2rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.subtitle {
  margin-top: 10px;
  font-size: 1.02rem;
  opacity: 0.88;
  line-height: 1.45;
}

/* Loader */
.loader {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin: 18px auto 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.9);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.footer {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.65;
}

/* Text Pages */
.textPage {
  text-align: left;
}

.content {
  margin-top: 14px;
  line-height: 1.65;
  opacity: 0.92;
}

.content h2 {
  margin-top: 18px;
  font-size: 1.12rem;
}

.content p {
  margin-top: 8px;
}

.content ul {
  margin-top: 8px;
  margin-left: 18px;
}

.content li {
  margin-top: 6px;
}

/* Links buttons */
.navLinks {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.linkBtn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.15s ease, background 0.15s ease;
}

.linkBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}