/* ═══════════════════════════════════════════════════════════════════════════
   3X-UI Premium Dashboard — CSS
   Blue neon / glow theme  •  Glassmorphism  •  Responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Font ─────────────────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ── Custom Properties ───────────────────────────────────────────────────── */
:root {
  /* core blues */
  --blue-50: #eef6ff;
  --blue-100: #d9eaff;
  --blue-200: #b3d5ff;
  --blue-300: #70b3ff;
  --blue-400: #3b93ff;
  --blue-500: #0070f3;
  --blue-600: #005bd4;
  --blue-700: #0047ab;
  --blue-800: #003a8c;
  --blue-900: #002966;

  /* accents */
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --teal-400: #2dd4bf;

  /* glow */
  --glow-blue: 0 0 20px rgba(0, 112, 243, 0.35), 0 0 60px rgba(0, 112, 243, 0.15);
  --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3), 0 0 60px rgba(34, 211, 238, 0.1);
  --glow-text: 0 0 12px rgba(0, 112, 243, 0.6);

  /* surface / bg */
  --bg-primary: #030712;
  --bg-surface: rgba(15, 23, 42, 0.65);
  --bg-card: rgba(15, 23, 42, 0.55);
  --bg-input: rgba(15, 23, 42, 0.7);
  --border-glass: rgba(59, 147, 255, 0.15);
  --border-hover: rgba(59, 147, 255, 0.35);

  /* text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Animated Background ─────────────────────────────────────────────────── */
.bg-animated {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-animated::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.18) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: floatOrb 18s ease-in-out infinite;
}

.bg-animated::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: floatOrb 22s ease-in-out infinite reverse;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.bg-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 112, 243, 0.15);
  top: 30%;
  left: 50%;
  animation: floatOrb 25s ease-in-out infinite;
}

.bg-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(34, 211, 238, 0.1);
  top: 60%;
  left: 20%;
  animation: floatOrb 20s ease-in-out infinite 5s;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(0, 71, 171, 0.12);
  top: 10%;
  right: 10%;
  animation: floatOrb 28s ease-in-out infinite 10s;
}

/* Grid overlay */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(59, 147, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 147, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* ── Layout Container ────────────────────────────────────────────────────── */
.app-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: rgba(3, 7, 18, 0.7);
  border-bottom: 1px solid var(--border-glass);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--glow-blue);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow:
    0 0 15px rgba(0, 112, 243, 0.45),
    0 0 35px rgba(34, 211, 238, 0.18);
  animation: float-logo 4s ease-in-out infinite;
}

.navbar-brand span {
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-glass);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── Glass Card ──────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 112, 243, 0.3);
}

.btn-primary:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ripple on btn */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--blue-400);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  background: rgba(0, 112, 243, 0.1);
  border-color: var(--blue-400);
  box-shadow: var(--glow-blue);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  border-radius: var(--radius-xs);
}

.btn-danger {
  background: transparent;
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(248, 113, 113, 0.5);
}

/* ── Login Page ──────────────────────────────────────────────────────────── */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 48px 40px;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.site-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow:
    0 0 20px rgba(0, 112, 243, 0.45),
    0 0 60px rgba(0, 112, 243, 0.18);
  animation:
    logoIntro 1.2s ease,
    float-logo 4s ease-in-out infinite 1.2s;
  transition: all 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 30px rgba(0, 112, 243, 0.6),
    0 0 80px rgba(34, 211, 238, 0.25);
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes float-logo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}




@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.login-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--text-primary), var(--blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-card .subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15), var(--glow-blue);
}

.login-btn {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.error-message {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-xs);
  color: #fca5a5;
  font-size: 0.85rem;
  display: none;
  animation: shake 0.4s ease-in-out;
}

.error-message.visible {
  display: block;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ── Loading Spinner ─────────────────────────────────────────────────────── */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.loader-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border: 3px solid var(--border-glass);
  border-top-color: var(--blue-400);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Dashboard Sections ──────────────────────────────────────────────────── */
.dashboard-grid {
  display: grid;
  gap: 20px;
  padding-bottom: 60px;
  padding-top: 28px;
}

/* Welcome Card */
.welcome-card {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.12), rgba(6, 182, 212, 0.06));
}

.welcome-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.welcome-info h2 .accent {
  background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.welcome-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--border-glass);
  background: rgba(15, 23, 42, 0.5);
  color: var(--text-secondary);
}

.badge-active {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.08);
}

.badge-warn {
  color: #fcd34d;
  border-color: rgba(252, 211, 77, 0.25);
  background: rgba(252, 211, 77, 0.08);
}

.badge-expired {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
}

/* Stat Cards Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}

.stat-card.upload::before { background: linear-gradient(90deg, var(--blue-500), var(--cyan-400)); }
.stat-card.download::before { background: linear-gradient(90deg, var(--cyan-400), var(--teal-400)); }
.stat-card.total::before { background: linear-gradient(90deg, var(--blue-400), var(--blue-600)); }
.stat-card.remaining::before { background: linear-gradient(90deg, var(--teal-400), var(--cyan-500)); }

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.stat-card.upload .stat-icon { background: rgba(0, 112, 243, 0.12); color: var(--blue-400); }
.stat-card.download .stat-icon { background: rgba(34, 211, 238, 0.12); color: var(--cyan-400); }
.stat-card.total .stat-icon { background: rgba(0, 112, 243, 0.12); color: var(--blue-300); }
.stat-card.remaining .stat-icon { background: rgba(45, 212, 191, 0.12); color: var(--teal-400); }

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Charts Row */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chart-card {
  padding: 28px;
}

.chart-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-card h3 .icon {
  color: var(--blue-400);
}

.chart-container {
  position: relative;
  width: 100%;
}

.line-chart-container {
  height: 260px;
}

/* Circular Progress */
.circular-chart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.circular-progress {
  position: relative;
  width: 200px;
  height: 200px;
}

.circular-progress svg {
  transform: rotate(-90deg);
}

.circular-progress .track {
  fill: none;
  stroke: rgba(59, 147, 255, 0.1);
  stroke-width: 10;
}

.circular-progress .fill {
  fill: none;
  stroke: url(#blueGradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 6px rgba(0, 112, 243, 0.5));
}

.circular-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circular-center .pct {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.circular-center .pct-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.circular-legend {
  display: flex;
  gap: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.used { background: var(--blue-400); }
.legend-dot.remaining { background: rgba(59, 147, 255, 0.15); }

/* Expiry Countdown */
.expiry-card {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.expiry-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.15), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.expiry-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.expiry-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.expiry-countdown {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

.countdown-unit {
  text-align: center;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
  min-width: 60px;
}

.countdown-unit .value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-300);
}

.countdown-unit .label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Config / Sub Card */
.config-card {
  padding: 28px;
}

.config-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.config-card h3 .icon { color: var(--blue-400); }

.config-url-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
}

.config-url-box code {
  flex: 1;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.82rem;
  color: var(--text-secondary);
  overflow-x: auto;
  white-space: nowrap;
}

.copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 24px;
  background: var(--blue-500);
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--glow-blue);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9000;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Disabled Account Banner ─────────────────────────────────────────────── */
.disabled-banner {
  padding: 16px 24px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .charts-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .login-card {
    padding: 36px 24px;
  }

  .welcome-card {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .expiry-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .expiry-countdown {
    margin-left: 0;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .navbar-status .status-text {
    display: none;
  }

  .content-wrapper {
    padding: 0 14px;
  }
}

@media (max-width: 400px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .expiry-countdown {
    gap: 8px;
  }

  .countdown-unit {
    min-width: 50px;
    padding: 8px 10px;
  }
}

/* ── Utility: fade-in on load ────────────────────────────────────────────── */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* stagger children */
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }
.stagger > *:nth-child(7) { animation-delay: 0.35s; }
.stagger > *:nth-child(8) { animation-delay: 0.4s; }
