:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #060805;
  color: #f5f7ef;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #060805;
}

body {
  min-width: 320px;
}

.shell {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: radial-gradient(circle at 0 0, rgba(176, 255, 116, 0.16), transparent 34%), #060805;
}

.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px clamp(12px, 3vw, 28px);
  border-bottom: 1px solid rgba(245, 247, 239, 0.1);
  background: rgba(6, 8, 5, 0.9);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: block;
}

.brand strong {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.switcher {
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(245, 247, 239, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.player-button {
  min-width: 82px;
  height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(245, 247, 239, 0.68);
  background: transparent;
}

.player-button.is-active {
  color: #10140c;
  background: linear-gradient(135deg, #fdff8a, #b0ff74);
}

.player-shell {
  position: relative;
  width: 100%;
  min-height: 0;
  background: #000;
}

iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(245, 247, 239, 0.72);
  background: #000;
}

.status.is-hidden {
  display: none;
}

@media (max-width: 420px) {
  .topbar {
    min-height: 62px;
    gap: 10px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .brand strong {
    font-size: 18px;
  }

  .player-button {
    min-width: 70px;
    height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
}
