:root {
  --bg: #f4efe7;
  --bg-accent: #eadfce;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: #fff9f2;
  --text: #1f1a17;
  --muted: #665b52;
  --line: rgba(31, 26, 23, 0.12);
  --shadow: 0 18px 40px rgba(48, 34, 18, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --template-classic: #f9f3e8;
  --template-clean: #f1f5f9;
  --template-party: #fff2d8;
  --accent: #c9652b;
  --accent-dark: #9c4b1d;
  --success: #1f7a5c;
  --result-bg: var(--bg);
  --result-bg-accent: var(--bg-accent);
  --result-surface: var(--surface);
  --result-panel: var(--surface-strong);
  --result-accent: var(--accent);
  --result-text: var(--text);
  --result-muted: var(--muted);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg-accent));
  overflow-x: hidden;
}

body.result-themed {
  color: var(--result-text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(135deg, var(--result-bg), var(--result-bg-accent));
}

button,
a {
  font: inherit;
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
