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

body {
  background-color: #111111;
  color: #cccccc;
  font-family: "Space Mono", monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem 2rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 700px;
}

#title:hover {
  color: #61afef;
  cursor: pointer;
}

h1 {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #e0e0e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.list-section {
  width: 100%;
}

ol {
  list-style: none;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

ol li {
  counter-increment: item;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

ol li::before {
  content: counter(item) ".";
  color: #555555;
  min-width: 1.5rem;
  flex-shrink: 0;
}

.item-1 {
  color: #4caf75;
}

.item-2 {
  color: #e06c75;
}

.item-3 {
  color: #61afef;
}

.item-4 {
  color: #e5c07b;
}

.item-5 {
  color: #c678dd;
}

.item-6 {
  color: #56b6c2;
}

.item-7 {
  color: #d19a66;
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 1rem;
  color: #888888;
  letter-spacing: 0.05em;
}

.cd-label {
  font-size: 0.65rem;
  color: #666666;
  margin-right: 0.1rem;
}

.cd-sep {
  color: #555555;
  margin: 0 0.1rem;
}

footer {
  display: flex;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #222222;
  width: 100%;
  max-width: 700px;
  justify-content: center;
}

footer a {
  color: #555555;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #aaaaaa;
}
