/* =========================================
NAVBAR
========================================= */

.mmHeader{
  padding-top:0;
}

.mmHeader__inner{
  width:100%;
  margin:0;
}

.mmHeader__top{
  display:none;
}

/* =========================================
   PLAYER BAR (LYT MED) - separate row
========================================= */

.mmPlayerBar{
  width:min(1440px, calc(100% - 40px));
  margin:10px auto 6px auto;
  /* Kun selve widget-card'en skal være synlig (ingen fuld bredde bar) */
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: sticky;
  top: 0;
  z-index: 1500;
}
.mmPlayerBar__inner{
  min-height: 0; /* widget bestemmer højden */
  padding: 0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.mmPlayerWidget{
  /* 1 horizontal line:
     [LYT MED] [play] [winamp] [webplayer] [socials] */
  width: fit-content;
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(43,77,122,0.45);
  background: linear-gradient(180deg, rgba(27,27,29,0.60), rgba(5,7,11,0.44));
  box-shadow:
    0 10px 22px rgba(0,0,0,0.40),
    0 0 18px rgba(43,77,122,0.12);
  margin-left: auto;
}
.mmPlayerWidget__left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
  min-width: 0;
}
.mmPlayerWidget__label{
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  font-size: 11px;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.14);
}
.mmPlayerWidget__buttons{
  display:flex;
  align-items:center;
  gap: 12px;
}
.mmPlayerBtn{
  width: 28px;
  height: 28px;
  max-width: 60px;  /* play max */
  max-height: 60px; /* play max */
  border-radius: 999px;
  border: 1px solid rgba(43,77,122,0.65);
  background: linear-gradient(180deg, rgba(27,27,29,0.90), rgba(5,7,11,0.88));
  display:grid;
  place-items:center;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.45),
    0 0 16px rgba(43,77,122,0.14);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mmPlayerBtn img{
  width: 16px;
  height: 16px;
  max-width: 32px;
  max-height: 32px; /* winamp/web max */
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(43,77,122,0.40));
}
.mmPlayerBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,174,66,0.70);
  box-shadow:
    0 0 0 3px rgba(255,174,66,0.12),
    0 0 20px rgba(43,77,122,0.18),
    0 12px 26px rgba(0,0,0,0.55);
}

.mmPlayerWidget__now{
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}
.mmPlayerWidget__settings{
  border: 1px solid rgba(43,77,122,0.65);
  background: rgba(0,0,0,0.10);
  color: rgba(245,245,245,0.90);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 900;
  font-size: 11px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.mmPlayerWidget__settings:hover{
  border-color: rgba(255,174,66,0.70);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,174,66,0.10);
}

.mmPlayerSocial{
  display:flex;
  align-items:center;
  gap: 10px;
}
.mmPlayerSocial__link{
  width: 26px;
  height: 26px;
  display:grid;
  place-items:center;
  color: rgba(245,245,245,0.90);
  opacity: 0.92;
  transition: color .15s ease, opacity .15s ease, transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mmPlayerSocial__link i{ font-size: 14px; }
.mmPlayerSocial__link--img{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}
.mmPlayerSocial__link--img img{
  width: 20px;
  height: 20px;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0,207,255,0.18));
}
.mmPlayerSocial__link:hover{
  color: var(--accent);
  opacity: 1;
  transform: translateY(-1px);
}
.mmPlayerSocial__link--img:hover{
  border-color: rgba(255,122,0,0.40);
  box-shadow:
    0 0 0 3px rgba(255,122,0,0.10),
    0 10px 22px rgba(0,0,0,0.45);
}
.mmPlayerSocial__link--img:hover img{
  filter: drop-shadow(0 0 12px rgba(255,122,0,0.18));
}

/* =========================================
   NAVBAR BOX
========================================= */

.mmNavBar{
  width:min(1440px, calc(100% - 40px));

  margin:10px auto 12px auto;

  background:linear-gradient(180deg,#081018,#050b11);

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
    0 6px 18px rgba(0,0,0,.35);

  /* Allow profile dropdown to escape navbar box */
  overflow:visible;
}

/* =========================================
   INNER
========================================= */

.mmNavBar__inner{
  width:100%;

  min-height:44px;

  display:flex;
  align-items:center;

  padding:0 22px;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.mmBrand{
  display:flex;
  align-items:center;

  margin-right:34px;

  height:44px;
}

.mmBrand__img{
  display:block;
  height:20px;
  width:auto;
}

/* =========================================
   BURGER
========================================= */

.mmBurger{
  display:none;

  width:42px;
  height:44px;

  border:none;
  background:transparent;

  align-items:center;
  justify-content:center;

  cursor:pointer;
}

.mmBurger i{
  color:#fff;
  font-size:18px;
}

/* =========================================
   NAVIGATION
========================================= */

.mmNav{
  display:flex;
  align-items:center;

  gap:34px;

  flex:1;
}

.mmNav a{
  color:#ffffff;
  text-decoration:none;

  font-size:12px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:.4px;

  opacity:.95;

  transition:color .15s ease;
}

.mmNav a:hover{
  color:#ff9d2f;
}

.mmNav a.is-active{
  color:#ffffff;
}

/* =========================================
   SOCIALS
========================================= */

.mmSocial{
  display:flex;
  align-items:center;

  gap:10px;
  margin-left:auto;
}

.mmSocial__link{
  width:20px;
  height:20px;

  display:grid;
  place-items:center;

  color:#fff;

  opacity:.92;

  transition:.15s ease;
}

.mmSocial__link i{
  font-size:14px;
}

.mmSocial__link:hover{
  color:#ff9d2f;
}

/* =========================================
   LYT MED (listen bar)
========================================= */

.mmNavBar__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* =========================================
   PROFILE DROPDOWN
========================================= */

[hidden]{ display:none !important; }

.mmUserMenu{ position: relative; }
.mmUserMenu__btn{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.12);
  padding: 0;
  position: relative;
  overflow: hidden;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.mmUserMenu__btn:hover{
  border-color: rgba(255,157,47,0.35);
  box-shadow: 0 0 0 3px rgba(255,157,47,0.12);
}
.mmUserMenu__btn i{
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  filter: drop-shadow(0 0 10px rgba(255,0,170,0.18));
}
.mmUserMenu__btn:hover i{
  color:#ff9d2f;
  filter: drop-shadow(0 0 12px rgba(255,157,47,0.22));
}
.mmUserMenu__btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,95,210,0.16);
  border-color: rgba(255,95,210,0.40);
}
.mmUserMenu__panel{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(240px, calc(100vw - 24px));
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(8,16,24,0.98), rgba(5,11,17,0.98));
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  z-index: 1000;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mmUserMenu__panel.hidden{
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
}
.mmUserMenu__panel:not(.hidden){
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}
.mmUserMenu__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  text-transform: none;
  opacity: 1;
}
.mmUserMenu__item i{ width: 16px; text-align:center; opacity:.92; }
.mmUserMenu__item:hover{
  background: rgba(255,255,255,0.06);
  color: #ff9d2f;
}
.mmUserMenu__item.is-active{
  background: rgba(0,207,255,0.10);
  border: 1px solid rgba(0,207,255,0.14);
  box-shadow: 0 0 0 3px rgba(0,207,255,0.05);
}
.mmUserMenu__item.is-active:hover{
  background: rgba(0,207,255,0.12);
  color: rgba(255,255,255,0.94);
}
.mmUserMenu__item--danger:hover{
  color: #ff5a78;
}
.mmUserMenu__sep{
  height: 1px;
  margin: 6px 8px;
  background: rgba(255,255,255,0.08);
}

/* =========================================
   ON AIR quick button (topbar)
========================================= */
.mmLiveQuick{
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.12);
  display:grid;
  place-items:center;
}
.mmLiveQuick i{
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.mmLiveQuick__dot{
  position:absolute;
  top: 6px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}
body.is-live .mmLiveQuick__dot{
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accentGlow), 0 0 16px var(--accentGlow);
}
.mmLiveQuick:hover{
  border-color: rgba(255,157,47,0.35);
  box-shadow: 0 0 0 3px rgba(255,157,47,0.12);
}
.mmLiveQuick.is-active{
  border-color: rgba(0,207,255,0.22);
  box-shadow: 0 0 0 3px rgba(0,207,255,0.06);
}

/* =========================================
   LOGIN / TOGGLE BUTTON
========================================= */

.mmSocial__btn{
  width:32px;
  height:32px;

  border:none;
  border-radius:8px;

  background:linear-gradient(180deg,#ff5fd2,#ff2db8);

  color:#fff;

  cursor:pointer;

  box-shadow:
    0 0 10px rgba(255,0,170,.28);

  transition:.18s ease;
}

.mmSocial__btn:hover{
  filter:brightness(1.08);
}

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

@media (max-width:1280px){

  .mmNav{
    gap:22px;
  }

  .mmNav a{
    font-size:11px;
  }
}

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

@media (max-width:1024px){

  .mmBurger{
    display:flex;
    margin-left:auto;
  }

  .mmNav{
    display:none;
  }

  .mmPlayerBar{
    display:none;
  }

  .mmSocial{
    display:none;
  }

  .mmNavBar__inner{
    justify-content:space-between;
  }
}

/* =========================================
RESPONSIVE
========================================= */
