/* ═══════════════════════════════════════════════
   CheatLib — Style Variables & Global Reset
   ═══════════════════════════════════════════════ */

:root {
  --bg:            #07070c;
  --bg-card:       #0d0d16;
  --bg-card-hover: #14142a;
  --text:          #f0f0f0;
  --text-muted:    #8a8a9a;
  --accent:        #a0c4ff;
  --accent-glow:   rgba(160, 196, 255, 0.55);
  --accent-dim:    rgba(160, 196, 255, 0.15);
  --accent-strong: rgba(160, 196, 255, 0.85);
  --border:        rgba(160, 196, 255, 0.08);
  --border-hover:  rgba(160, 196, 255, 0.45);
  --radius:        10px;
  --radius-sm:     6px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:         60px;
  --max-w:         1200px;
  --green:         #4cff8e;
  --yellow:        #ffe14c;
  --red:           #ff4c4c;
}

/* ──── Reset ──── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
code {
  background: rgba(255,255,255,0.06);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.9em;
}
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   Animated Grid Background — stronger wireframe
   ═══════════════════════════════════════════════ */
#grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* Secondary overlay wireframe grid via CSS */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(160,196,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,196,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Ambient floating particles via pseudo */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(160,196,255,0.2), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(160,196,255,0.15), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(160,196,255,0.12), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(160,196,255,0.18), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(160,196,255,0.1), transparent);
  animation: ambientFloat 12s ease-in-out infinite alternate;
}
@keyframes ambientFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-15px) scale(1.05); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   Intro Overlay — Cinematic Icon Reveal
   ═══════════════════════════════════════════════ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030306;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
  overflow: hidden;
}
#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Vignette */
#intro-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
}

/* Particle canvas */
#intro-sparks {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Flash */
#intro-flash {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: rgba(180,220,255,0.9);
  opacity: 0;
  pointer-events: none;
}
#intro-flash.flash {
  animation: introFlash 0.45s ease-out forwards;
}
@keyframes introFlash {
  0%   { opacity: 0.65; }
  100% { opacity: 0; }
}

/* Sweeping accent lines */
.intro-line {
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--accent), rgba(0,229,255,0.6), var(--accent), transparent);
}
.intro-line-1 {
  top: 30%;
  animation: lineSweep 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro-line-2 {
  top: 50%;
  animation: lineSweep 0.9s 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro-line-3 {
  top: 70%;
  animation: lineSweep 0.8s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes lineSweep {
  0%   { transform: scaleX(0); opacity: 0.7; }
  50%  { transform: scaleX(1); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 0; }
}

/* Content wrapper */
#intro-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 180px;
  height: 180px;
}

/* Glow background behind icon */
#intro-glow-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, rgba(0,229,255,0.06) 40%, transparent 70%);
  opacity: 0;
  transform: scale(0.3);
  animation: glowBgIn 1.2s 0.15s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes glowBgIn {
  0%   { opacity: 0; transform: scale(0.3); }
  60%  { opacity: 1; }
  100% { opacity: 0.8; transform: scale(1); }
}

/* Expanding ring */
#intro-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,229,255,0.5);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: ringPulse 1.4s 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes ringPulse {
  0%   { opacity: 0; transform: scale(0.8); }
  20%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(3.5); }
}

/* Minecraft icon — no squash, no rotation */
#intro-mc-icon {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: scale(0.92);
  will-change: transform, opacity;
  animation: iconIn 0.7s 0.1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
#intro-mc-icon.icon-glow {
  animation: iconIn 0.7s 0.1s cubic-bezier(0.25, 1, 0.5, 1) forwards,
             iconBreathe 1s 0.8s ease-in-out forwards;
}
@keyframes iconIn {
  0%   { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes iconBreathe {
  0%   { filter: drop-shadow(0 0 8px rgba(0,229,255,0.3)); }
  50%  { filter: drop-shadow(0 0 28px rgba(0,229,255,0.6)) drop-shadow(0 0 60px rgba(0,229,255,0.2)); }
  100% { filter: drop-shadow(0 0 12px rgba(0,229,255,0.35)); }
}

#intro-skip {
  position: absolute;
  bottom: 40px;
  z-index: 20;
  padding: 8px 24px;
  border: 1px solid rgba(160, 196, 255, 0.15);
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
#intro-skip:hover {
  color: #fff;
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════
   Navbar
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(7, 7, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 40px rgba(160, 196, 255, 0.05);
  transition: opacity 0.5s var(--ease);
  animation: navSlideDown 0.6s var(--ease);
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── Announcement Bar ── */
#announcement-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  background: linear-gradient(90deg, rgba(0,229,255,0.12) 0%, rgba(0,229,255,0.06) 50%, rgba(0,229,255,0.12) 100%);
  border-bottom: 1px solid rgba(0,229,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: announcementSlide 0.4s var(--ease);
}
#announcement-bar.hidden { display: none; }
@keyframes announcementSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.announcement-text {
  font-size: 0.82rem;
  color: rgba(224,232,255,0.85);
  letter-spacing: 0.02em;
}
.announcement-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-text a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--accent-glow);
}
#announcement-close {
  background: none;
  border: none;
  color: rgba(224,232,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}
#announcement-close:hover { color: #fff; }

/* Push main content down when announcement is visible */
body.has-announcement #app {
  padding-top: 36px;
}

.nav-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  transition: text-shadow 0.3s;
}
.nav-brand:hover { text-decoration: none; text-shadow: 0 0 20px var(--accent-glow); }
.nav-logo {
  width: 30px; height: 30px;
  border-radius: 4px;
  transition: filter 0.3s;
}
.nav-brand:hover .nav-logo {
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
#nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
}
#nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s, background 0.25s, text-shadow 0.25s;
  font-size: 0.93rem;
}
#nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-dim);
}
#nav-links a.active,
#nav-links a:hover { color: var(--text); text-shadow: 0 0 12px var(--accent-dim); }
#nav-links a.active::after { width: 60%; }
#nav-links a:hover::after { width: 40%; }

/* Mobile */
#mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
#mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
#mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 999;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  animation: fadeSlideDown 0.3s var(--ease);
}
#mobile-nav-overlay.hidden { display: none !important; }
#mobile-nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
#mobile-nav-overlay a {
  font-size: 1.3rem;
  padding: 14px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: block;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#mobile-nav-overlay a:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 18px var(--accent-glow);
  text-decoration: none;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   Pages & Transitions
   ═══════════════════════════════════════════════ */
#app {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.page {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.page.active { display: block; }
.page.visible { opacity: 1; transform: translateY(0); }

.page-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px var(--accent-dim);
  animation: fadeInUp 0.5s var(--ease) both;
}
.page-heading::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 50px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 14px var(--accent-glow), 0 0 28px var(--accent-dim);
  animation: lineExpand 0.6s 0.2s var(--ease) both;
}
@keyframes lineExpand {
  from { width: 0; }
  to   { width: 50px; }
}

/* ═══════════════════════════════════════════════
   Entrance Animations (reusable)
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ═══════════════════════════════════════════════
   Home – Hero
   ═══════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 80px 16px 50px;
  position: relative;
  overflow: visible;
}
.hero-glow {
  position: absolute;
  top: 25%; left: 50%;
  width: 700px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(160,196,255,0.14) 0%, transparent 70%);
  pointer-events: none;
  animation: heroOrb 5s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroOrb {
  0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}
.hero-title {
  position: relative; z-index: 1;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px var(--accent-glow)) drop-shadow(0 0 80px var(--accent-dim));
  animation: heroGlow 4s ease-in-out infinite alternate, fadeInUp 0.6s var(--ease) both;
}
@keyframes heroGlow {
  0%   { filter: drop-shadow(0 0 30px var(--accent-glow)) drop-shadow(0 0 60px var(--accent-dim)); }
  100% { filter: drop-shadow(0 0 55px var(--accent-strong)) drop-shadow(0 0 110px var(--accent-glow)); }
}
.hero-subtitle {
  position: relative; z-index: 1;
  margin-top: 14px;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 600;
  animation: fadeInUp 0.6s 0.1s var(--ease) both;
}
.hero-desc {
  position: relative; z-index: 1;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65;
  animation: fadeInUp 0.6s 0.2s var(--ease) both;
}
.hero-buttons {
  position: relative; z-index: 1;
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s var(--ease) both;
}
.hero-version {
  position: relative; z-index: 1;
  display: inline-block;
  margin-top: 22px;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  text-shadow: 0 0 10px var(--accent-glow);
  animation: fadeInUp 0.6s 0.4s var(--ease) both;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  background-size: 200% 100%;
}
.hero-version { animation: fadeInUp 0.6s 0.4s var(--ease) both, shimmer 3s 1s linear infinite; }

/* ──── Section Labels ──── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.45;
  margin: 50px 0 18px;
  text-shadow: 0 0 12px var(--accent-glow);
  animation: fadeInUp 0.5s var(--ease) both;
}

/* ═══════════════════════════════════════════════
   Home – Trust / Security Cards
   ═══════════════════════════════════════════════ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.3s;
  animation: cardFloat 5s ease-in-out infinite alternate, fadeInScale 0.5s var(--ease) both;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 40%, var(--accent-dim) 50%, transparent 60%);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  animation: shimmer 4s linear infinite;
}
.trust-card:hover::before { opacity: 1; }
.trust-card:nth-child(1) { animation-delay: 0s, 0s; }
.trust-card:nth-child(2) { animation-delay: -1.6s, 0.1s; }
.trust-card:nth-child(3) { animation-delay: -3.2s, 0.2s; }
@keyframes cardFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}
.trust-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 35px var(--accent-glow), 0 0 70px var(--accent-dim), inset 0 0 30px var(--accent-dim);
  transform: translateY(-10px) !important;
}
.trust-icon {
  width: 42px; height: 42px;
  margin-bottom: 14px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px var(--accent-glow));
}
.trust-icon svg { width: 100%; height: 100%; }
.shield-icon { animation: shieldPulse 3s ease-in-out infinite; }
@keyframes shieldPulse {
  0%, 100% { filter: drop-shadow(0 0 6px var(--accent-glow)); }
  50%      { filter: drop-shadow(0 0 22px var(--accent-strong)); }
}
.pulse-icon { animation: iconPulse 2s ease-in-out infinite; }
@keyframes iconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.08); }
}
.refresh-icon { animation: refreshSpin 8s linear infinite; }
@keyframes refreshSpin { to { transform: rotate(360deg); } }

.trust-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.trust-list { list-style: none; }
.trust-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}
.trust-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}

/* ═══════════════════════════════════════════════
   Home – Why CheatLib
   ═══════════════════════════════════════════════ */
.why-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s, transform 0.25s;
  animation: fadeInUp 0.4s var(--ease) both;
}
.why-item:nth-child(1) { animation-delay: 0s; }
.why-item:nth-child(2) { animation-delay: 0.06s; }
.why-item:nth-child(3) { animation-delay: 0.12s; }
.why-item:nth-child(4) { animation-delay: 0.18s; }
.why-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 18px var(--accent-dim);
  color: var(--text);
  transform: translateY(-2px);
}
.why-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
  animation: dotBreathe 2s ease-in-out infinite;
}
@keyframes dotBreathe {
  0%, 100% { box-shadow: 0 0 6px var(--accent-glow); }
  50%      { box-shadow: 0 0 14px var(--accent-strong); }
}

/* ═══════════════════════════════════════════════
   Home – Stats Counter
   ═══════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 10px;
}
.stat-card {
  text-align: center;
  padding: 26px 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  animation: fadeInScale 0.4s var(--ease) both;
}
.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.07s; }
.stat-card:nth-child(3) { animation-delay: 0.14s; }
.stat-card:nth-child(4) { animation-delay: 0.21s; }
.stat-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 28px var(--accent-dim);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: inline;
  text-shadow: 0 0 18px var(--accent-glow);
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}
.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════
   Home – FAQ Accordion
   ═══════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: fadeInUp 0.4s var(--ease) both;
}
.faq-item:nth-child(1) { animation-delay: 0s; }
.faq-item:nth-child(2) { animation-delay: 0.04s; }
.faq-item:nth-child(3) { animation-delay: 0.08s; }
.faq-item:nth-child(4) { animation-delay: 0.12s; }
.faq-item:nth-child(5) { animation-delay: 0.16s; }
.faq-item:nth-child(6) { animation-delay: 0.20s; }
.faq-item:hover, .faq-item[open] {
  border-color: var(--border-hover);
  box-shadow: 0 0 18px var(--accent-dim);
}
.faq-item summary {
  padding: 16px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
  text-shadow: 0 0 8px var(--accent-glow);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  animation: fadeInUp 0.25s var(--ease);
}

/* ═══════════════════════════════════════════════
   Home – CTA
   ═══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 40px 0 20px;
  margin-top: 30px;
  animation: fadeInUp 0.5s 0.2s var(--ease) both;
}
.cta-divider {
  height: 1px;
  max-width: 400px;
  margin: 0 auto 36px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  box-shadow: 0 0 20px var(--accent-dim);
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}
.cta-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-shadow: 0 0 20px var(--accent-dim);
}

/* ──── Buttons ──── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.25s, box-shadow 0.3s, border-color 0.3s, transform 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}
.btn:hover { text-decoration: none; }
/* Sweep effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(160,196,255,0.08), transparent);
  transition: left 0.5s;
}
.btn:hover::after { left: 100%; }
.btn-primary {
  background: rgba(160, 196, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--accent);
  box-shadow: 0 0 8px var(--accent-dim);
}
.btn-primary:hover {
  background: rgba(160, 196, 255, 0.2);
  box-shadow: 0 0 28px var(--accent-glow), 0 0 56px var(--accent-dim);
  transform: translateY(-2px);
  text-shadow: 0 0 8px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}
.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--text);
  box-shadow: 0 0 24px var(--accent-glow), 0 0 48px var(--accent-dim);
  transform: translateY(-2px);
  text-shadow: 0 0 6px var(--accent-dim);
}
.btn-sm { padding: 8px 18px; font-size: 0.88rem; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════
   Mod Grid
   ═══════════════════════════════════════════════ */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.mod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.25s;
  animation: fadeInUp 0.4s var(--ease) both;
  position: relative;
  overflow: hidden;
}
/* Stagger mod cards */
.mod-card:nth-child(1) { animation-delay: 0s; }
.mod-card:nth-child(2) { animation-delay: 0.06s; }
.mod-card:nth-child(3) { animation-delay: 0.12s; }
.mod-card:nth-child(4) { animation-delay: 0.18s; }
.mod-card:nth-child(5) { animation-delay: 0.24s; }
.mod-card:nth-child(6) { animation-delay: 0.30s; }
/* Shimmer border on hover */
.mod-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 40%, var(--accent-dim) 50%, transparent 60%);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  animation: shimmer 3s linear infinite;
}
.mod-card:hover::before { opacity: 1; }
.mod-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-dim), inset 0 0 20px var(--accent-dim);
  transform: translateY(-6px);
}

/* Mod card header with status dot */
.mod-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mod-card-header h3 { font-size: 1.12rem; }
.mod-card-status {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.mod-card-status.green  { background: var(--green);  box-shadow: 0 0 8px var(--green), 0 0 18px rgba(76, 255, 142, 0.25); }
.mod-card-status.yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow), 0 0 18px rgba(255, 225, 76, 0.25); }
.mod-card-status.red    { background: var(--red);    box-shadow: 0 0 8px var(--red), 0 0 18px rgba(255, 76, 76, 0.25); }

.mod-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}
.mod-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════
   Mod Detail
   ═══════════════════════════════════════════════ */
.btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-back:hover {
  border-color: var(--border-hover);
  color: var(--text);
  box-shadow: 0 0 12px var(--accent-dim);
}
.detail-header {
  margin-bottom: 24px;
  animation: fadeInUp 0.4s var(--ease) both;
}
.detail-header h2 { font-size: 2rem; font-weight: 700; }
.detail-long-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  animation: fadeInUp 0.4s 0.05s var(--ease) both;
}
.detail-features {
  list-style: none;
  margin-bottom: 32px;
  animation: fadeInUp 0.4s 0.1s var(--ease) both;
}
.detail-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.detail-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Video Thumbnails (clickable — opens YouTube) */
.detail-media {
  max-width: 720px;
  margin-bottom: 32px;
  animation: fadeInUp 0.4s 0.15s var(--ease) both;
}
.video-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 0 20px rgba(160,196,255,0.10), 0 0 50px rgba(160,196,255,0.04);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.video-thumb:hover {
  text-decoration: none;
  border-color: var(--border-hover);
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-dim);
  transform: translateY(-4px);
}
.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.video-thumb:hover img {
  filter: brightness(0.7);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 68px; height: 48px;
  opacity: 0.85;
  transition: transform 0.25s, opacity 0.25s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  opacity: 1;
}
.video-play-btn svg { width: 100%; height: 100%; }
.video-label {
  position: absolute;
  bottom: 12px; left: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.video-thumb:hover .video-label {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  max-width: 720px;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s var(--ease);
}
.carousel-track img {
  width: 100%; height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, box-shadow 0.25s;
  z-index: 2;
}
.carousel-btn:hover { background: rgba(0,0,0,0.85); box-shadow: 0 0 10px var(--accent-dim); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.carousel-dots span.active {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}
.no-screenshots {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════
   Status Page
   ═══════════════════════════════════════════════ */
.status-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: fadeInUp 0.4s var(--ease) both;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.green  { background: var(--green);  box-shadow: 0 0 10px var(--green), 0 0 24px rgba(76, 255, 142, 0.3); }
.dot.yellow { background: var(--yellow); box-shadow: 0 0 10px var(--yellow), 0 0 24px rgba(255, 225, 76, 0.3); }
.dot.red    { background: var(--red);    box-shadow: 0 0 10px var(--red), 0 0 24px rgba(255, 76, 76, 0.3); }
.dot.pulse  { animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.35); }
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.2s;
  animation: fadeInUp 0.4s var(--ease) both;
}
.status-row:nth-child(1) { animation-delay: 0s; }
.status-row:nth-child(2) { animation-delay: 0.05s; }
.status-row:nth-child(3) { animation-delay: 0.1s; }
.status-row:nth-child(4) { animation-delay: 0.15s; }
.status-row:nth-child(5) { animation-delay: 0.2s; }
.status-row:nth-child(6) { animation-delay: 0.25s; }
.status-row:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 22px var(--accent-dim);
  transform: translateX(4px);
}
.status-row .name { font-weight: 600; min-width: 180px; }
.status-row .msg  { color: var(--text-muted); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════
   Tutorial Page
   ═══════════════════════════════════════════════ */
.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.step-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.2s;
  animation: fadeInUp 0.4s var(--ease) both;
}
.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 0.06s; }
.step-card:nth-child(3) { animation-delay: 0.12s; }
.step-card:nth-child(4) { animation-delay: 0.18s; }
.step-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 20px var(--accent-dim);
  transform: translateX(4px);
}
.step-number {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(160, 196, 255, 0.08);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow), 0 0 32px var(--accent-dim);
  text-shadow: 0 0 8px var(--accent-glow);
  animation: stepGlow 3s ease-in-out infinite alternate;
}
@keyframes stepGlow {
  0%   { box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-dim); }
  100% { box-shadow: 0 0 22px var(--accent-strong), 0 0 44px var(--accent-glow); }
}
.step-body { flex: 1; }
.step-body h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 10px; }

.path-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.path-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  min-width: 65px;
}
.path-row code {
  flex: 1;
  min-width: 0;
  word-break: break-all;
}
.btn-copy {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-copy:hover {
  border-color: var(--border-hover);
  color: var(--text);
  box-shadow: 0 0 8px var(--accent-dim);
}
.btn-copy.copied {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 10px rgba(76, 255, 142, 0.3);
}

.warning-box {
  padding: 18px 22px;
  background: rgba(255, 225, 76, 0.06);
  border: 1px solid rgba(255, 225, 76, 0.2);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--yellow);
  animation: fadeInUp 0.4s 0.25s var(--ease) both;
}

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  #nav-links { display: none; }
  #mobile-menu-btn { display: flex; }
  .hero { padding: 50px 10px 35px; }
  .hero-title { font-size: 2.4rem; }
  .trust-row { grid-template-columns: 1fr; }
  .why-row { flex-direction: column; gap: 10px; }
  .why-item { justify-content: center; }
  .step-card { flex-direction: column; align-items: flex-start; }
  .mod-grid { grid-template-columns: 1fr; }
  .status-row .name { min-width: auto; }
  .video-embed { margin-bottom: 16px; }
}

/* ═══════════════════════════════════════════════
   Scrollbar
   ═══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(160,196,255,0.08); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(160,196,255,0.18); }

/* ═══════════════════════════════════════════════
   Download Explosion Particles
   ═══════════════════════════════════════════════ */
.dl-particle {
  position: fixed;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow), 0 0 18px var(--accent-dim);
  pointer-events: none;
  z-index: 10000;
  animation: dlBurst 0.65s ease-out forwards;
}
@keyframes dlBurst {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   Discord Notification Badge
   ═══════════════════════════════════════════════ */
.discord-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  background: rgba(13, 13, 22, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: 100px;
  color: #f0f0f0;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2), 0 4px 24px rgba(0,0,0,0.5);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  animation: badgeSlideIn 0.5s 1.5s var(--ease) both;
}
.discord-badge:hover {
  text-decoration: none;
  border-color: rgba(88, 101, 242, 0.7);
  box-shadow: 0 0 35px rgba(88, 101, 242, 0.35), 0 4px 30px rgba(0,0,0,0.6);
  transform: translateY(-3px);
}
.discord-badge svg {
  color: #5865F2;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(88, 101, 242, 0.5));
}
.discord-badge-close {
  margin-left: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s;
}
.discord-badge-close:hover {
  color: #fff;
}
@keyframes badgeSlideIn {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   Modifications Support Note
   ═══════════════════════════════════════════════ */
.mods-support-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  animation: fadeInUp 0.4s 0.1s var(--ease) both;
}
.mods-support-note a {
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 8px var(--accent-dim);
  transition: text-shadow 0.3s;
}
.mods-support-note a:hover {
  text-shadow: 0 0 16px var(--accent-glow);
}

/* ═══════════════════════════════════════════════
   Search Bar
   ═══════════════════════════════════════════════ */
.search-bar {
  position: relative;
  max-width: 420px;
  margin-bottom: 24px;
  animation: fadeInUp 0.4s 0.15s var(--ease) both;
}
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}
#mod-search {
  width: 100%;
  padding: 11px 16px 11px 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#mod-search::placeholder { color: var(--text-muted); opacity: 0.6; }
#mod-search:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 20px var(--accent-dim), 0 0 40px rgba(160,196,255,0.05);
}
.no-results {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 40px 0;
  animation: fadeInUp 0.3s var(--ease);
}

/* ═══════════════════════════════════════════════
   Changelog
   ═══════════════════════════════════════════════ */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.changelog-entry {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.3s;
  animation: fadeInUp 0.4s var(--ease) both;
  flex-wrap: wrap;
}
.changelog-entry:nth-child(1) { animation-delay: 0s; }
.changelog-entry:nth-child(2) { animation-delay: 0.05s; }
.changelog-entry:nth-child(3) { animation-delay: 0.1s; }
.changelog-entry:nth-child(4) { animation-delay: 0.15s; }
.changelog-entry:nth-child(5) { animation-delay: 0.2s; }
.changelog-entry:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 16px var(--accent-dim);
}
.changelog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 90px;
  letter-spacing: 0.3px;
}
.changelog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.tag-new    { background: rgba(76, 255, 142, 0.12); color: var(--green); border: 1px solid rgba(76, 255, 142, 0.25); }
.tag-update { background: rgba(160, 196, 255, 0.10); color: var(--accent); border: 1px solid rgba(160, 196, 255, 0.20); }
.tag-fix    { background: rgba(255, 225, 76, 0.10); color: var(--yellow); border: 1px solid rgba(255, 225, 76, 0.20); }
.changelog-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 0;
}

/* ═══════════════════════════════════════════════
   Troubleshooting
   ═══════════════════════════════════════════════ */
.troubleshoot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.troubleshoot-item {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.3s;
  animation: fadeInUp 0.4s var(--ease) both;
}
.troubleshoot-item:nth-child(1) { animation-delay: 0s; }
.troubleshoot-item:nth-child(2) { animation-delay: 0.05s; }
.troubleshoot-item:nth-child(3) { animation-delay: 0.1s; }
.troubleshoot-item:nth-child(4) { animation-delay: 0.15s; }
.troubleshoot-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 18px var(--accent-dim);
}
.troubleshoot-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.troubleshoot-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   Mouse Glow Follower
   ═══════════════════════════════════════════════ */
.mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 260px; height: 260px;
  margin-left: -130px;
  margin-top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,196,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  mix-blend-mode: screen;
}
