html, body { height: 100%; overflow: hidden; }
body::before { position: fixed; }

.ix-container.container {
  max-width: 860px;
  padding: 48px 24px;
  height: calc(100% - 73px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ix-welcome { flex-shrink: 0; }

.ix-greeting {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ix-event-info { font-size: 13px; color: var(--muted); }
.ix-event-name { font-weight: 600; color: var(--txt); }

.ix-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  flex-shrink: 0;
}

.ix-stat-card {
  background: var(--card);
  border: 1px solid rgba(85,194,255,.1);
  border-radius: 14px;
  padding: 20px 20px 16px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.ix-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .35;
}

.ix-stat-card:hover {
  border-color: rgba(85,194,255,.25);
  transform: translateY(-2px);
  background: rgba(85,194,255,.03);
}

.ix-stat-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(85,194,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
}

.ix-stat-icon { font-size: 22px; }

.ix-stat-val {
  font-size: 34px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
  letter-spacing: -.5px;
  margin-bottom: 5px;
}

.ix-stat-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}


/* ---- Loading Overlay ---- */
.ix-loader {
  position: fixed;
  inset: 0;
  background: var(--bg, #080e1a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity .5s ease;
}

.ix-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.ix-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Concentric spinning rings */
.ix-loader-rings {
  position: relative;
  width: 80px;
  height: 80px;
}

.ix-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.ring-1 {
  inset: 0;
  border-top-color: var(--accent, #55c2ff);
  animation: spin 1.2s linear infinite;
}

.ring-2 {
  inset: 12px;
  border-right-color: var(--accent, #55c2ff);
  opacity: .5;
  animation: spin 1.8s linear infinite reverse;
}

.ring-3 {
  inset: 24px;
  border-bottom-color: var(--accent, #55c2ff);
  opacity: .25;
  animation: spin 2.4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.ix-loader-label {
  font-size: 13px;
  color: var(--muted, #7a91ae);
  letter-spacing: .04em;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
