/* Global left sidebar — ink-gold terminal theme */

:root {
  --sidebar-w: 220px;
}

html {
  overflow-x: hidden;
}

.mv-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

.mv-sidebar {
  flex: 0 0 var(--sidebar-w);
  width: var(--sidebar-w);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: rgba(13, 17, 25, 0.96);
  border-right: 1px solid #1d2534;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.mv-sidebar-brand {
  padding: 20px 18px 16px;
  border-bottom: 1px solid #1d2534;
}

.mv-sidebar-brand a {
  text-decoration: none;
  color: #e6cf9a;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-sidebar-brand span {
  font-size: 1.25rem;
}

.mv-sidebar-brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #8b93a7;
}

.mv-sidebar-nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mv-sidebar-label {
  padding: 10px 12px 4px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c9a86a;
  opacity: 0.8;
}

.mv-sidebar-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  color: #8b93a7;
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}

.mv-sidebar-nav a:hover {
  background: rgba(201, 168, 106, 0.08);
  color: #e9e4d6;
}

.mv-sidebar-nav a.active {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.22), rgba(201, 168, 106, 0.08));
  color: #e6cf9a;
  font-weight: 600;
  border-left: 2px solid #c9a86a;
}

.mv-sidebar-legal {
  padding: 14px 16px 18px;
  border-top: 1px solid #1d2534;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #6b7386;
}

.mv-sidebar-legal b {
  display: block;
  color: #c9a86a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.mv-legal-foot {
  margin: 28px 0 0;
  padding: 16px 20px 22px;
  border-top: 1px solid #1d2534;
  font-size: 0.74rem;
  line-height: 1.6;
  color: #6b7386;
  text-align: center;
}

.mv-legal-foot b {
  color: #c9a86a;
  font-weight: 600;
  margin-right: 6px;
}

.mv-main {
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  max-width: 100%;
}
