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

body {
  background: #ffffff;
  color: #000000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  max-width: 640px;
  padding: 2rem;
}

/* Title */
h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.08em; /* tight, editorial */
  margin-bottom: 1rem;
}

/* Description */
p {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Loader */
.loader {
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  animation: scaleStar 1.8s ease-in-out infinite;
}

.loader::before {
  content: "✦";
  display: inline-block;
  animation: swapStar 1.8s steps(1) infinite;
}

/* Animations */
@keyframes scaleStar {
  0% {
    transform: scale(0.2);
    opacity: 0.4;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.2);
    opacity: 0.4;
  }
}

@keyframes swapStar {
  0%, 49% {
    content: "✦";
  }
  50%, 100% {
    content: "✧";
  }
}
