.tienvoud-choice-page {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(255,31,169,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,31,169,.075) 1px, transparent 1px);
  background-size: 56px 56px;
}
.tienvoud-choice-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.36), rgba(255,255,255,.96) 72%);
}
.tienvoud-choice-squares {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.tienvoud-choice-squares span {
  position: absolute;
  width: 55px;
  height: 55px;
  background: #ff1fa9;
  opacity: var(--square-opacity, .06);
  animation: choiceSquareBreathe 7s ease-in-out infinite;
}
@keyframes choiceSquareBreathe {
  0%, 100% { opacity: calc(var(--square-opacity, .06) * .4); }
  50% { opacity: var(--square-opacity, .06); }
}
.tienvoud-choice-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .tienvoud-choice-content { gap: 72px; }
}
.tienvoud-choice-wordmark {
  font-family: "Carter One", Georgia, serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
}
.tienvoud-choice-wordmark .tien { color: #ff1fa9; }
.tienvoud-choice-wordmark .voud { color: #1a1a1a; }
.tienvoud-choice-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.tienvoud-choice-button {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px 30px;
  border: 3px solid #ff1fa9;
  background: #ff1fa9;
  color: #ffffff;
  font-family: "Carter One", Georgia, serif;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 6px 6px 0 rgba(255,31,169,.16);
  transition: background-color 160ms ease, color 160ms ease;
}
.tienvoud-choice-button:hover,
.tienvoud-choice-button:focus-visible {
  background: #ffffff;
  color: #ff1fa9;
  outline: none;
}
