:root {
  --color-background: #040506;
  --color-background-soft: #0b0d10;
  --color-surface: rgba(16, 18, 22, 0.92);
  --color-surface-strong: rgba(19, 22, 28, 0.98);
  --color-surface-soft: rgba(255, 255, 255, 0.03);
  --color-line: rgba(255, 255, 255, 0.08);
  --color-line-soft: rgba(255, 255, 255, 0.05);
  --color-text: #f7f5ef;
  --color-muted: #b9bec7;
  --color-muted-2: #8f96a3;
  --color-gold: #e3b74a;
  --color-gold-soft: #f7deb0;
  --color-gold-deep: #a7791a;
  --color-emerald: #8fd46b;
  --color-blue: #7aa7ff;
  --color-red: #ff6767;
  --shadow-main: 0 24px 64px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.36);
  --radius-xxl: 32px;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container-width: min(1240px, calc(100vw - 32px));
}
html, body {
  background:
    radial-gradient(circle at 10% 5%, rgba(227, 183, 74, 0.12), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(143, 212, 107, 0.10), transparent 25%),
    linear-gradient(180deg, #050607 0%, #030303 100%);
  color: var(--color-text);
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
}
body {
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  opacity: 0.38;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 92%);
}
body::after {
  content: "";
  position: fixed;
  right: -25vw;
  bottom: -25vw;
  width: 44vw;
  height: 44vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(227, 183, 74, 0.12), transparent 70%);
  filter: blur(34px);
  pointer-events: none;
}
html[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}
