/* ═══════════════════════════════════════════════
   Seodeveloping — Black & White Rebrand
   ═══════════════════════════════════════════════ */

:root {
  --bg:            #0a0a0a;
  --bg-card:       #111111;
  --bg-card-hover: #1a1a1a;
  --text:          #f5f5f5;
  --text-muted:    #888888;
  --accent:        #ffffff;
  --accent-glow:   rgba(255, 255, 255, 0.4);
  --accent-dim:    rgba(255, 255, 255, 0.08);
  --accent-strong: rgba(255, 255, 255, 0.7);
  --border:        rgba(255, 255, 255, 0.06);
  --border-hover:  rgba(255, 255, 255, 0.25);
  --radius:        12px;
  --radius-sm:     8px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:         64px;
  --max-w:         1100px;
  --green:         #4cff8e;
  --yellow:        #ffe14c;
  --red:           #ff4c4c;
}

/* ──── Reset ──── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', '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; transition: opacity 0.3s var(--ease); }
a:hover { text-decoration: none; opacity: 0.7; }
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;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   Animated Grid Background
   ═══════════════════════════════════════════════ */
#grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.12), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.08), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.06), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.1), transparent);
  animation: ambientFloat 16s ease-in-out infinite alternate;
}
@keyframes ambientFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(-10px) scale(1.03); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════
   Terminal Intro Overlay
   ═══════════════════════════════════════════════ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 1s var(--ease), filter 0.8s var(--ease);
  overflow: hidden;
}
#intro-overlay.fade-out {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

/* Scanline effect */
#intro-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* CRT flicker */
#intro-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.01);
  pointer-events: none;
  z-index: 3;
  animation: crtFlicker 0.08s infinite alternate;
}
@keyframes crtFlicker {
  0%   { opacity: 1; }
  100% { opacity: 0.97; }
}

/* Terminal window */
#terminal-window {
  width: min(700px, 90vw);
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(255,255,255,0.03), 0 20px 60px rgba(0,0,0,0.8);
  position: relative;
  z-index: 4;
  animation: terminalAppear 0.6s var(--ease) both;
}
@keyframes terminalAppear {
  0%   { opacity: 0; transform: scale(0.95) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Terminal title bar */
.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.terminal-dot.red    { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green  { background: #28c840; }
.terminal-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: 0.5px;
}

/* Terminal body */
.terminal-body {
  padding: 20px;
  min-height: 320px;
  max-height: 400px;
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.terminal-line {
  opacity: 0;
  transform: translateY(4px);
  animation: lineAppear 0.3s var(--ease) forwards;
  white-space: nowrap;
  overflow: hidden;
}
@keyframes lineAppear {
  to { opacity: 1; transform: translateY(0); }
}

.terminal-line .prompt {
  color: rgba(255,255,255,0.35);
}
.terminal-line .cmd {
  color: #ffffff;
}
.terminal-line .comment {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}
.terminal-line .success {
  color: #4cff8e;
}
.terminal-line .server {
  color: rgba(255,255,255,0.5);
}
.terminal-line .highlight {
  color: #ffffff;
  font-weight: 600;
}

/* Blinking cursor */
.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: rgba(255,255,255,0.7);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 0.8s steps(1) infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Terminal progress bar */
.terminal-progress {
  display: inline-block;
  color: rgba(255,255,255,0.4);
}

#intro-skip {
  position: absolute;
  bottom: 30px;
  z-index: 20;
  padding: 8px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: transparent;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
#intro-skip:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════
   Navbar
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  animation: navSlideDown 0.8s 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: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: announcementSlide 0.5s 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(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.announcement-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: text-decoration-color 0.3s;
}
.announcement-text a:hover {
  text-decoration-color: #fff;
  opacity: 1;
}
#announcement-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.3s;
}
#announcement-close:hover { color: #fff; }

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.1rem;
  color: var(--text);
  letter-spacing: -0.3px;
  transition: opacity 0.3s;
}
.nav-brand:hover { text-decoration: none; opacity: 0.7; }
.nav-logo {
  width: 28px; height: 28px;
  border-radius: 6px;
  transition: transform 0.4s var(--ease-spring);
}
.nav-brand:hover .nav-logo {
  transform: scale(1.1) rotate(-3deg);
}
#nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}
#nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  position: relative;
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
  font-size: 0.9rem;
  font-weight: 500;
}
#nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
#nav-links a.active,
#nav-links a:hover { color: var(--text); }
#nav-links a.active::after { width: 50%; }
#nav-links a:hover::after { width: 30%; }

/* Mobile */
#mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
#mobile-menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
#mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
#mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#mobile-nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 999;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
  animation: fadeSlideDown 0.4s var(--ease);
}
#mobile-nav-overlay.hidden { display: none !important; }
#mobile-nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
#mobile-nav-overlay a {
  font-size: 1.2rem;
  padding: 16px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: block;
  color: var(--text);
  transition: all 0.35s var(--ease);
  font-weight: 500;
}
#mobile-nav-overlay a:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  opacity: 1;
}
@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(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s 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;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.6s var(--ease) both;
}
.page-heading::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 40px; height: 2px;
  background: #fff;
  border-radius: 2px;
  animation: lineExpand 0.8s 0.2s var(--ease) both;
}
@keyframes lineExpand {
  from { width: 0; }
  to   { width: 40px; }
}

/* ═══════════════════════════════════════════════
   Entrance Animations
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  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 40px;
  position: relative;
  overflow: visible;
}
.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  width: 600px; height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: heroOrb 8s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroOrb {
  0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}
.hero-title {
  position: relative; z-index: 1;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: #ffffff;
  text-shadow: 0 0 60px rgba(255,255,255,0.15);
  animation: heroTitleIn 1s var(--ease) both;
}
@keyframes heroTitleIn {
  0%   { opacity: 0; transform: translateY(30px) scale(0.97); letter-spacing: 8px; }
  100% { opacity: 1; transform: translateY(0) scale(1); letter-spacing: -2px; }
}
.hero-subtitle {
  position: relative; z-index: 1;
  margin-top: 16px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  animation: fadeInUp 0.8s 0.15s var(--ease) both;
}
.hero-desc {
  position: relative; z-index: 1;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s 0.25s var(--ease) both;
}
.hero-buttons {
  position: relative; z-index: 1;
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.35s var(--ease) both;
}
.hero-version {
  position: relative; z-index: 1;
  display: inline-block;
  margin-top: 28px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  animation: fadeInUp 0.8s 0.45s var(--ease) both;
}

/* ──── Section Labels ──── */
.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin: 48px 0 16px;
  animation: fadeInUp 0.6s var(--ease) both;
}

/* ═══════════════════════════════════════════════
   Home – Trust Strip (minimal)
   ═══════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
  margin-top: 8px;
  animation: fadeInUp 0.7s 0.3s var(--ease) both;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.trust-strip-item svg {
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.trust-strip-item:hover {
  color: var(--text);
}
.trust-strip-item:hover svg {
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════
   Home – Stats Counter
   ═══════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 0;
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}
.stat-card {
  text-align: center;
  padding: 22px 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.stat-card:hover {
  border-color: var(--border-hover);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  display: inline;
  letter-spacing: -1px;
}
.stat-suffix {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   Home – FAQ Accordion
   ═══════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  animation: fadeInUp 0.5s 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);
}
.faq-item summary {
  padding: 16px 22px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  transition: transform 0.4s var(--ease), color 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #fff;
}
.faq-item summary:hover { color: #fff; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  animation: fadeInUp 0.3s var(--ease);
}

/* ═══════════════════════════════════════════════
   Home – CTA
   ═══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 24px 0 20px;
  margin-top: 16px;
  animation: fadeInUp 0.6s 0.2s var(--ease) both;
}
.cta-divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.cta-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* ──── Buttons ──── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { text-decoration: none; opacity: 1; }
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 100%; }
.btn-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15), 0 8px 40px rgba(255,255,255,0.05);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  color: var(--text-muted);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* ═══════════════════════════════════════════════
   Page Header Row (heading + search inline)
   ═══════════════════════════════════════════════ */
.page-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.page-header-row .page-heading {
  margin-bottom: 0;
}
.page-header-row .search-bar {
  margin-bottom: 0;
  animation-delay: 0.1s;
}

/* ═══════════════════════════════════════════════
   Mod Grid
   ═══════════════════════════════════════════════ */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.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: all 0.4s var(--ease);
  animation: fadeInUp 0.5s var(--ease) both;
  position: relative;
  overflow: hidden;
}
.mod-card:nth-child(1) { animation-delay: 0s; }
.mod-card:nth-child(2) { animation-delay: 0.05s; }
.mod-card:nth-child(3) { animation-delay: 0.1s; }
.mod-card:nth-child(4) { animation-delay: 0.15s; }
.mod-card:nth-child(5) { animation-delay: 0.2s; }
.mod-card:nth-child(6) { animation-delay: 0.25s; }
.mod-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  transition: left 0.7s var(--ease);
}
.mod-card:hover::before { left: 100%; }
.mod-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 1px rgba(255,255,255,0.1);
}

.mod-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mod-card-header h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.2px; }
.mod-card-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.mod-card-status.green  { background: var(--green);  box-shadow: 0 0 8px rgba(76, 255, 142, 0.4); }
.mod-card-status.yellow { background: var(--yellow); box-shadow: 0 0 8px rgba(255, 225, 76, 0.4); }
.mod-card-status.red    { background: var(--red);    box-shadow: 0 0 8px rgba(255, 76, 76, 0.4); }

.mod-card p {
  font-size: 0.88rem;
  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: all 0.35s var(--ease);
}
.btn-back:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.detail-header {
  margin-bottom: 24px;
  animation: fadeInUp 0.5s var(--ease) both;
}
.detail-header h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.5px; }
.detail-long-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  animation: fadeInUp 0.5s 0.05s var(--ease) both;
}
.detail-features {
  list-style: none;
  margin-bottom: 32px;
  animation: fadeInUp 0.5s 0.1s var(--ease) both;
}
.detail-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.detail-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* Video Thumbnails */
.detail-media {
  max-width: 720px;
  margin-bottom: 32px;
  animation: fadeInUp 0.5s 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);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.video-thumb:hover {
  text-decoration: none;
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  opacity: 1;
}
.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: filter 0.4s, transform 0.4s;
}
.video-thumb:hover img {
  filter: brightness(0.6);
  transform: scale(1.02);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 68px; height: 48px;
  opacity: 0.85;
  transition: all 0.35s var(--ease-spring);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  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: all 0.35s var(--ease);
}
.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.5s 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.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.carousel-btn:hover { background: rgba(0,0,0,0.9); border-color: rgba(255,255,255,0.3); }
.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: rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.carousel-dots span.active {
  background: #fff;
}
.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.5s var(--ease) both;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
/* Inline legend — no card, just text */
.status-legend-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s var(--ease) both;
}
.status-legend-inline span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.green  { background: var(--green);  box-shadow: 0 0 8px rgba(76, 255, 142, 0.4); }
.dot.yellow { background: var(--yellow); box-shadow: 0 0 8px rgba(255, 225, 76, 0.4); }
.dot.red    { background: var(--red);    box-shadow: 0 0 8px rgba(255, 76, 76, 0.4); }
.dot.pulse  { animation: pulse-dot 2.5s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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: all 0.4s var(--ease);
  animation: fadeInUp 0.5s var(--ease) both;
}
.status-row:nth-child(1) { animation-delay: 0s; }
.status-row:nth-child(2) { animation-delay: 0.04s; }
.status-row:nth-child(3) { animation-delay: 0.08s; }
.status-row:nth-child(4) { animation-delay: 0.12s; }
.status-row:nth-child(5) { animation-delay: 0.16s; }
.status-row:nth-child(6) { animation-delay: 0.2s; }
.status-row:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.status-row .name { font-weight: 600; min-width: 180px; }
.status-row .msg  { color: var(--text-muted); font-size: 0.88rem; }

/* ═══════════════════════════════════════════════
   Tutorial Page
   ═══════════════════════════════════════════════ */
.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  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: all 0.4s var(--ease);
  animation: fadeInUp 0.5s 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);
  transform: translateX(4px);
}
.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.step-body { flex: 1; }
.step-body h3 { margin-bottom: 6px; font-size: 1rem; font-weight: 600; }
.step-body p { font-size: 0.9rem; 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: all 0.3s var(--ease);
}
.btn-copy:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.btn-copy.copied {
  color: var(--green);
  border-color: var(--green);
}

.warning-box {
  padding: 18px 22px;
  background: rgba(255, 225, 76, 0.04);
  border: 1px solid rgba(255, 225, 76, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--yellow);
  animation: fadeInUp 0.5s 0.25s var(--ease) both;
}

/* ═══════════════════════════════════════════════
   Featured Mods Spotlight
   ═══════════════════════════════════════════════ */
.featured-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.4s var(--ease);
  animation: fadeInUp 0.6s var(--ease) both;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.featured-card:hover::before { opacity: 1; }
.featured-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.featured-card .featured-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.featured-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.featured-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.featured-card .featured-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
}

/* ═══════════════════════════════════════════════
   Server Compatibility Table
   ═══════════════════════════════════════════════ */
.compat-table-wrap {
  overflow-x: auto;
  animation: fadeInUp 0.6s var(--ease) both;
}
.compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compat-table th {
  text-align: left;
  padding: 12px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border-bottom: 1px solid var(--border);
}
.compat-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s;
}
.compat-table tr:hover td {
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.compat-table td:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.compat-table td .dot {
  width: 7px; height: 7px;
  animation: none;
}

/* ═══════════════════════════════════════════════
   How It Works
   ═══════════════════════════════════════════════ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  animation: fadeInUp 0.6s var(--ease) both;
}
.how-step {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.how-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.how-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}
.how-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.how-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   Community Card
   ═══════════════════════════════════════════════ */
.community-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  animation: fadeInUp 0.6s var(--ease) both;
  flex-wrap: wrap;
}
.community-card:hover {
  border-color: var(--border-hover);
}
.community-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.community-left svg {
  flex-shrink: 0;
  color: #5865F2;
}
.community-left h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.community-left p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════ */
#site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.footer-brand img {
  border-radius: 4px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text);
  opacity: 1;
}
.footer-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  #nav-links { display: none; }
  #mobile-menu-btn { display: flex; }
  .hero { padding: 50px 10px 30px; }
  .hero-title { font-size: 2.6rem; letter-spacing: -1px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { gap: 12px; flex-direction: column; align-items: center; }
  .page-header-row { flex-direction: column; align-items: flex-start; }
  .page-header-row .search-bar { width: 100%; max-width: 100%; }
  .step-card { flex-direction: column; align-items: flex-start; }
  .mod-grid { grid-template-columns: 1fr; }
  .status-row .name { min-width: auto; }
  .terminal-body { font-size: 0.7rem; min-height: 260px; }
  .how-steps { grid-template-columns: 1fr; }
  .featured-row { grid-template-columns: 1fr; }
  .community-card { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .compat-table { font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════
   Scrollbar
   ═══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.12); }

/* ═══════════════════════════════════════════════
   Download Tutorial Popup
   ═══════════════════════════════════════════════ */
.dl-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.dl-popup-overlay.visible {
  opacity: 1;
}
.dl-popup {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.dl-popup-overlay.visible .dl-popup {
  transform: scale(1) translateY(0);
}
.dl-popup-icon {
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.dl-popup h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.dl-popup p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.dl-popup-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   Download Explosion Particles
   ═══════════════════════════════════════════════ */
.dl-particle {
  position: fixed;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 10000;
  animation: dlBurst 0.7s var(--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(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: #f0f0f0;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: all 0.4s var(--ease);
  animation: badgeSlideIn 0.6s 2s var(--ease) both;
}
.discord-badge:hover {
  text-decoration: none;
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  opacity: 1;
}
.discord-badge svg {
  color: #5865F2;
  flex-shrink: 0;
}
.discord-badge-close {
  margin-left: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.3s;
}
.discord-badge-close:hover {
  color: #fff;
}
@keyframes badgeSlideIn {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   Search Bar
   ═══════════════════════════════════════════════ */
.search-bar {
  position: relative;
  max-width: 400px;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s 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.9rem;
  font-family: inherit;
  outline: none;
  transition: all 0.4s var(--ease);
}
#mod-search::placeholder { color: var(--text-muted); opacity: 0.5; }
#mod-search:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.03);
}
.no-results {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 40px 0;
  animation: fadeInUp 0.3s var(--ease);
}

/* ═══════════════════════════════════════════════
   Changelog
   ═══════════════════════════════════════════════ */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.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: all 0.35s var(--ease);
  animation: fadeInUp 0.5s var(--ease) both;
  flex-wrap: wrap;
}
.changelog-entry:nth-child(1) { animation-delay: 0s; }
.changelog-entry:nth-child(2) { animation-delay: 0.04s; }
.changelog-entry:nth-child(3) { animation-delay: 0.08s; }
.changelog-entry:nth-child(4) { animation-delay: 0.12s; }
.changelog-entry:nth-child(5) { animation-delay: 0.16s; }
.changelog-entry:hover {
  border-color: var(--border-hover);
}
.changelog-date {
  font-size: 0.76rem;
  color: var(--text-muted);
  min-width: 90px;
  letter-spacing: 0.3px;
}
.changelog-tag {
  font-size: 0.65rem;
  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.08); color: var(--green); border: 1px solid rgba(76, 255, 142, 0.15); }
.tag-update { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.08); }
.tag-fix    { background: rgba(255, 225, 76, 0.06); color: var(--yellow); border: 1px solid rgba(255, 225, 76, 0.12); }
.changelog-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 0;
}

/* ═══════════════════════════════════════════════
   Troubleshooting
   ═══════════════════════════════════════════════ */
.troubleshoot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.troubleshoot-item {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  animation: fadeInUp 0.5s 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);
}
.troubleshoot-item h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
}
.troubleshoot-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   Mouse Glow Follower
   ═══════════════════════════════════════════════ */
.mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 300px;
  margin-left: -150px;
  margin-top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  mix-blend-mode: screen;
}
