/* Убираем отступы и настраиваем шрифт */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 199, 230, 0.25), transparent 35%),
    radial-gradient(circle at bottom, rgba(255, 215, 140, 0.2), transparent 30%),
    linear-gradient(160deg, #17081c 0%, #2b0d31 45%, #12050e 100%);
  color: #fff7fb;
}

/* Фоновый canvas */
#matrix-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.75;
}

/* Основной контент */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.greeting-card {
  max-width: 720px;
  padding: 2.5rem 2.75rem;
  border-radius: 28px;
  background: rgba(34, 9, 35, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 182, 193, 0.18);
  color: #ffd7e8;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.05;
  color: #fff4d6;
  text-shadow: 0 0 18px rgba(255, 214, 137, 0.3);
}

.subtitle {
  margin: 1.2rem auto 0;
  max-width: 36rem;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #f5dced;
}

/* Статус */
#status {
  margin-top: 1.5rem;
  color: #ffe7f2;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* Появляющийся текст */
.floating-text {
  position: absolute;
  color: #ffd76a;
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(255, 176, 84, 0.55);
  pointer-events: none;
  animation: fadeOut 2s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -110px) scale(1.2);
  }
}
