:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #d9f4f8;
  color: #17313b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #96dce8 0%, #ecfbff 58%, #ffffff 100%);
}

.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(360px, 56vh) auto;
}

.character-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(180deg, #8ed9e7 0%, #cdf4fa 100%);
}

#character {
  display: block;
  width: 100%;
  height: 100%;
}

.games-panel {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 22px 18px 34px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #527480;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(36px, 10vw, 70px);
  line-height: 0.95;
}

h2 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 22px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.stats span {
  padding: 8px 10px;
  border: 1px solid rgba(23, 49, 59, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.game-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 2px solid rgba(23, 49, 59, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(35, 77, 91, 0.14);
}

.game-row strong {
  display: block;
  font-size: 22px;
}

.game-row p {
  margin-top: 4px;
  color: #527480;
  font-weight: 700;
}

.game-row a {
  padding: 12px 18px;
  border-radius: 8px;
  background: #1f86ff;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}
