@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════════════
   Glitch Servers — Status Page
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:    #0a0a0f;
  --bg2:   #0f0f1a;
  --card:  #13131f;
  --card2: #1a1a2e;
  --p:     #7c3aed;
  --ps:    #8b5cf6;
  --pb:    rgba(124,58,237,0.3);
  --pg:    rgba(124,58,237,0.12);
  --t1:    #f1f0ff;
  --t2:    #a09ab8;
  --t3:    #6b6480;
  --br:    rgba(255,255,255,0.06);
  --c-op:    #4ade80;
  --c-op-bg: rgba(74,222,128,0.1);
  --c-deg:   #fb923c;
  --c-deg-bg:rgba(251,146,60,0.1);
  --c-dn:    #f87171;
  --c-dn-bg: rgba(248,113,113,0.1);
  --c-mn:    #60a5fa;
  --c-mn-bg: rgba(96,165,250,0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  min-height: 100vh;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--p); border-radius: 3px; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(10,10,15,0.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--br); }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 30px; width: auto; display: block; }
nav ul { display: flex; gap: 32px; list-style: none; }
nav ul a { color: var(--t2); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
nav ul a:hover { color: var(--t1); }
.nav-btn { background: var(--p); color: #fff; padding: 9px 20px; border-radius: 8px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.nav-btn:hover { background: var(--ps); transform: translateY(-1px); }

/* DROPDOWNS */
.has-drop { position: relative; }
.has-drop > a { display: flex !important; align-items: center; gap: 5px; }
.caret { font-size: 0.58rem; opacity: 0.6; transition: transform 0.2s, opacity 0.2s; display: inline-block; }
.has-drop:hover .caret { transform: rotate(180deg); opacity: 1; }
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(11,11,18,0.97); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 10px;
  min-width: 220px; opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(124,58,237,0.1); z-index: 200;
}
.nav-drop::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-drop:hover .nav-drop { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-drop a { display: flex; align-items: center; gap: 13px; padding: 11px 14px; border-radius: 10px; color: var(--t2); text-decoration: none; font-size: 0.875rem; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-drop a:hover { background: rgba(255,255,255,0.05); color: var(--t1); }
.nav-drop a:hover .drop-icon { background: rgba(124,58,237,0.22); border-color: rgba(124,58,237,0.55); color: var(--ps); }
.nav-drop-wide { min-width: 300px; }
.drop-icon { width: 38px; height: 38px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 9px; color: var(--t2); transition: all 0.15s; }
.drop-text { display: flex; flex-direction: column; gap: 3px; }
.drop-title { font-size: 0.875rem; font-weight: 600; color: var(--t1); line-height: 1.3; }
.drop-desc { font-size: 0.755rem; color: var(--t3); line-height: 1.4; font-weight: 400; }
.drop-div { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 6px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--t2); border-radius: 2px; transition: all 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════ */
.status-wrap { padding-top: 64px; }

.status-hero {
  position: relative;
  padding: 72px 48px 60px;
  text-align: center;
  overflow: hidden;
}
.status-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1), transparent 65%);
  pointer-events: none;
}
.status-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pb), transparent);
}
.status-hero-inner { position: relative; max-width: 620px; margin: 0 auto; }

.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pg); border: 1px solid var(--pb);
  color: var(--ps); padding: 6px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 22px;
}
.status-badge-dot {
  width: 6px; height: 6px; background: var(--ps); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.status-hero h1 {
  font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 14px;
}
.status-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c4b5fd, var(--p));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.status-hero p { font-size: 0.95rem; color: var(--t2); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   OVERALL STATUS BANNER
══════════════════════════════════════════════════ */
.overall-banner {
  max-width: 900px; margin: 0 auto;
  padding: 0 48px 32px;
}
.overall-card {
  border-radius: 16px;
  padding: 24px 32px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid transparent;
  transition: all .4s ease;
}
.overall-card.op  { background: var(--c-op-bg);  border-color: rgba(74,222,128,0.2); }
.overall-card.deg { background: var(--c-deg-bg); border-color: rgba(251,146,60,0.2); }
.overall-card.dn  { background: var(--c-dn-bg);  border-color: rgba(248,113,113,0.2); }

.overall-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0; position: relative;
}
.overall-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}
.overall-card.op  .overall-dot { background: var(--c-op); }
.overall-card.op  .overall-dot::after { background: rgba(74,222,128,0.25); }
.overall-card.deg .overall-dot { background: var(--c-deg); }
.overall-card.deg .overall-dot::after { background: rgba(251,146,60,0.25); }
.overall-card.dn  .overall-dot { background: var(--c-dn); }
.overall-card.dn  .overall-dot::after { background: rgba(248,113,113,0.25); animation: ripple-fast 1.2s ease-out infinite; }

@keyframes ripple      { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(2.8);opacity:0} }
@keyframes ripple-fast { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(3);opacity:0} }

.overall-text h2 { font-size: 1rem; font-weight: 700; }
.overall-card.op  .overall-text h2 { color: var(--c-op); }
.overall-card.deg .overall-text h2 { color: var(--c-deg); }
.overall-card.dn  .overall-text h2 { color: var(--c-dn); }
.overall-text p { font-size: 0.82rem; color: var(--t2); margin-top: 2px; }

/* ══════════════════════════════════════════════════
   ACTIVE INCIDENT ALERT
══════════════════════════════════════════════════ */
.incident-alert { max-width: 900px; margin: 0 auto 0; padding: 0 48px 16px; }
.incident-alert-card {
  background: rgba(139,92,246,0.07);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 14px; padding: 20px 26px;
}
.incident-alert-card .ia-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.ia-badge {
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.ia-badge.critical { background: rgba(248,113,113,0.15); color: var(--c-dn); border: 1px solid rgba(248,113,113,0.3); }
.ia-badge.major    { background: rgba(251,146,60,0.15);  color: var(--c-deg); border: 1px solid rgba(251,146,60,0.3); }
.ia-badge.minor    { background: rgba(96,165,250,0.12);  color: var(--c-mn); border: 1px solid rgba(96,165,250,0.25); }
.ia-title  { font-size: 0.95rem; font-weight: 600; }
.ia-update { font-size: 0.85rem; color: var(--t2); line-height: 1.55; }
.ia-meta   { font-size: 0.75rem; color: var(--t3); margin-top: 8px; }

/* ══════════════════════════════════════════════════
   MAINTENANCE BANNER
══════════════════════════════════════════════════ */
.maint-banner { max-width: 900px; margin: 0 auto; padding: 0 48px 12px; }
.maint-card {
  background: rgba(96,165,250,0.07);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 14px; padding: 16px 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.maint-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; padding-top: 2px; }
.maint-info h3 { font-size: 0.9rem; font-weight: 600; color: var(--c-mn); }
.maint-info p  { font-size: 0.82rem; color: var(--t2); margin-top: 2px; }
.maint-countdown { font-size: 0.75rem; color: var(--t3); margin-top: 4px; }
.maint-countdown span { color: var(--c-mn); font-weight: 600; }

/* ══════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════ */
.components-section {
  max-width: 900px; margin: 0 auto; padding: 32px 48px 0;
  border-top: 1px solid var(--br);
}
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 16px;
}

.category-block { margin-bottom: 8px; }
.category-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--card2); border-radius: 12px 12px 0 0;
  border: 1px solid var(--br); border-bottom: none;
  cursor: pointer; user-select: none; transition: background .15s;
}
.category-header:hover { background: #1e1e34; }
.category-name { font-size: 0.875rem; font-weight: 600; }
.category-summary { font-size: 0.78rem; color: var(--t3); }
.category-caret { color: var(--t3); transition: transform .2s; font-size: 0.7rem; }
.category-block.collapsed .category-caret { transform: rotate(-90deg); }

.monitor-list {
  border: 1px solid var(--br); border-top: none;
  border-radius: 0 0 12px 12px; overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
}
.category-block.collapsed .monitor-list { max-height: 0; opacity: 0; overflow: hidden; }

.monitor-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center; gap: 16px;
  padding: 14px 20px;
  background: var(--card);
  border-bottom: 1px solid var(--br);
  transition: background .15s;
}
.monitor-row:last-child { border-bottom: none; }
.monitor-row:hover { background: #14142a; }
.monitor-name { font-size: 0.875rem; font-weight: 500; }

/* 90-day uptime bars */
.uptime-grid { display: flex; gap: 2px; align-items: center; }
.uptime-bar {
  width: 7px; height: 28px; border-radius: 2px;
  flex-shrink: 0; cursor: pointer;
  position: relative; transition: transform .1s;
}
.uptime-bar:hover { transform: scaleY(1.15); z-index: 1; }
.uptime-bar.op   { background: var(--c-op); opacity: .75; }
.uptime-bar.op:hover { opacity: 1; }
.uptime-bar.deg  { background: var(--c-deg); }
.uptime-bar.dn   { background: var(--c-dn); }
.uptime-bar.mn   { background: var(--c-mn); opacity: .6; }
.uptime-bar.none { background: var(--card2); }
.uptime-bar::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: rgba(11,11,22,0.97); border: 1px solid var(--br);
  color: var(--t1); font-size: 0.72rem; white-space: nowrap;
  padding: 5px 10px; border-radius: 7px;
  pointer-events: none; opacity: 0; transition: opacity .15s; z-index: 50;
}
.uptime-bar:hover::after { opacity: 1; }
.uptime-pct { font-size: 0.75rem; color: var(--t3); white-space: nowrap; }

/* Status pill */
.status-pill {
  font-size: 0.7rem; font-weight: 700; padding: 3px 11px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
.status-pill.operational { background: var(--c-op-bg);  color: var(--c-op);  border: 1px solid rgba(74,222,128,0.2); }
.status-pill.degraded    { background: var(--c-deg-bg); color: var(--c-deg); border: 1px solid rgba(251,146,60,0.2); }
.status-pill.down        { background: var(--c-dn-bg);  color: var(--c-dn);  border: 1px solid rgba(248,113,113,0.2); }
.status-pill.maintenance { background: var(--c-mn-bg);  color: var(--c-mn);  border: 1px solid rgba(96,165,250,0.2); }

/* ══════════════════════════════════════════════════
   INCIDENT HISTORY
══════════════════════════════════════════════════ */
.history-section {
  max-width: 900px; margin: 0 auto; padding: 48px 48px 0;
  border-top: 1px solid var(--br);
  margin-top: 48px;
}
.incident-history-list { display: flex; flex-direction: column; gap: 10px; }

.inc-card {
  background: var(--card); border: 1px solid var(--br);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s;
}
.inc-card:hover { border-color: var(--pb); }
.inc-card-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer; user-select: none;
  transition: background .15s;
}
.inc-card-header:hover { background: var(--card2); }
.inc-card.open .inc-card-header { border-bottom: 1px solid var(--br); }
.inc-title { flex: 1; font-size: 0.875rem; font-weight: 600; }
.inc-meta  { font-size: 0.75rem; color: var(--t3); white-space: nowrap; }
.inc-toggle { color: var(--t3); font-size: 0.7rem; transition: transform .2s; margin-left: 8px; }
.inc-card.open .inc-toggle { transform: rotate(180deg); }
.inc-timeline { padding: 20px 22px; display: none; }
.inc-card.open .inc-timeline { display: block; }

.timeline-entry {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 0 20px; margin-bottom: 18px; position: relative;
}
.timeline-entry::before {
  content: '';
  position: absolute; left: 134px; top: 18px; bottom: -18px;
  width: 1px; background: var(--br);
}
.timeline-entry:last-child::before { display: none; }
.tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ps); position: absolute; left: 131px; top: 6px;
}
.tl-time   { font-size: 0.75rem; color: var(--t3); text-align: right; padding-top: 3px; }
.tl-status { font-size: 0.72rem; font-weight: 700; color: var(--ps); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.tl-msg    { font-size: 0.85rem; color: var(--t2); line-height: 1.55; }

/* ══════════════════════════════════════════════════
   SUBSCRIBE SECTION
══════════════════════════════════════════════════ */
.subscribe-section {
  max-width: 900px; margin: 64px auto 0; padding: 0 48px;
}
.subscribe-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(124,58,237,0.03) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px; padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.sub-copy h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.sub-copy p  { font-size: 0.875rem; color: var(--t2); line-height: 1.7; max-width: 400px; }
.sub-icons   { display: flex; gap: 10px; margin-top: 16px; }
.sub-icon    {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--card2); border: 1px solid var(--br);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: border-color .2s;
}
.sub-icon:hover { border-color: var(--pb); }
.btn-subscribe {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--p); color: #fff; border: none;
  padding: 13px 28px; border-radius: 10px;
  font-size: 0.925rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
  transition: all .2s;
}
.btn-subscribe:hover {
  background: var(--ps); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.45);
}

/* ══════════════════════════════════════════════════
   SUBSCRIBE MODAL
══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card); border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px; padding: 36px; width: 100%; max-width: 520px;
  transform: translateY(16px) scale(0.97); transition: transform .25s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.1rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--t3); cursor: pointer; font-size: 1.3rem; line-height: 1; padding: 4px; transition: color .2s; }
.modal-close:hover { color: var(--t1); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--t2); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; background: var(--bg2);
  border: 1px solid var(--br); border-radius: 10px;
  color: var(--t1); font-family: inherit; font-size: 0.875rem; padding: 10px 14px;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--ps); }
.form-group input::placeholder { color: var(--t3); }
.form-group select { cursor: pointer; }

.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.event-check {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--br); cursor: pointer;
  transition: border-color .15s, background .15s; user-select: none;
}
.event-check:hover { background: var(--card2); border-color: var(--pb); }
.event-check input[type="checkbox"] { accent-color: var(--p); width: 14px; height: 14px; }
.event-check span { font-size: 0.78rem; color: var(--t2); }
.event-check input:checked + span { color: var(--t1); }

.modal-footer { margin-top: 24px; display: flex; gap: 12px; justify-content: flex-end; }
.btn-cancel {
  background: var(--card2); border: 1px solid var(--br); color: var(--t2);
  padding: 10px 20px; border-radius: 10px; font-size: 0.875rem; cursor: pointer;
  font-family: inherit; transition: all .2s;
}
.btn-cancel:hover { color: var(--t1); border-color: rgba(255,255,255,0.15); }
.btn-submit {
  background: var(--p); color: #fff; border: none;
  padding: 10px 24px; border-radius: 10px;
  font-size: 0.875rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all .2s;
}
.btn-submit:hover { background: var(--ps); }
.btn-submit:disabled { opacity: .5; cursor: default; }

.modal-success { text-align: center; padding: 16px 0; }
.modal-success .success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.modal-success h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.modal-success p  { font-size: 0.875rem; color: var(--t2); line-height: 1.6; }
.unsub-link { color: var(--t3); font-size: 0.75rem; word-break: break-all; margin-top: 12px; display: block; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.status-footer {
  max-width: 900px; margin: 64px auto 0; padding: 28px 48px 48px;
  border-top: 1px solid var(--br);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: var(--t3); }
.footer-copy a { color: var(--t2); text-decoration: none; transition: color .2s; }
.footer-copy a:hover { color: var(--ps); }
.footer-refresh { font-size: 0.75rem; color: var(--t3); }
#last-updated { color: var(--t2); }

/* ══════════════════════════════════════════════════
   SKELETON LOADER
══════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--card) 25%, var(--card2) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.skel-banner { height: 72px; border-radius: 16px; margin-bottom: 12px; }
.skel-row    { height: 52px; border-radius: 12px; margin-bottom: 6px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  nav ul { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; gap: 0; background: rgba(10,10,15,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--br); padding: 8px 0 16px; z-index: 99; }
  nav ul.open { display: flex; }
  nav ul li { display: block; }
  nav ul a { padding: 13px 24px; display: block; font-size: 0.95rem; }
  .nav-btn { display: none; }
  .nav-toggle { display: flex; }
  .has-drop > a { justify-content: space-between; }
  .nav-drop { position: static; transform: none; opacity: 1; pointer-events: all; background: rgba(124,58,237,0.05); border: none; border-radius: 0; border-left: 2px solid var(--pb); box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0; margin: 0 24px 0 32px; display: none; transition: none; }
  .nav-drop::before { display: none; }
  .has-drop.open .nav-drop { display: block; }
  .has-drop:hover .nav-drop { transform: none; }
  .nav-drop a { padding: 11px 14px; white-space: normal; }
  .drop-icon { display: none; }
  .drop-desc { display: none; }
  .drop-title { font-size: 0.9rem; }
  .drop-div { display: none; }
  .status-hero { padding: 48px 20px 40px; }
  .status-hero h1 { font-size: 2rem; }
  .overall-banner, .incident-alert, .maint-banner { padding-left: 20px; padding-right: 20px; }
  .components-section, .history-section, .subscribe-section { padding-left: 20px; padding-right: 20px; }
  .status-footer { padding: 24px 20px 40px; flex-direction: column; text-align: center; }
  .monitor-row { grid-template-columns: 1fr auto; gap: 10px; }
  .uptime-grid { display: none; }
  .subscribe-card { flex-direction: column; text-align: center; padding: 32px 28px; }
  .sub-icons { justify-content: center; }
  .events-grid { grid-template-columns: 1fr; }
  .timeline-entry { grid-template-columns: 1fr; gap: 4px; }
  .timeline-entry::before, .tl-dot { display: none; }
  .tl-time { text-align: left; }
}
