:root {
  color-scheme: dark;
  --bg: #07070d;
  --bg-soft: #12121f;
  --text: #f8f4ff;
  --muted: #a99fbd;
  --pink: #ff3d8a;
  --pink-2: #ff7ac8;
  --cyan: #56d7ff;
  --gold: #ffd166;
  --danger: #ff4d4d;
  --board: rgba(255, 255, 255, 0.08);
  --board-border: rgba(255, 255, 255, 0.18);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 61, 138, 0.28), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(86, 215, 255, 0.22), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 209, 102, 0.13), transparent 36%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
  display: grid;
  align-content: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}

.hero {
  text-align: center;
}

.title {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.08rem, 0.8vw, 0.28rem);
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.title__letter {
  display: inline-block;
  color: transparent;
  background: linear-gradient(180deg, #fff, var(--pink-2) 42%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255, 61, 138, 0.62));
  animation: floatLetter 3.8s ease-in-out infinite;
}

.title__letter:nth-child(2n) {
  animation-delay: -0.45s;
}

.title__letter:nth-child(3n) {
  animation-delay: -1.1s;
}

.title__letter:nth-child(5n) {
  animation-delay: -1.75s;
}

.subtitle {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 0;
  font-size: clamp(1.15rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 61, 138, 0.35);
}

.shame-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--board-border);
  border-radius: clamp(1.25rem, 4vw, 2rem);
  padding: clamp(1rem, 3vw, 1.75rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(45deg, rgba(255, 61, 138, 0.12), rgba(86, 215, 255, 0.08));
  box-shadow:
    0 28px 90px var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.shame-board::before,
.shame-board::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  top: 18px;
  background: radial-gradient(circle at 35% 35%, #fff, var(--gold) 38%, #a76400 78%);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.45);
}

.shame-board::before {
  left: 22px;
}

.shame-board::after {
  right: 22px;
}

.board__header {
  position: relative;
  display: grid;
  gap: 0.35rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.board__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  letter-spacing: 0.04em;
}

.board__hint {
  margin: 0;
  color: var(--muted);
}

.participants {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.participant-card {
  min-height: 8.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  padding: 1.15rem;
  cursor: pointer;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 20% 20%, rgba(255, 61, 138, 0.28), transparent 42%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.participant-card:hover,
.participant-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 200, 0.72);
  box-shadow: 0 18px 44px rgba(255, 61, 138, 0.24);
  outline: none;
}

.participant-card.is-active {
  border-color: rgba(86, 215, 255, 0.85);
  background:
    linear-gradient(145deg, rgba(86, 215, 255, 0.22), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 20% 20%, rgba(86, 215, 255, 0.32), transparent 42%);
  box-shadow: 0 0 0 1px rgba(86, 215, 255, 0.2), 0 20px 46px rgba(86, 215, 255, 0.2);
}

.participant-card__handle {
  display: block;
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.participant-card__tag {
  display: inline-flex;
  margin-top: 0.55rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: #101019;
  background: var(--gold);
  font-size: 0.85rem;
  font-weight: 850;
}

.evidence {
  position: relative;
  min-height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.35rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(0, 0, 0, 0.22);
}

.evidence__empty {
  min-height: 15rem;
  display: grid;
  place-items: center;
  gap: 0.7rem;
  color: var(--muted);
  text-align: center;
}

.evidence__icon {
  color: var(--pink-2);
  font-size: 2.4rem;
  text-shadow: 0 0 20px rgba(255, 122, 200, 0.5);
}

.evidence__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.evidence__reason {
  margin: 0.9rem 0 0;
  color: #ffdce7;
  font-weight: 750;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-card {
  display: grid;
  gap: 0.7rem;
}

.media-card__label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

video,
.screenshot {
  width: 100%;
  border-radius: 1rem;
  background: #05050a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.screenshot {
  display: block;
  object-fit: contain;
  max-height: 36rem;
}

@keyframes floatLetter {
  0%, 100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-0.55rem) rotate(2deg) scale(1.04);
  }
}

@media (max-width: 760px) {
  .participants,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .title {
    letter-spacing: -0.09em;
  }

  .shame-board {
    padding: 0.85rem;
  }

  .shame-board::before,
  .shame-board::after {
    width: 11px;
    height: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .title__letter {
    animation: none;
  }

  .participant-card {
    transition: none;
  }
}
