/* ==========================================================
   PAYCHEATS — MIDNIGHT CYBER PURPLE DESIGN SYSTEM
   Accent: Neon Purple #8B5CF6 / Violet #7C3AED | Base: Deep Dark #09090c
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Core Palette — Cyber Purple */
  --accent:          #8B5CF6;
  --accent-dim:      #7C3AED;
  --accent-light:    #A78BFA;
  --accent-glow:     rgba(139, 92, 246, 0.28);
  --accent-border:   rgba(139, 92, 246, 0.3);
  --accent-bg:       rgba(139, 92, 246, 0.12);
  --ink:             #ffffff;          /* text on purple buttons */

  /* Backgrounds */
  --bg-main:         #09090d;
  --bg-elevated:     #111116;
  --bg-card:         rgba(18, 18, 24, 0.85);
  --bg-card-hover:   rgba(24, 24, 32, 0.95);
  --bg-card-solid:   #121218;
  --bg-modal:        #0e0e14;

  /* Text */
  --text-main:       #f5f3f8;
  --text-muted:      #9CA0AA;
  --text-dim:        #5c6070;

  /* Borders */
  --border-subtle:   rgba(255, 255, 255, 0.08);
  --border-glow:     rgba(139, 92, 246, 0.45);

  /* Status */
  --status-green:       #22c55e;
  --status-green-glow:  rgba(34, 197, 94, 0.4);
  --status-yellow:      #eab308;
  --status-red:         #ef4444;

  /* Typography */
  --font:            'Inter', system-ui, sans-serif;
  --display:         'Space Grotesk', 'Inter', sans-serif;
  --mono:            'JetBrains Mono', monospace;

  --radius:          14px;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Body ── */
body {
  font-family: var(--font);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.08), transparent 40%),
    linear-gradient(180deg, #0d0c14 0%, #09090d 100%);
  background-attachment: fixed;
}

/* ── Typography Helpers ── */
.font-display {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.font-mono {
  font-family: var(--mono);
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar        { width: 8px; height: 8px; }
::-webkit-scrollbar-track  { background: #09090c; }
::-webkit-scrollbar-thumb  { background: rgba(139, 92, 246, 0.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, 0.7); }

/* ── Glass Navigation ── */
.glass-nav {
  background: rgba(9, 9, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

/* ── Glass Cards ── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -10px rgba(139, 92, 246, 0.25);
}

/* ── Primary Button (Purple) ── */
.btn-purple {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: var(--ink);
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4);
  transition: all 0.25s ease;
}
.btn-purple:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 32px rgba(139, 92, 246, 0.6);
  transform: scale(1.02) translateY(-1px);
}

/* ── Ghost / Outline Button ── */
.btn-outline-purple {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent-light);
  transition: all 0.2s ease;
}
.btn-outline-purple:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.6);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* ── Status Pill ── */
.status-pill {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Pulsing Status Dot ── */
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--status-green);
  box-shadow: 0 0 8px var(--status-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%   { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { transform: scale(1.1);  opacity: 1;   box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ── Stepper Timeline ── */
.stepper-track { position: relative; }
.stepper-track::before {
  content: '';
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(139, 92, 246, 0.2) 100%);
  z-index: 1;
}

.stepper-node {
  position: relative;
  z-index: 2;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-modal);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
}

.stepper-node-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Diamond Badges ── */
.diamond-wrapper {
  position: relative;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-shape {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  transform: rotate(45deg);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.diamond-wrapper:hover .diamond-shape {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.45);
  transform: rotate(45deg) scale(1.1);
}

/* ── Review Cards ── */
.review-card {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(24, 24, 32, 0.9);
  transform: translateY(-3px);
}

/* ── Articles / SEO List ── */
.article-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  transition: all 0.25s ease;
}
.article-item:hover {
  border-color: var(--border-glow);
  padding-left: 8px;
}
.article-item:hover h4 {
  color: var(--accent);
}

/* ── Modal Backdrop ── */
.modal-backdrop {
  background: rgba(4, 4, 6, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal-content-box {
  background: var(--bg-modal);
  border: 1px solid var(--accent-border);
  box-shadow:
    0 25px 60px -15px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(139, 92, 246, 0.2);
}

/* ── Active Category Pill ── */
.cat-pill.active {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  border-color: transparent;
  font-weight: 700;
}

/* ── Misc helpers ── */
.muted { color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

/* ── Announcement Bar Text Animations ── */
@keyframes annShimmerSweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.ann-anim-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, #ffffff 35%, #fffb8f 50%, #ffffff 65%, rgba(255,255,255,0.88) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: annShimmerSweep 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  display: inline-block;
}

@keyframes annPulseGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  }
  50% {
    transform: scale(1.025);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 25px var(--accent-light));
  }
}
.ann-anim-pulse {
  display: inline-block;
  animation: annPulseGlow 2.4s ease-in-out infinite;
}

@keyframes annFloatWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3.5px); }
}
.ann-anim-bounce {
  display: inline-block;
  animation: annFloatWave 2.2s ease-in-out infinite;
}

@keyframes annMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ann-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: annMarqueeScroll 28s linear infinite;
}
.ann-marquee-track:hover {
  animation-play-state: paused;
}

