:root {
  --bg-start: #f6f8fb;
  --bg-end: #e9eef7;
  --card-bg: #ffffff;
  --text: #1c2430;
  --muted: #5b6676;
  --bar-bg: #000000;
  --wa: #25d366;
  --wa-dark: #1fb157;
  --tg: #229ed9;
  --tg-dark: #1c83b4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(145deg, var(--bg-start), var(--bg-end));
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 56px;
  background: var(--bar-bg);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.4px;
  font-size: 0.95rem;
  padding: 0 16px;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 16px 24px;
}

.card {
  width: 100%;
  max-width: 520px;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 18px 45px rgba(27, 39, 58, 0.14);
  text-align: center;
}

.logo {
  width: 146px;
  height: auto;
  margin-bottom: 12px;
}

h1 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.subtitle {
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 42ch;
}

.spots {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.spots strong {
  color: #d83d3d;
}

.cta-group {
  display: grid;
  gap: 12px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.18s ease, filter 0.18s ease;
  animation: pulse 2.2s infinite;
}

.cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cta-btn:active {
  transform: translateY(0);
}

.whatsapp {
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
}

.telegram {
  background: linear-gradient(135deg, var(--tg), var(--tg-dark));
}

.disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  text-align: center;
  padding: 0 16px 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 380px) {
  .top-bar-inner {
    font-size: 0.82rem;
  }

  .card {
    padding: 22px 16px;
    border-radius: 12px;
  }

  h1 {
    font-size: 1.38rem;
  }

  .cta-btn {
    padding: 13px 12px;
    font-size: 0.96rem;
  }
}