:root{
  --bg: #070707;
  --panel: rgba(255,255,255,.03);
  --text: #f2f0ed;
  --muted: #c9c3bc;
  --red: #c73a3a;
  --red2: #a62828;
  --line: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(199,58,58,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 20%, rgba(199,58,58,.10), transparent 60%),
              var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }

:where(a, button, [role="button"], input, select, textarea):focus-visible{
  outline: 2px solid rgba(199,58,58,.95);
  outline-offset: 3px;
}

.wrap{
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: 18px 0 26px;
}

.title{
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

.player{
  overflow:hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
  box-shadow: var(--shadow);
}

.platforms{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.platform{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(199,58,58,.55);
  background: linear-gradient(180deg, var(--red), var(--red2));
  font-weight: 900;
  letter-spacing: .03em;
  color: rgba(242,240,237,.92);
  box-shadow: 0 18px 50px rgba(199,58,58,.25), 0 10px 28px rgba(0,0,0,.45);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  min-height: 64px;
}
.platform:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.28);
}

.foot{
  text-align:center;
  margin-top: 14px;
  color: rgba(242,240,237,.68);
  font-size: .95rem;
}
.foot__link{
  border-bottom: 1px dotted rgba(242,240,237,.35);
}
.foot__link:hover{
  border-bottom-color: rgba(199,58,58,.85);
}

@media (max-width: 520px){
  .platform{
    padding: 17px 14px;
    min-height: 62px;
  }
}
