:root {
  --bg-deep: #0b0614;
  --bg-panel: rgba(14, 8, 26, 0.94);
  --panel-glow: rgba(255, 252, 196, 0.25);
  --card: rgba(80, 70, 30, 0.35);
  --card-soft: rgba(50, 40, 18, 0.6);
  --accent: #FFFCC4;
  --accent-2: #E8E2A2;
  --neon: #FFD84A;
  --text-main: #fffdf4;
  --text-muted: #efe4b8;
  --line: rgba(255, 240, 170, 0.35);
}

* {
  box-sizing: border-box;
  font-family: "Rajdhani", "Oxanium", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 252, 196, 0.28), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(255, 216, 74, 0.22), transparent 50%),
    linear-gradient(180deg, #0a0910, #0b0a14 35%, #07060c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  opacity: 0.5;
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(12, 4, 25, 0.4), rgba(4, 2, 9, 0.9) 60%);
  pointer-events: none;
}

.scene {
  width: min(1200px, 95vw);
  position: relative;
  z-index: 1;
}

svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

body.custom-cursor-enabled,
body.custom-cursor-enabled * {
  cursor: none !important;
}

#vbgCustomCursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter:
    drop-shadow(0 0 6px rgba(255, 252, 196, 0.55))
    drop-shadow(0 0 14px rgba(255, 216, 74, 0.35));
  will-change: transform, opacity;
  transition: opacity 80ms ease;
}

#vbgCustomCursor.is-hover {
  transform: translate(-50%, -50%) scale(1.18);
}

#vbgCustomCursor.is-down {
  transform: translate(-50%, -50%) scale(0.92);
}

#vbgCustomCursor.is-hidden {
  opacity: 0;
}
