body.screen-body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 79, 163, 0.26), transparent 22%),
    radial-gradient(circle at 85% 85%, rgba(45, 211, 111, 0.18), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0a0811 100%);
}

.screen-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 340px;
}

.screen-shell::before,
.screen-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
}

.screen-shell::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 79, 163, 0.28);
  top: -120px;
  right: -110px;
}

.screen-shell::after {
  width: 380px;
  height: 380px;
  background: rgba(45, 211, 111, 0.14);
  bottom: -120px;
  left: -120px;
}

.screen-main,
.screen-side {
  position: relative;
  z-index: 1;
  padding: 44px;
}

.screen-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.screen-brand {
  font-family: "Anton", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-event-meta {
  text-align: right;
  color: rgba(255, 255, 255, 0.74);
}

.screen-message {
  display: grid;
  gap: 24px;
  max-width: 1000px;
}

.screen-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.screen-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screen-priority {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.screen-priority.hot {
  background: rgba(255, 79, 163, 0.16);
  border-color: rgba(255, 79, 163, 0.34);
}

.screen-priority.featured {
  background: rgba(255, 215, 90, 0.12);
  border-color: rgba(255, 215, 90, 0.3);
}

.screen-priority.funny {
  background: rgba(45, 211, 111, 0.14);
  border-color: rgba(45, 211, 111, 0.28);
}

.screen-text {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.screen-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.screen-footer strong {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.screen-footer p {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.screen-progress {
  margin-top: 20px;
  height: 8px;
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.screen-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #ff4fa3 0%, #ff8fc6 48%, #2dd36f 100%);
  box-shadow: 0 0 18px rgba(255, 79, 163, 0.35);
}

.screen-side {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.screen-side h2 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
}

.queue-list {
  display: grid;
  gap: 12px;
}

.queue-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.queue-item.hot {
  border-color: rgba(255, 79, 163, 0.28);
}

.queue-item.featured {
  border-color: rgba(255, 215, 90, 0.3);
}

.queue-item.funny {
  border-color: rgba(45, 211, 111, 0.3);
}

.queue-item strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.86);
}

.queue-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.screen-qr {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.screen-qr-visual {
  display: grid;
  place-items: center;
  margin: 18px 0;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.screen-qr-visual img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.screen-join-url {
  margin-top: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  word-break: break-word;
}

.pulse {
  animation: pulse 700ms ease;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .screen-shell {
    grid-template-columns: 1fr;
  }

  .screen-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .screen-main,
  .screen-side {
    padding: 24px;
  }

  .screen-footer,
  .screen-head {
    flex-direction: column;
    align-items: start;
  }

  .screen-meta-row {
    align-items: start;
  }

  .screen-event-meta {
    text-align: left;
  }
}
