:root {
  --bg1: #170027;
  --bg2: #310041;
  --cyan: #00efff;
  --lime: #c2ff2e;
  --ink: #f9e9ff;
  --shadow: rgba(255, 0, 140, 0.35);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, #ff76e0 0%, transparent 28%),
    radial-gradient(circle at 90% 20%, #69d6ff 0%, transparent 26%),
    linear-gradient(160deg, var(--bg1), var(--bg2) 45%, #100019 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.03) 50%);
  background-size: 100% 2px;
  opacity: 0.4;
}

.page-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  position: relative;
}

.window {
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow:
    0 0 0 2px #53006f,
    0 0 20px var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.24));
}

.hero {
  margin-bottom: 16px;
  overflow: hidden;
}

.window-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(90deg, #7f18ff, #ff3ed5 65%, #41dbff);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.window-titlebar p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #100018;
}

.dot {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-block;
}

.dot.pink {
  background: #ff63d5;
}

.dot.cyan {
  background: #57ecff;
}

.dot.lime {
  background: #c6ff54;
}

.hero-body {
  padding: 24px 14px 18px;
  text-align: center;
}

.pixel-tag {
  margin: 0 0 10px;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1,
h2 {
  margin-top: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 8vw, 4rem);
  text-shadow:
    0 0 5px #ff57d8,
    0 0 14px #ff57d8,
    0 0 28px #58e9ff;
}

h2 {
  color: var(--cyan);
  font-size: 1rem;
}

.blink {
  margin: 6px 0 14px;
  font-weight: 700;
  color: #fff584;
  animation: blink 1s step-start infinite;
}

marquee {
  font-weight: 700;
  color: #ffcbf3;
}

marquee span {
  margin-right: 24px;
}

.simple-grid {
  display: grid;
  gap: 14px;
}

.audio-controls {
  display: flex;
  justify-content: center;
  margin: 0 0 14px;
}

.play-button {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(120deg, #7a1dff, #ff3dc9);
  cursor: pointer;
  box-shadow:
    0 0 0 2px #53006f,
    0 0 14px rgba(255, 70, 195, 0.55);
}

.play-button:hover {
  filter: brightness(1.08);
}

.play-button:active {
  transform: translateY(1px);
}

.content,
.counter-wrap,
.footer {
  padding: 12px;
}

.content p {
  line-height: 1.6;
  margin-top: 0;
}

.stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.stamp {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  background: linear-gradient(120deg, rgba(98, 26, 212, 0.5), rgba(255, 71, 198, 0.5));
}

.counter-wrap p {
  margin: 2px 0 4px;
  font-size: 1.15rem;
}

.counter {
  display: inline-block;
  border: 2px inset #ffffff;
  background: #000;
  color: #63ff92;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  font-family: "Courier New", monospace;
}

.footer {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  color: #ffcbf3;
}

@keyframes blink {
  50% {
    opacity: 0.15;
  }
}
