/* ── LIVE INDICATOR ── */
.live-indicator {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(23,221,98,0.08);
  border: 1px solid rgba(23,221,98,0.28);
  padding: 4px 12px 4px 8px; border-radius: 20px;
  font-size: 0.72rem; color: var(--green);
  letter-spacing: 1px;
}
.live-bars { display: flex; align-items: flex-end; gap: 2px; height: 13px; }
.lb { width: 3px; border-radius: 2px; background: var(--green); animation: barBeat 1.1s ease-in-out infinite; }
.lb1 { height: 4px;  animation-delay: 0s;    animation-duration: 0.9s; }
.lb2 { height: 8px;  animation-delay: 0.15s; animation-duration: 1.1s; }
.lb3 { height: 12px; animation-delay: 0.3s;  animation-duration: 0.85s; }
.lb4 { height: 6px;  animation-delay: 0.45s; animation-duration: 1.2s; }
@keyframes barBeat {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.3); opacity: 0.4; }
}

/* ── DASHBOARD LAYOUT ── */
.status-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* ── MAIN CARD ── */
.status-main-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: clamp(1.1rem,3vw,1.6rem) clamp(1.2rem,3vw,2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr;
  align-items: center;
  gap: clamp(0.8rem,2.5vw,1.6rem);
  position: relative; overflow: hidden;
}
/* ── STATUS DOT ── */
.status-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.status-dot-wrap  { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.status-dot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.orb-core {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.6) 0%, transparent 50%), #a855f7;
  box-shadow: 0 0 12px rgba(168,85,247,0.8), 0 0 28px rgba(168,85,247,0.35);
  animation: orbPulse 2.5s ease-in-out infinite;
  position: relative; transition: background 0.4s, box-shadow 0.4s;
}
.orb-core::after {
  content: ''; position: absolute; top: 4px; left: 6px;
  width: 6px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.55); filter: blur(1px);
}
@keyframes orbPulse {
  0%,100% { box-shadow: 0 0 10px rgba(168,85,247,0.7), 0 0 22px rgba(168,85,247,0.3); }
  50%      { box-shadow: 0 0 18px rgba(168,85,247,1), 0 0 38px rgba(168,85,247,0.55); }
}
.status-dot.is-online .orb-core {
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.6) 0%, transparent 50%), #a855f7;
}
.status-dot.is-offline .orb-core {
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5) 0%, transparent 50%), #ff3a3a;
  box-shadow: 0 0 12px rgba(255,58,58,0.8), 0 0 26px rgba(255,58,58,0.4);
  animation: orbPulseRed 2s ease-in-out infinite;
}
@keyframes orbPulseRed {
  0%,100% { box-shadow: 0 0 10px rgba(255,58,58,0.7), 0 0 20px rgba(255,58,58,0.3); }
  50%      { box-shadow: 0 0 18px rgba(255,58,58,1), 0 0 34px rgba(255,58,58,0.5); }
}
.status-dot.is-error .orb-core {
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5) 0%, transparent 50%), #f4c430;
  box-shadow: 0 0 12px rgba(244,196,48,0.8), 0 0 26px rgba(244,196,48,0.35);
}
/* Rings */
.status-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,0.4);
  animation: rippleOut 2.6s ease-out infinite; pointer-events: none;
}
.sr1 { inset: -5px;  animation-delay: 0s;   border-color: rgba(168,85,247,0.5); }
.sr2 { inset: -14px; animation-delay: 0.65s; border-color: rgba(168,85,247,0.3); }
.sr3 { inset: -23px; animation-delay: 1.3s;  border-color: rgba(168,85,247,0.15); }
@keyframes rippleOut {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.5);  opacity: 0; }
}
.status-dot.is-online ~ .sr1,.status-dot.is-online ~ .sr2,.status-dot.is-online ~ .sr3 { border-color: rgba(168,85,247,0.4); }
.status-dot.is-offline + .sr1,.status-dot.is-offline + .sr1 ~ .sr2,.status-dot.is-offline + .sr1 ~ .sr3 { border-color: rgba(255,58,58,0.4); }

/* Status text */
.status-text-main {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.45rem; letter-spacing: 2px;
  color: var(--green);
  text-align: center; white-space: nowrap;
}

/* ── SERVER INFO ── */
.status-info { flex: 1; min-width: 0; }
.server-name-display {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.52rem, 1.4vw, 0.72rem);
  color: var(--text); margin-bottom: 5px; line-height: 1.5;
}
.server-address {
  font-size: clamp(0.78rem,1.8vw,0.88rem);
  color: var(--text-muted); margin-bottom: 10px;
  font-feature-settings: 'tnum';
}
.server-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.s-tag {
  font-family: 'Press Start 2P', monospace; font-size: 0.38rem;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); letter-spacing: 1px;
}
.s-tag.diamond { color: var(--diamond); border-color: rgba(192,132,252,0.25); background: rgba(192,132,252,0.05); }
.s-tag.gold    { color: var(--gold);    border-color: rgba(244,196,48,0.25);  background: rgba(244,196,48,0.05); }
.s-tag.green   { color: var(--green);   border-color: rgba(23,221,98,0.25);   background: rgba(23,221,98,0.05); }

/* ── LATENCY BLOCK ── */
.latency-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 80px;
  align-self: center;
}
.latency-label {
  font-family: 'Press Start 2P', monospace; font-size: 0.38rem;
  color: var(--text-muted); letter-spacing: 2px; margin-bottom: 4px;
}
.latency-value {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.85rem,2.5vw,1.4rem); color: var(--diamond); line-height: 1;
  white-space: nowrap;
}
.latency-unit { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }

/* ── 4 STAT CARDS ── */
.status-live-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.live-stat-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: clamp(0.85rem,2vw,1.2rem);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.2s;
  position: relative; overflow: hidden;
}
.live-stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,85,247,0.04), transparent 70%);
  pointer-events: none;
}
.live-stat-card:hover {
  border-color: rgba(168,85,247,0.35);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(168,85,247,0.1);
  transform: translateY(-2px);
}
.live-stat-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168,85,247,0.1); color: var(--diamond); flex-shrink: 0;
}
.live-stat-icon svg { width: 16px; height: 16px; display: block; }
.live-stat-card:nth-child(1) .live-stat-icon { background: rgba(23,221,98,0.1);   color: var(--green); }
.live-stat-card:nth-child(2) .live-stat-icon { background: rgba(192,132,252,0.1); color: var(--diamond); }
.live-stat-card:nth-child(3) .live-stat-icon { background: rgba(244,196,48,0.1);  color: var(--gold); }
.live-stat-card:nth-child(4) .live-stat-icon { background: rgba(78,227,227,0.1);  color: #4ee3e3; }
.live-stat-val {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.75rem,2vw,1rem); color: var(--text);
  display: block; line-height: 1.2;
}
.live-stat-val.diamond { color: var(--diamond); }
.live-stat-val.gold    { color: var(--gold); }
.live-stat-label { font-size: 0.73rem; color: var(--text-muted); line-height: 1.3; }

/* ── PLAYER LIST ── */
.last-updated { font-size: 0.76rem; color: var(--text-muted); text-align: center; padding: 0.4rem 0; }
.refresh-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.45rem, 1.2vw, 0.58rem);
  background: transparent;
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--green);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  margin: 0 auto;
  min-height: 44px; /* touch target */
  letter-spacing: 1px;
}
.refresh-btn:hover { background: rgba(168,85,247,0.1); border-color: var(--green); }

/* ============================================================
   FEATURES
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(0.8rem, 2vw, 1.25rem);
}
.feat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--feat-accent, var(--green));
  opacity: 0; transition: opacity 0.25s;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2); /* fallback browser lama */
  border-color: color-mix(in srgb, var(--feat-accent, var(--green)) 40%, transparent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.feat-icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.fi-svg {
  width: 100%; height: 100%;
  color: var(--feat-accent, var(--green));
  overflow: visible;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--feat-accent, var(--green)) 50%, transparent));
  transition: filter 0.3s;
}
.feat-card:hover .fi-svg {
  filter: drop-shadow(0 0 12px var(--feat-accent, var(--green)));
}
.feat-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.5rem; color: var(--text-muted); margin-bottom: 4px; display: block;
}
.feat-name {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.55rem, 1.4vw, 0.7rem);
  color: var(--text);
  margin-bottom: 8px; line-height: 1.5;
}
.feat-desc { font-size: clamp(0.8rem, 1.8vw, 0.88rem); color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.feat-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  color: var(--green);
  letter-spacing: 1px;
  display: inline-block;
}
.feat-tag.gold { color: var(--gold); background: rgba(244,196,48,0.08); border-color: rgba(244,196,48,0.2); }
.feat-tag.red { color: var(--redstone); background: rgba(255,58,58,0.08); border-color: rgba(255,58,58,0.2); }
.feat-tag.diamond { color: var(--diamond); background: rgba(192,132,252,0.08); border-color: rgba(192,132,252,0.2); }

/* ============================================================
   SEED SECTION
============================================================ */
.seed-section { background: var(--bg2); }
.seed-card {
  max-width: 480px; margin: 0 auto;
  background: var(--bg3);
  border: 2px solid rgba(244,196,48,0.3);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 0 40px rgba(244,196,48,0.08);
}
.seed-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.5rem; color: var(--text-muted); letter-spacing: 3px; margin-bottom: 1rem;
}
.seed-value {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(3rem, 12vw, 6rem);
  color: var(--gold);
  filter: drop-shadow(0 0 20px rgba(244,196,48,0.4));
  margin-bottom: 0.5rem;
}
.seed-sub { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   RULES
============================================================ */
.rules-section { background: var(--bg); }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}
  /* Live stat cards */
  .live-stat-card  { padding: 0.75rem; gap: 8px; }
  .live-stat-val   { font-size: 0.9rem; }
  .live-stat-label { font-size: 0.7rem; }
  .live-stat-icon  { font-size: 1.1rem; }

/* ── LATENCY NUMBER ── */
.latency-num {
  animation: latencyFlicker 4s ease-in-out infinite;
}
@keyframes latencyFlicker {
  0%,90%,100% { text-shadow: none; }
  92%  { text-shadow: 0 0 12px rgba(192,132,252,0.9); }
  96%  { text-shadow: 0 0 4px rgba(192,132,252,0.4); }
  98%  { text-shadow: 0 0 14px rgba(192,132,252,1); }
}

/* ── REFRESH BUTTON ── */
.refresh-btn {
  position: relative; overflow: hidden;
}
.refresh-btn::before {
  content: '';
  position: absolute; top: 50%; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.2), transparent);
  transform: translateY(-50%) skewX(-20deg);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%   { left: -60%; }
  100% { left: 140%; }
}

/* ── LIVE-STAT-VAL number update flash ── */
.live-stat-val.updated {
  animation: numFlash 0.5s ease-out;
}
@keyframes numFlash {
  0%   { color: var(--green); text-shadow: 0 0 16px var(--green); }
  100% { color: inherit; text-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  .card-scan-line, .live-bars .lb, .status-ring,
  .live-indicator, .status-dot, .status-text-main,
  .status-main-card, .live-stat-card::after,
  .live-stat-icon, .latency-num, .refresh-btn::before { animation: none !important; }
}


/* ── Server status card ── */
.live-indicator { font-size: clamp(0.68rem, 1.5vw, 0.8rem) !important; }
.status-text-main { font-size: var(--f-2xs) !important; }
.server-name-display { font-size: clamp(0.55rem, 1.4vw, 0.72rem) !important; }
.server-address { font-size: clamp(0.78rem, 1.8vw, 0.88rem) !important; }
.s-tag { font-size: var(--f-2xs) !important; }
.latency-label { font-size: var(--f-2xs) !important; }
.latency-value { font-size: clamp(0.88rem, 2.5vw, 1.4rem) !important; }
.latency-unit  { font-size: clamp(0.65rem, 1.2vw, 0.7rem) !important; }

/* Live stat cards */
.live-stat-val   { font-size: clamp(0.78rem, 1.8vw, 1rem) !important; }
.live-stat-label { font-size: clamp(0.7rem, 1.3vw, 0.78rem) !important; }

  /* Live stat cards */
  .live-stat-card { padding: clamp(0.65rem, 2vw, 0.85rem) !important; gap: 6px !important; }

  /* Status main card */
  .status-main-card { gap: clamp(0.5rem, 2vw, 0.8rem) !important; padding: 0.85rem 0.75rem !important; }
  .latency-block { min-width: 56px !important; }

  /* QRIS stack */
  .qris-card { width: min(200px, 85vw) !important; }

/* ── LIVE STAT CARDS: always 4 columns, all breakpoints ────────────────────── */
.status-live-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: clamp(6px, 1.5vw, 10px) !important;
}
.live-stat-card {
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  padding: clamp(0.6rem, 2vw, 1.2rem) !important;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s !important;
  min-width: 0 !important;
  align-items: center !important;
  text-align: center !important;
}
.live-stat-card:hover { transform: translateY(-3px) !important; border-color: rgba(168,85,247,0.2) !important; }
.live-stat-val { font-size: clamp(0.62rem, 2.2vw, 1rem) !important; }
.live-stat-label { font-size: clamp(0.58rem, 1.4vw, 0.73rem) !important; }
.live-stat-icon { width: clamp(22px, 4vw, 28px) !important; height: clamp(22px, 4vw, 28px) !important; }
.live-stat-icon svg { width: clamp(12px, 2.5vw, 16px) !important; height: clamp(12px, 2.5vw, 16px) !important; }
/* Override all mobile overrides that set 2 columns */
@media (max-width: 900px) { .status-live-stats { grid-template-columns: repeat(4, 1fr) !important; } }
@media (max-width: 768px) { .status-live-stats { grid-template-columns: repeat(4, 1fr) !important; gap: 6px !important; } }
@media (max-width: 600px) { .status-live-stats { grid-template-columns: repeat(4, 1fr) !important; gap: 5px !important; } }
@media (max-width: 480px) {
  .status-live-stats { grid-template-columns: repeat(4, 1fr) !important; gap: 4px !important; }
  .live-stat-card { padding: 0.45rem 0.35rem !important; gap: 3px !important; }
  .live-stat-val { font-size: clamp(0.48rem, 2.8vw, 0.62rem) !important; }
  .live-stat-label { font-size: clamp(0.42rem, 1.8vw, 0.52rem) !important; }
  .live-stat-icon { width: 18px !important; height: 18px !important; border-radius: 5px !important; }
  .live-stat-icon svg { width: 10px !important; height: 10px !important; }
}
@media (max-width: 360px) {
  .live-stat-card { padding: 0.4rem 0.28rem !important; gap: 3px !important; }
  .live-stat-val { font-size: 0.46rem !important; }
  .live-stat-label { font-size: 0.4rem !important; }
  .live-stat-icon { width: 16px !important; height: 16px !important; }
  .live-stat-icon svg { width: 9px !important; height: 9px !important; }
}

.qris-card { border-radius: 16px !important; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(168,85,247,0.1) !important; transition: box-shadow 0.3s, transform 0.3s !important; }
.qris-card:hover { transform: translateY(-3px) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(168,85,247,0.2) !important; }
.qris-info { background: rgba(168,85,247,0.03) !important; border: 1px solid rgba(168,85,247,0.1) !important; border-radius: 16px !important; padding: clamp(1.2rem,3vw,2rem) !important; }
.qris-step { gap: 12px !important; padding: 10px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
.qris-step:last-child { border-bottom: none; }
.qris-step-num { width: 26px !important; height: 26px !important; min-width: 26px !important; font-size: 0.48rem !important; border-radius: 6px !important; }
.qris-step-text { font-size: clamp(0.78rem,1.8vw,0.88rem) !important; line-height: 1.65 !important; }
.qris-note { border-radius: 10px !important; background: rgba(168,85,247,0.06) !important; border: 1px solid rgba(168,85,247,0.15) !important; padding: 12px 16px !important; line-height: 1.7 !important; font-size: clamp(0.78rem,1.8vw,0.86rem) !important; }
.qris-store-name { letter-spacing: 0.5px !important; }
.qris-nmid { border-radius: 8px !important; border: 1px solid rgba(168,85,247,0.15) !important; background: rgba(168,85,247,0.04) !important; }

.shop-tab { border-radius: 7px !important; letter-spacing: 0.5px !important; }
.shop-tab.active { box-shadow: 0 0 14px rgba(168,85,247,0.25) !important; }
.shop-card { border-radius: 12px !important; border: 1px solid rgba(255,255,255,0.07) !important; transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s !important; }
.shop-card:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 36px rgba(0,0,0,0.4) !important; }

.hero-season { letter-spacing: 8px !important; font-size: clamp(0.78rem,2.2vw,1.1rem) !important; }
.hero-sub { letter-spacing: 6px !important; opacity: 0.6; }
.hero-pill { border-radius: 8px !important; padding: 7px 14px !important; border-color: rgba(168,85,247,0.18) !important; }
.hero-ip-box { border-radius: 10px !important; }
.btn-primary, .btn-outline { border-radius: 10px !important; letter-spacing: 0.5px !important; }
.notice-box { border-radius: 12px !important; border: 1px solid rgba(244,196,48,0.15) !important; background: rgba(244,196,48,0.04) !important; }

footer { border-top: 1px solid rgba(168,85,247,0.1) !important; padding: clamp(2.5rem,6vw,4rem) 0 clamp(1.5rem,4vw,2.5rem) !important; }
.footer-links a { opacity: 0.7; transition: opacity 0.18s, color 0.18s !important; }
.footer-links a:hover { opacity: 1; color: var(--green) !important; }
.footer-copy { opacity: 0.4; }
.grass-divider { margin-bottom: -2px; }


/* ===================================================================
   STATUS MAIN CARD — REDESIGNED
   =================================================================== */

/* Latency block — card-in-card style */
.latency-block {
  text-align: center !important;
  display: flex !important; flex-direction: column !important;
  align-items: center !important; justify-content: center !important;
  min-width: 84px !important; align-self: center !important;
  background: rgba(192,132,252,0.06) !important;
  border: 1px solid rgba(192,132,252,0.15) !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  position: relative; z-index: 2;
}
.latency-label {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 0.36rem !important;
  color: var(--text-muted) !important; letter-spacing: 2px !important;
  margin-bottom: 5px !important;
}
.latency-value {
  font-family: 'Press Start 2P', monospace !important;
  font-size: clamp(0.85rem,2.5vw,1.5rem) !important;
  color: var(--diamond) !important; line-height: 1 !important;
  white-space: nowrap !important;
  filter: drop-shadow(0 0 8px rgba(192,132,252,0.6)) !important;
}
.latency-unit {
  font-size: 0.66rem !important; color: var(--text-muted) !important;
  margin-top: 4px !important;
}





/* ===================================================================
   HERO TITLE — STRIKING · CLEAN · PREMIUM
   =================================================================== */

/* Background aura behind title */
@keyframes auraPulse {
  0%, 100% { opacity: 0.45; transform: scale(1);    }
  50%       { opacity: 0.65; transform: scale(1.06); }
}
@keyframes titleBreathe {
  0%, 100% {
    filter:
      drop-shadow(0 0 6px rgba(255,255,255,0.35))
      drop-shadow(0 0 28px rgba(168,85,247,0.55))
      drop-shadow(0 0 72px rgba(168,85,247,0.18));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(255,255,255,0.55))
      drop-shadow(0 0 40px rgba(168,85,247,0.75))
      drop-shadow(0 0 90px rgba(168,85,247,0.28));
  }
}
@keyframes shimmerPremium {
  0%   { background-position: -150% center; }
  100% { background-position: 250% center; }
}

/* Status text */
.loading-status {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.28rem, 0.65vw, 0.36rem);
  color: rgba(192,132,252,0.38);
  letter-spacing: 0.3em;
  margin-top: 10px; height: 12px;
  animation: contentRise 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}

/* Corner brackets */
.loading-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(168,85,247,0.22);
  border-style: solid; z-index: 2;
  animation: cornerIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
@keyframes cornerIn {
  from { opacity: 0; } to { opacity: 1; }
}
.loading-corner.tl { top: 24px; left: 24px; border-width: 1px 0 0 1px; }
.loading-corner.tr { top: 24px; right: 24px; border-width: 1px 1px 0 0; }
.loading-corner.bl { bottom: 24px; left: 24px; border-width: 0 0 1px 1px; }
.loading-corner.br { bottom: 24px; right: 24px; border-width: 0 1px 1px 0; }
