:root {
  color-scheme: dark;
}

html,
body {
  background: #0a0a0a;
  color: #faf7ed;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(201, 162, 39, 0.07), transparent 25%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.06), transparent 35%);
}

* {
  border-color: rgba(212, 175, 55, 0.2);
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-text {
  background: linear-gradient(120deg, #f3da8f 0%, #d4af37 45%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lux-panel {
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.95) 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.gold-shimmer {
  position: relative;
  overflow: hidden;
}

.gold-shimmer::after {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(212, 175, 55, 0.2) 50%,
    transparent 65%
  );
  transform: translateX(-65%) rotate(10deg);
  animation: gold-shimmer-move 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gold-shimmer-move {
  0% {
    transform: translateX(-65%) rotate(10deg);
  }
  100% {
    transform: translateX(65%) rotate(10deg);
  }
}

.luxury-shimmer-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.75);
  color: #fffdf4;
  background: linear-gradient(
    120deg,
    #1a1408 0%,
    #3a2c0e 24%,
    #6f5517 45%,
    #3a2c0e 66%,
    #151008 100%
  );
  background-size: 220% 220%;
  animation: luxury-flow 6.5s ease-in-out infinite;
  box-shadow:
    0 0 16px rgba(212, 175, 55, 0.24),
    inset 0 0 10px rgba(255, 232, 175, 0.05);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.luxury-shimmer-btn:hover {
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.34),
    inset 0 0 16px rgba(255, 232, 175, 0.1);
}

@keyframes luxury-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.premium-brand-glow {
  background: linear-gradient(
    110deg,
    #b98b2a 0%,
    #f0cd6a 35%,
    #fff0bd 50%,
    #d1a238 70%,
    #ad7f23 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: luxury-flow 6.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.18);
}

.salary-gold-flow {
  background: linear-gradient(
    100deg,
    #9f7419 0%,
    #d6a93a 24%,
    #f8e3a1 40%,
    #c7932a 57%,
    #f3d27b 74%,
    #9a7118 100%
  );
  background-size: 240% 240%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: salary-gold-shift 8.8s linear infinite;
  -webkit-text-stroke: 0.2px rgba(255, 236, 178, 0.3);
  letter-spacing: 0.008em;
}

.light-beam-top {
  position: relative;
}

.light-beam-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -64px;
  width: min(860px, 92vw);
  height: 160px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.22) 0%,
    rgba(212, 175, 55, 0.12) 30%,
    rgba(212, 175, 55, 0.05) 55%,
    transparent 78%
  );
  filter: blur(10px);
}

@keyframes salary-gold-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
::selection {
  background: rgba(212,175,55,.28);
  color: #fff7d6;
}
