/* MENIPTV HU NOTICE — STABLE (no blur) */

.huNotice{
  display:none;
  width:100%;
  background: rgba(8,8,10,.92);
  border-bottom: 1px solid rgba(224,21,34,.45);
  z-index: 9999;
}

.huNotice__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.huNotice__text{
  font-size: 13px;
  font-weight: 800;
  color: #ffd7da;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  text-align:center;
}

@keyframes meniptvPulse {
  0%   { color:#ff9aa2; text-shadow:0 0 6px rgba(224,21,34,.12); }
  50%  { color:#ff3b47; text-shadow:0 0 14px rgba(224,21,34,.40); }
  100% { color:#ff9aa2; text-shadow:0 0 6px rgba(224,21,34,.12); }
}
.huNotice__text b{
  text-transform: uppercase;
  letter-spacing:.6px;
  animation: meniptvPulse 1.2s ease-in-out infinite;
}

.huNotice__ok{
  flex: 0 0 auto;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  cursor:pointer;
  touch-action: manipulation;
}

@media (max-width: 767px){
  .huNotice__inner{
    justify-content: space-between;
  }
  .huNotice__text{
    max-width: calc(100% - 70px);
    text-align:left;
  }
}
