@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Roboto+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;700&display=swap");

html,
body {
  position: relative;
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
  color: #2d2a28;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top, rgba(233, 116, 82, 0.12), transparent 35%),
    linear-gradient(180deg, #fff9f6 0%, #f5f5f5 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

#app,
body > div {
  width: 100%;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.player-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.08);
}

.player-controls button {
  min-width: 2rem;
  min-height: 2rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #e97452;
  color: white;
  cursor: pointer;
}

@media (max-width: 700px) {
  body {
    padding: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .player-controls {
    width: 100%;
    justify-content: space-between;
  }
}
