
.bdnf-wrap{
  width:min(1120px, calc(100% - 32px));
  margin:32px auto;
  color:#fff;
}
.bdnf-adminbox,.bdnf-list-head,.bdnf-card,.bdnf-empty{
  background:rgba(10,8,14,.78);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  box-shadow:0 18px 55px rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}
.bdnf-adminbox{
  padding:28px;
  margin-bottom:26px;
}
.bdnf-adminhead h2,.bdnf-list-head h1{
  margin:0 0 8px;
  color:#fff;
  font-size:clamp(28px,4vw,44px);
}
.bdnf-adminhead p,.bdnf-list-head p{
  margin:0 0 18px;
  color:rgba(255,255,255,.72);
  font-weight:700;
}
.bdnf-form{
  display:grid;
  gap:12px;
}
.bdnf-form label{
  font-weight:900;
  color:#fff;
}
.bdnf-form input[type="text"],
.bdnf-form textarea,
.bdnf-form input[type="file"]{
  width:100%;
  box-sizing:border-box;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:#fff;
  padding:14px 16px;
  font:inherit;
}
.bdnf-form input[type="file"]{
  color:rgba(255,255,255,.8);
}
.bdnf-form button,.bdnf-more{
  justify-self:start;
  border:1px solid rgba(0,225,255,.7);
  background:linear-gradient(135deg,rgba(0,225,255,.22),rgba(255,45,170,.18));
  color:#fff;
  border-radius:14px;
  padding:12px 18px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
}
.bdnf-list-head{
  padding:26px 28px;
  margin-bottom:20px;
}
.bdnf-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.bdnf-card{
  overflow:hidden;
  transition:transform .2s ease,border-color .2s ease;
}
.bdnf-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,225,255,.45);
}
.bdnf-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}
.bdnf-thumb{
  height:190px;
  background:linear-gradient(135deg,rgba(0,225,255,.15),rgba(255,115,0,.2),rgba(255,45,170,.15));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:rgba(255,255,255,.65);
}
.bdnf-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.bdnf-card-body{
  padding:18px;
}
.bdnf-card-body time{
  color:#00e5ff;
  font-size:13px;
  font-weight:900;
}
.bdnf-card-body h2{
  margin:8px 0;
  color:#00e5ff;
  font-size:22px;
}
.bdnf-card-body p{
  color:rgba(255,255,255,.78);
  line-height:1.5;
}
.bdnf-msg{
  padding:12px 14px;
  border-radius:14px;
  margin:14px 0;
  font-weight:900;
}
.bdnf-success{
  border:1px solid rgba(0,255,170,.4);
  background:rgba(0,255,170,.12);
}
.bdnf-error{
  border:1px solid rgba(255,70,110,.55);
  background:rgba(255,70,110,.14);
}
.bdnf-empty{
  padding:24px;
  color:rgba(255,255,255,.75);
}
.bdnf-latest{
  display:grid;
  gap:10px;
}
.bdnf-latest-item{
  display:flex;
  gap:12px;
  align-items:center;
  color:#fff;
  text-decoration:none;
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}
.bdnf-latest-img{
  width:58px;
  height:58px;
  border-radius:12px;
  overflow:hidden;
  flex:0 0 auto;
}
.bdnf-latest-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.bdnf-latest-text strong{
  display:block;
  color:#00e5ff;
}
.bdnf-latest-text small{
  color:rgba(255,255,255,.65);
}
.bdnf-empty-small{
  color:rgba(255,255,255,.7);
  font-weight:700;
}
@media (max-width:900px){
  .bdnf-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:620px){
  .bdnf-wrap{width:calc(100% - 24px);margin:20px auto;}
  .bdnf-grid{grid-template-columns:1fr;}
  .bdnf-adminbox,.bdnf-list-head{padding:20px;}
}
