:root {
  --bg-primary: #060911;
  --bg-secondary: #0c121e;
  --gold-primary: #d4af37;
  --gold-gradient: linear-gradient(
    135deg,
    #f6e27a 0%,
    #cb9b51 50%,
    #9a6d2c 100%
  );
  --gold-border: rgba(212, 175, 55, 0.4);
  --text-light: #e6ebf5;
  --text-muted: #8a99ad;
  --font-serif: "Cinzel", serif;
  --font-sans: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Background Ambient Glows */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Background Ambient Glows */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(16, 75, 120, 0.25) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-bottom {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 90, 140, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  bottom: 0;
  right: -100px;
}

/* Sacred Geometry Emblem Behind Hero */
.sacred-emblem-container {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(93, 185, 255, 0.35);
  box-shadow: 0 0 15px rgba(93, 185, 255, 0.15);
}

.outer-ring {
  width: 460px;
  height: 460px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  animation: slow-spin 90s linear infinite;
}

.middle-ring {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(93, 185, 255, 0.4);
  box-shadow: 0 0 25px rgba(16, 75, 120, 0.4);
  animation: counter-spin 60s linear infinite;
}

.inner-ring {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  transform: rotate(45deg);
}

.core-flare {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(93, 185, 255, 0.6) 30%,
    transparent 70%
  );
  filter: blur(10px);
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counter-spin {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
