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

body {
  background-color: #faf5f0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Layout ────────────────────────────────── */

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 64px;
}

.card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Logo ──────────────────────────────────── */

.logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
  animation: fadeDown 0.5s ease both;
}

/* ── Text ──────────────────────────────────── */

.name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  animation: fadeDown 0.5s 0.1s ease both;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
  animation: fadeDown 0.5s 0.2s ease both;
}

/* ── Buttons ───────────────────────────────── */

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn:active {
  transform: scale(0.975);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-facebook {
  background-color: #1877F2;
  animation: fadeDown 0.5s 0.3s ease both;
}

.btn-instagram {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  animation: fadeDown 0.5s 0.4s ease both;
}

/* ── Icon ──────────────────────────────────── */

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────── */

.footer {
  margin-top: 48px;
  font-size: 0.78rem;
  color: #bbb;
  letter-spacing: 0.03em;
  animation: fadeDown 0.5s 0.5s ease both;
}

/* ── Animations ────────────────────────────── */

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile ────────────────────────────────── */

@media (max-width: 480px) {
  .name {
    font-size: 2rem;
  }

  .logo {
    width: 120px;
    height: 120px;
  }
}
