:root {
  color-scheme: dark;
  font-family: Georgia, "Times New Roman", serif;
  background: #100d13;
  color: #eadfce;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(111, 34, 45, 0.32), transparent 42rem),
    linear-gradient(#171019, #09070a);
}

main {
  width: min(100%, 840px);
  margin: 0 auto;
  padding: 22px 20px 40px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

p {
  margin: 5px 0 0;
  color: #a99383;
  font-family: system-ui, sans-serif;
  font-size: 13px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
}

button {
  border: 1px solid #6c4a48;
  border-radius: 4px;
  padding: 7px 11px;
  background: #26191d;
  color: #e7d5c3;
  cursor: pointer;
}

button:hover {
  background: #392127;
}

#player-shell {
  width: 800px;
  max-width: 100%;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #3b2a2e;
  background: #070608;
  box-shadow: 0 18px 60px #000;
}

ruffle-player {
  display: block;
  max-width: 100%;
}

details {
  margin-top: 14px;
  color: #9d8d82;
  font-family: system-ui, sans-serif;
  font-size: 12px;
}

pre {
  max-height: 180px;
  overflow: auto;
  white-space: pre-wrap;
}
