:root {
  --orange: #ff4500;
  --bright: #ff6a00;
  --yellow: #ffb347;
  --bg: #0a0500;
  --card: #110800;
  --border: #3a1a00;
  --text: #e8d5b0;
  --muted: #8a6a50;
  --dim: #4a3020;
  --fd: "Cinzel Decorative", serif;
  --fu: "Orbitron", monospace;
  --fb: "Rajdhani", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 50% 85%,
      rgba(58, 13, 0, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 50% 105%,
      rgba(255, 69, 0, 0.13) 0%,
      transparent 50%
    ),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF4500' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347, #ff4500);
  box-shadow: 0 0 6px #ff4500;
  animation: ember var(--dur, 3s) ease-out var(--delay, 0s) infinite;
}


::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}