:root{
  --dntv-bg: #07090d;
  --dntv-panel: rgba(255,255,255,0.06);
  --dntv-panel2: rgba(255,255,255,0.08);
  --dntv-stroke: rgba(255,255,255,0.10);
  --dntv-text: rgba(255,255,255,0.92);
  --dntv-muted: rgba(255,255,255,0.65);
  --dntv-dim: rgba(255,255,255,0.50);
  --dntv-accent: #ff2b2b;
  --dntv-gold: #ffcc33;
  --dntv-radius: 16px;
  --dntv-radius-lg: 20px;
  --dntv-shadow: 0 18px 50px rgba(0,0,0,0.55);
  --dntv-blur: blur(18px);
}


/* ===== Top strip (desktop/iPad landscape) ===== */
.dntv-topstrip{
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,43,43,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.dntv-topstrip__inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.dntv-topstrip__left{ display:flex; align-items:center; gap:10px; }
.dntv-topstrip__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.82);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dntv-topstrip__pill--live{
  border-color: rgba(255,43,43,0.22);
  background: rgba(255,43,43,0.10);
}
.dntv-topstrip__marquee{
  overflow:hidden;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.16);
}
.dntv-topstrip__track{
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  padding: 8px 14px;
  will-change: transform;
  animation: dntvMarquee 46s linear infinite;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 12px;
}
@keyframes dntvMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.dntv-topstrip__right{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,0.60);
  font-weight: 700;
  font-size: 12px;
}
.dntv-topstrip__sep{ opacity:0.6; }

/* Hide top strip on small screens */
@media (max-width: 820px){
  .dntv-topstrip{
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
 display:none; }
}

/* ===== Header shell ===== */
.dntv-header{
  width: 100%;
  position: relative;
  z-index: 999;
  color: var(--dntv-text);
  background:
    radial-gradient(1100px 520px at 18% 0%, rgba(255,43,43,0.10), transparent 62%),
    radial-gradient(900px 520px at 86% 5%, rgba(255,204,51,0.07), transparent 64%),
    linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.78));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dntv-header.is-sticky{
  position: sticky;
  top: 0;
  backdrop-filter: var(--dntv-blur);
  -webkit-backdrop-filter: var(--dntv-blur);
}

/* ===== Topbar ===== */
.dntv-header__topbar{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 14px;
}

.dntv-header__brand{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.dntv-header__brandtext{
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  color: var(--dntv-text);
  white-space: nowrap;
}
.dntv-accent{ color: var(--dntv-accent); }


.dntv-header__nav{
  margin-left: auto;
  margin-right: auto;
}

.dntv-header__actions{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dntv-header__iconbtn{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(0,0,0,0.40);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.dntv-header__iconbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,43,43,0.28);
}
.dntv-header__iconbtn:active{ transform: translateY(0px); }

.dntv-header__nav{
  justify-self: center;
}
.dntv-header__menu{
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
}
.dntv-header__menu a{
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.dntv-header__menu a:hover{
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.96);
  transform: translateY(-1px);
}

.dntv-header__searchbtn{
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  color: var(--dntv-text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.dntv-header__searchbtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.07); border-color: rgba(255,43,43,0.28);} 

.dntv-header__burger{
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  cursor: pointer;
  position: relative;
}
.dntv-header__burger span{
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255,255,255,0.85);
  margin: 0 auto;
  border-radius: 2px;
}
.dntv-header__burger span:nth-child(1){ transform: translateY(-5px); }
.dntv-header__burger span:nth-child(3){ transform: translateY(5px); }

/* ===== Ticker ===== */
.dntv-header__ticker{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 14px;
}

.dntv-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 12px 30px rgba(0,0,0,0.30);
}
.dntv-pill--live{
  background: rgba(255,43,43,0.14);
  border-color: rgba(255,43,43,0.25);
}
.dntv-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dntv-accent);
  box-shadow: 0 0 0 6px rgba(255,43,43,0.18);
}
.dntv-pill__text{
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.dntv-header__tickerline{
  color: rgba(255,255,255,0.75);
  font-weight: 650;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
  white-space: nowrap;
}
.dntv-header__tickerlabel{ color: rgba(255,255,255,0.85); font-weight: 800; }
.dntv-header__updated{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 650;
}

/* ===== Drawer ===== */
.dntv-header__drawer{
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.62);
  z-index: 9999;
}
.dntv-header__drawer.is-open{ display: block; }
.dntv-header__drawerinner{
  position: absolute;
  right: 16px;
  top: 16px;
  width: min(420px, calc(100vw - 32px));
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(255,43,43,0.22), transparent 55%),
    radial-gradient(700px 420px at 90% 10%, rgba(255,204,51,0.14), transparent 60%),
    rgba(12,16,22,0.92);
  backdrop-filter: var(--dntv-blur);
  -webkit-backdrop-filter: var(--dntv-blur);
  box-shadow: var(--dntv-shadow);
  padding: 14px;
}
.dntv-header__drawerbrand{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 4px 12px;
}
.dntv-header__drawerclose{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}
.dntv-header__menu--drawer{
  flex-direction: column;
  gap: 10px;
}
.dntv-header__menu--drawer a{
  display: flex;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
}
.dntv-header__menu--drawer a:hover{
  background: rgba(255,255,255,0.07);
}

/* ===== Search modal ===== */
.dntv-search{ display: none; }
.dntv-search.is-open{ display: block; }
.dntv-search__overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.60);
  z-index: 10000;
}
.dntv-search__panel{
  position: fixed;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 32px));
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(255,43,43,0.25), transparent 55%),
    radial-gradient(900px 420px at 90% 10%, rgba(255,204,51,0.14), transparent 60%),
    rgba(12,16,22,0.96);
  backdrop-filter: var(--dntv-blur);
  -webkit-backdrop-filter: var(--dntv-blur);
  box-shadow: var(--dntv-shadow);
  z-index: 10001;
  padding: 14px;
}
.dntv-search__form{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}
.dntv-search__input{
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.92);
  padding: 0 14px;
  outline: none;
  font-size: 15px;
}
.dntv-search__input:focus{ border-color: rgba(255,204,51,0.35); box-shadow: 0 0 0 6px rgba(255,204,51,0.10); }
.dntv-search__submit{
  height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,204,51,0.22);
  background: rgba(255,204,51,0.18);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
}
.dntv-search__close{
  height: 52px;
  width: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}
.dntv-search__hint{
  padding: 10px 4px 4px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .dntv-header__nav{ display:none; }
}
@media (max-width: 620px){
  .dntv-header__brandtext{ font-size: 18px; }
  .dntv-header__ticker{
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 16px;
  }
  .dntv-header__updated{ justify-self: start; }
  .dntv-search__panel{ top: 72px; }
  .dntv-search__form{ grid-template-columns: 1fr auto; }
  .dntv-search__close{ grid-column: 2; }
}
