/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-gold: #ffb703;
  --gold-glow: rgba(255, 183, 3, 0.45);
  --gold-gradient: linear-gradient(135deg, #ffe259 0%, #ffa751 100%);
  --neon-cyan: #00f0ff;
  --neon-purple: #9d4edd;
  --bg-dark: #07090f;
  --text-primary: #ffffff;
  --text-secondary: #a3aed0;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background layers */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(1.15) brightness(0.7) contrast(1.1);
  transform: scale(1.02);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(10, 14, 26, 0.4) 0%,
    rgba(7, 9, 15, 0.78) 60%,
    rgba(4, 5, 8, 0.95) 100%
  );
  backdrop-filter: blur(1px);
}

.radial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.6;
}

.glow-1 {
  width: 550px;
  height: 550px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 183, 3, 0.25) 0%, rgba(255, 153, 0, 0.05) 70%, transparent 100%);
}

.glow-2 {
  width: 450px;
  height: 450px;
  bottom: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
}

.glow-3 {
  width: 450px;
  height: 450px;
  top: 15%;
  right: 12%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Page Layout - Perfectly Centered */
.page-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: auto 0;
}

/* Promo Tag */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.45);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffe082;
  margin-bottom: 2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.2);
  animation: floatBadge 3s ease-in-out infinite;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Headline */
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 2.75rem;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 15%, #ffd066 55%, #ff9e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  text-shadow: 0 0 45px rgba(255, 183, 3, 0.35);
}

/* Center CTA Button */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.primary-glow-btn {
  display: inline-block;
  text-decoration: none;
  position: relative;
  border-radius: 50px;
  padding: 3px;
  background: linear-gradient(90deg, #ff9e00, #ffd200, #ff5e62, #ff9e00);
  background-size: 300% 300%;
  animation: gradientBorder 4s linear infinite;
  box-shadow: 0 12px 45px rgba(255, 158, 0, 0.5), 0 0 25px rgba(255, 210, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

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

.btn-inner {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.35rem 3.4rem;
  border-radius: 48px;
  background: #0f1118;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.primary-glow-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 55px rgba(255, 158, 0, 0.7), 0 0 40px rgba(255, 210, 0, 0.55);
}

.primary-glow-btn:hover .btn-inner {
  background: linear-gradient(135deg, #ffa751 0%, #ffe259 100%);
  color: #0b0c10;
}

.primary-glow-btn:hover .btn-arrow {
  transform: translateX(6px);
}

.primary-glow-btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  z-index: 3;
  animation: shineSweep 3.5s infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0% { left: -100%; }
  25%, 100% { left: 160%; }
}

/* Mobile responsive */
@media (max-width: 640px) {
  .btn-inner {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
  }
}
