*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #120b0d;
  --bg-secondary: #1a1013;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);

  --text-main: #fffaf4;
  --text-soft: #e8ddd2;
  --text-muted: #bdaea1;

  --accent: #c1121f;
  --accent-dark: #5f0f14;
  --accent-gold: #d4a64f;
  --accent-ivory: #fff8ec;

  --shadow-main: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --transition-fast: 0.18s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(193, 18, 31, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(212, 166, 79, 0.08), transparent 24%),
    linear-gradient(180deg, #0d0809 0%, #140c0f 45%, #1a1013 100%);
}

h1, h2, h3, p {
  margin-top: 0;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}