/* ======================================================
   HEADER FINAL APP STYLE - SIMPLE BRAND ONLY
====================================================== */

.mjv2-header{
  position: relative;
  top: auto;
  z-index: 10;
  width: 100%;
  margin-bottom: 16px;

  background:
    linear-gradient(180deg, rgba(11,18,32,.94), rgba(9,15,27,.96));
  border-bottom: 1px solid rgba(110,150,220,.10);
  box-shadow:
    0 10px 24px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.02);
}

.mjv2-header-inner{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* ======================================================
   SIMPLE HEADER MODIFIER
====================================================== */

.mjv2-header--simple .mjv2-header-inner{
  justify-content: flex-start;
}

/* ======================================================
   BRAND
====================================================== */

.mjv2-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.mjv2-brand:hover{
  text-decoration: none;
}

.mjv2-brand-dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 14px;
  background: linear-gradient(135deg, var(--mjv2-primary), var(--mjv2-primary-2));
  box-shadow:
    0 0 0 6px rgba(42,171,238,.10),
    0 4px 12px rgba(42,171,238,.20),
    0 0 18px rgba(42,171,238,.14);
}

.mjv2-brand-text{
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--mjv2-text);
  white-space: nowrap;
}

.mjv2-brand > span:last-child:not(.mjv2-brand-dot){
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--mjv2-text);
  white-space: nowrap;
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 900px){
  .mjv2-header{
    margin-bottom: 14px;
  }

  .mjv2-header-inner{
    min-height: 68px;
    gap: 14px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .mjv2-brand-text,
  .mjv2-brand > span:last-child:not(.mjv2-brand-dot){
    font-size: 17px;
  }
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 640px){
  .mjv2-header{
    margin-bottom: 12px;
  }

  .mjv2-header-inner{
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }

  .mjv2-brand-dot{
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }

  .mjv2-brand-text,
  .mjv2-brand > span:last-child:not(.mjv2-brand-dot){
    font-size: 16px;
  }
}

/* ======================================================
   ULTRA SMALL
====================================================== */

@media (max-width: 420px){
  .mjv2-header{
    margin-bottom: 10px;
  }

  .mjv2-header-inner{
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mjv2-brand{
    gap: 10px;
  }

  .mjv2-brand-text,
  .mjv2-brand > span:last-child:not(.mjv2-brand-dot){
    font-size: 15px;
  }
}