html,
body.nrq-live-page {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #f4f0e9;
}
.nrq-live-page * {
  box-sizing: border-box;
}
.nrq-live {
  --g: #5c6c63;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100vw;
  height: 100vh;
  min-height: 520px;
  padding: clamp(28px, 4vw, 68px);
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 255, 255, 0.96),
    rgba(247, 244, 238, 0.9) 48%,
    #e9e3d9 100%
  );
  color: #414943;
  font-family: Poppins, sans-serif;
  text-align: center;
}
.nrq-live:before,
.nrq-live:after {
  content: "";
  position: absolute;
  width: 34vw;
  height: 34vw;
  min-width: 360px;
  min-height: 360px;
  border: 1px solid rgba(92, 108, 99, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.nrq-live:before {
  left: -16vw;
  top: -19vw;
  box-shadow:
    0 0 0 55px rgba(92, 108, 99, 0.025),
    0 0 0 110px rgba(92, 108, 99, 0.02);
}
.nrq-live:after {
  right: -18vw;
  bottom: -22vw;
  box-shadow:
    0 0 0 55px rgba(92, 108, 99, 0.025),
    0 0 0 110px rgba(92, 108, 99, 0.02);
}
.nrq-live-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.nrq-live-orb.one {
  width: 180px;
  height: 180px;
  top: 15%;
  right: 8%;
  background: rgba(92, 108, 99, 0.055);
}
.nrq-live-orb.two {
  width: 100px;
  height: 100px;
  bottom: 19%;
  left: 11%;
  background: rgba(188, 98, 74, 0.045);
}
.nrq-live header {
  position: relative;
  z-index: 1;
}
.nrq-live header > span {
  display: block;
  color: #929a95;
  font-size: clamp(8px, 0.7vw, 12px);
  font-weight: 600;
  letter-spacing: 0.3em;
}
.nrq-live header small {
  display: block;
  margin-top: 18px;
  color: #929a95;
  font-size: clamp(9px, 0.8vw, 13px);
  letter-spacing: 0.22em;
}
.nrq-live header h1 {
  margin: 8px 0 5px;
  color: var(--g);
  font-family: Afterglow, "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 74px);
  font-weight: 500;
  line-height: 1;
}
.nrq-live-event-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
  max-width: min(92vw, 780px);
  margin: 14px auto 0;
  padding: clamp(11px, 1vw, 16px) clamp(20px, 2.5vw, 42px);
  border: 1px solid rgba(92, 108, 99, 0.09);
  border-radius: 999px;
  background: rgba(241, 236, 227, 0.88);
  box-shadow: 0 12px 35px rgba(70, 83, 76, 0.055);
  color: #69736d;
  font-size: clamp(11px, 1vw, 16px);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.nrq-live-event-meta i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: #8b978f;
}
.nrq-live-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 3vh 5vw;
}
.nrq-live-overline {
  color: #8b938e;
  font-size: clamp(11px, 1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.34em;
}
.nrq-live-name {
  max-width: 1200px;
  margin: clamp(16px, 2vh, 28px) 0 10px;
  color: var(--g);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 9vw, 160px);
  font-weight: 600;
  line-height: 0.92;
  text-wrap: balance;
}
.nrq-live-detail {
  margin: 12px 0 0;
  color: #6f7772;
  font-size: clamp(14px, 1.5vw, 25px);
}
.nrq-live-stage.is-waiting .nrq-live-name {
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 500;
}
.nrq-live-stage.guest-arrived .nrq-live-overline {
  animation: fadeDown 0.8s ease both;
}
.nrq-live-stage.guest-arrived .nrq-live-name {
  animation: guestIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.nrq-live-stage.guest-arrived .nrq-live-detail {
  animation: fadeUp 0.8s 0.2s ease both;
}
.nrq-live footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid rgba(92, 108, 99, 0.16);
  color: #78817c;
  font-size: clamp(10px, 0.85vw, 14px);
}
.nrq-live footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.nrq-live footer i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5c9a6c;
  box-shadow: 0 0 0 5px rgba(92, 154, 108, 0.13);
  animation: pulse 1.8s infinite;
}
.nrq-live-total {
  display: flex !important;
  align-items: baseline;
  gap: 8px;
}
.nrq-live-total b {
  color: var(--g);
  font-size: clamp(24px, 2vw, 36px);
}
.nrq-live-clock {
  justify-self: end;
  color: var(--g);
  font-size: clamp(16px, 1.5vw, 25px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.nrq-live-fullscreen {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 25px;
  padding: 9px 14px;
  border: 1px solid rgba(92, 108, 99, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--g);
  font:
    600 10px Poppins,
    sans-serif;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.nrq-live.is-idle {
  grid-template-rows: 1fr 0 auto;
}
.nrq-live.is-idle header {
  align-self: center;
}
.nrq-live.is-idle header h1 {
  margin: 18px 0 14px;
  font-size: clamp(58px, 7vw, 118px);
}
.nrq-live.is-idle header small {
  font-size: clamp(11px, 1vw, 16px);
}
.nrq-live.is-idle .nrq-live-event-meta {
  font-size: clamp(14px, 1.35vw, 22px);
}
.nrq-live.is-idle .nrq-live-stage {
  min-height: 0;
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.nrq-live header,
.nrq-live-stage {
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.nrq-live-denied {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  gap: 10px;
  background: #f4f0e9;
  color: #5c6c63;
  font:
    14px Poppins,
    sans-serif;
}
.nrq-live-denied b {
  font-size: 26px;
}
.nrq-live-denied span {
  color: #7c847f;
}
@keyframes guestIn {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    filter: blur(9px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(92, 154, 108, 0);
  }
}
@media (max-width: 700px) {
  .nrq-live {
    padding: 25px 18px;
  }
  .nrq-live footer {
    grid-template-columns: 1fr 1fr;
  }
  .nrq-live-total {
    display: none !important;
  }
  .nrq-live-name {
    font-size: clamp(50px, 15vw, 82px);
  }
  .nrq-live-fullscreen {
    top: 12px;
    right: 12px;
  }
  .nrq-live header small {
    margin-top: 14px;
  }
  .nrq-live-event-meta {
    flex-direction: column;
    gap: 3px;
    width: min(92vw, 390px);
    border-radius: 20px;
  }
  .nrq-live-event-meta i {
    display: none;
  }
}
