/**
 * TikLog — モバイルブランドヘッダー
 */

.mobile-brand-header,
.mobile-page-header {
  display: none;
}

@media (max-width: 960px) {
  .mobile-brand-header {
    display: grid;
    grid-template-columns: 2.25rem 1fr 2.25rem;
    align-items: start;
    gap: 0.35rem;
    margin: 0 -0.55rem 0.45rem;
    padding: max(0.35rem, env(safe-area-inset-top)) 0.55rem 0.4rem;
    background: linear-gradient(180deg, rgba(6, 7, 14, 0.95) 0%, rgba(6, 7, 14, 0.72) 100%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.18);
    position: sticky;
    top: 0;
    z-index: 92;
  }

  .mobile-brand-header__menu,
  .mobile-brand-header__notify {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.12);
    color: #e9d5ff;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.15rem;
  }

  .mobile-brand-header__body {
    text-align: center;
    min-width: 0;
  }

  .mobile-brand-header__en {
    margin: 0;
    font-family: var(--font-display, 'Orbitron', sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  .mobile-brand-header__tik {
    color: #fff;
  }

  .mobile-brand-header__log {
    background: linear-gradient(90deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .mobile-brand-header__ja {
    margin: 0.1rem 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
  }

  .mobile-brand-header__tag {
    margin: 0.1rem 0 0;
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.02em;
  }

  .mobile-page-header {
    display: none;
    grid-template-columns: 2.25rem 1fr 2.25rem;
    align-items: center;
    gap: 0.35rem;
    margin: 0 -0.55rem 0.45rem;
    padding: max(0.35rem, env(safe-area-inset-top)) 0.55rem 0.4rem;
    background: linear-gradient(180deg, rgba(6, 7, 14, 0.95) 0%, rgba(6, 7, 14, 0.72) 100%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.18);
    position: sticky;
    top: 0;
    z-index: 92;
  }

  #liver-shell.mobile-tab-mode:not([data-mobile-tab='home']) .mobile-page-header {
    display: grid;
  }

  #liver-shell.mobile-tab-mode:not([data-mobile-tab='home']) .mobile-brand-header {
    display: none;
  }

  .mobile-page-header__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
}