/* Banner de notificación - AtikoDev */

.atikodev-np-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin: 12px 0;
}

.atikodev-np-box{
  width:min(1100px, 96%);
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background:#0b0b0d;
  color:#fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Imagen opcional */
.atikodev-np-media{
  flex:0 0 auto;
  display:flex;
  align-items:center;
}

.atikodev-np-img{
  width:120px;
  height:68px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
}

/* Contenido */
.atikodev-np-content{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.atikodev-np-message{
  font-size:16px;
  line-height:1.3;
  font-weight:700;
}

/* Botón */
.atikodev-np-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  border:1px solid rgba(255,255,255,.25);
  background:#e10600;
  color:#ffffff !important;          /* ✅ fuerza blanco */
  transition: transform .12s ease, opacity .12s ease;
  white-space:nowrap;
}

.atikodev-np-btn:hover{
  color:#ffffff !important;          /* ✅ mantiene blanco */
  opacity:.92;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 640px){
  .atikodev-np-box{
    flex-direction:column;
    align-items:stretch;
  }
  .atikodev-np-content{
    flex-direction:column;
    align-items:flex-start;
  }
  .atikodev-np-img{
    width:100%;
    height:auto;
    max-height:180px;
  }
  .atikodev-np-btn{
    width:100%;
  }
}
