/* ── Design System Variables ──────────────────────────────── */
:root {
  --bg-base: #06060e;
  --bg-surface: rgba(15, 12, 33, 0.45);
  --bg-surface-hover: rgba(25, 20, 50, 0.6);
  
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.25);
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  
  --secondary: #06b6d4;
  --secondary-glow: rgba(6, 182, 212, 0.2);
  --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.15);
  --danger: #ef4444;
  --warning: #f59e0b;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --border-light: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset & General Styles ───────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Ambient Background Glows ──────────────────────────────── */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
}

.glow-1 {
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-2 {
  top: 600px;
  left: -200px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.glow-3 {
  bottom: 200px;
  right: -100px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}

/* ── Typography & Headings ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

span.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* ── Header & Navigation ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  background: rgba(6, 6, 14, 0.7);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.35);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.logo-text span {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  z-index: 2;
}

.hero-logo-glow {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 50%;
  animation: floatLogo 6s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.25);
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.15);
  pointer-events: none;
  z-index: 1;
}

.ring-1 {
  width: 350px;
  height: 350px;
  animation: pulseRing 8s linear infinite;
}

.ring-2 {
  width: 450px;
  height: 450px;
  animation: pulseRing 12s linear infinite reverse;
}

/* ── Floating Cards ───────────────────────────────────────── */
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(15, 12, 33, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  min-width: 220px;
}

.card-left {
  bottom: 20px;
  left: -20px;
}

.card-right {
  top: 20px;
  right: -20px;
}

.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.icon-primary {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.fc-text {
  display: flex;
  flex-direction: column;
}

.fc-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fc-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ── Live Stats Section ───────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-surface-hover);
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.stat-card:hover::after {
  background: var(--primary-gradient);
}

.stat-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-icon-wrapper.purple {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
}

.stat-icon-wrapper.green {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}

.stat-icon-wrapper.blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.stat-icon-wrapper.orange {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.stat-details {
  flex-grow: 1;
}

.stat-details h3 {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.stat-trend {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-trend.trend-up {
  color: var(--success);
}

/* ── Analytics Section & Feed ─────────────────────────────── */
.analytics-section {
  padding: 40px 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.glass-panel {
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.panel-header {
  margin-bottom: 24px;
}

.panel-header h3 {
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chart-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-data-msg {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ── Recent Activity Feed ─────────────────────────────────── */
.activity-feed-wrapper {
  max-height: 300px;
  overflow-y: auto;
}

.activity-feed-wrapper::-webkit-scrollbar {
  width: 6px;
}

.activity-feed-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.activity-feed-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.activity-feed-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loading-spinner {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  animation: slideInUp 0.4s ease-out forwards;
}

.feed-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feed-details {
  display: flex;
  flex-direction: column;
}

.feed-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.feed-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feed-item-right {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.feed-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--success);
}

.feed-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── Leaderboard Podiums ──────────────────────────────────── */
.leaderboard-section {
  padding: 80px 0;
}

.podium-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-bottom: 50px;
  padding-top: 40px;
}

.podium-skeleton {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 40px;
}

.podium-card {
  flex: 1;
  max-width: 280px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.podium-card:hover {
  transform: translateY(-8px);
}

.podium-card.first {
  order: 2;
  height: 300px;
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, rgba(15, 12, 33, 0.45) 100%);
}

.podium-card.second {
  order: 1;
  height: 260px;
  border-color: rgba(203, 213, 225, 0.3);
  box-shadow: 0 10px 30px rgba(203, 213, 225, 0.05);
}

.podium-card.third {
  order: 3;
  height: 240px;
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.05);
}

.podium-rank {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 1.5rem;
}

.podium-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.podium-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.first .podium-avatar {
  width: 80px;
  height: 80px;
  font-size: 1.8rem;
  border-color: #fbbf24;
}

.podium-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-align: center;
}

.podium-sales {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.podium-volume {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--success);
  margin-top: auto;
}

/* ── Leaderboard Table ────────────────────────────────────── */
.table-panel {
  padding: 12px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leaderboard-table th {
  padding: 16px 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}

.leaderboard-table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.leaderboard-table tbody tr {
  transition: background 0.2s ease;
}

.leaderboard-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tbl-rank {
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
}

.tbl-store-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tbl-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  overflow: hidden;
}

.tbl-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.tbl-store-name {
  font-weight: 600;
  color: #fff;
}

.tbl-sales {
  text-align: center;
  font-weight: 500;
}

.tbl-volume {
  text-align: right;
  font-weight: 700;
  color: var(--success);
}

/* ── Features Section ─────────────────────────────────────── */
.features-section {
  padding: 80px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--bg-surface-hover);
}

.f-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .f-icon {
  background: #fff;
  color: var(--bg-base);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fc-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(50px);
  top: -75px;
  right: -75px;
  opacity: 0.1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.feature-card:hover .fc-glow {
  opacity: 0.25;
}

.glow-blue { background-color: var(--secondary); }
.glow-purple { background-color: var(--primary); }
.glow-green { background-color: var(--success); }
.glow-orange { background-color: var(--warning); }
.glow-pink { background-color: #ec4899; }
.glow-cyan { background-color: #06b6d4; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #030307;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0 0;
  margin-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer-info {
  max-width: 320px;
}

.footer-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.link-group h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.link-group a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(0.95); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.05); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(0.95); opacity: 0.3; }
}

.animate-float {
  animation: floatCard 5s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-pulse {
  animation: pulsePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulsePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

.text-purple { color: #c084fc; }
.text-green { color: #34d399; }

/* ── Responsive Rules ─────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  header {
    padding: 12px 0;
  }
  
  .hero-section {
    padding: 40px 0 60px 0;
  }
  
  .podium-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .podium-card {
    width: 100%;
    max-width: 320px;
    height: auto !important;
  }
  
  .podium-card.first {
    order: 1;
  }
  
  .podium-card.second {
    order: 2;
  }
  
  .podium-card.third {
    order: 3;
  }
}
