.split {
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    background: rgb(3, 37, 65);
    border-radius: 2px;
    text-align: center;
    color: rgb(98, 131, 147);
    font-family: sans-serif !important;
}

.split ul.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.split ul.menu li {
    margin: 0px;
}

.split ul.menu li a {
    color: rgb(137, 160, 171);
    padding: 0px 15px;
    display: block;
    font-weight: 700;
    font-family: system-ui;
}

.movies-list1 .image span {
    position: absolute;
    z-index: 1;
}

.movies-list1 .tag-label-statu {
    font-family: system-ui;
    background: rgb(255, 0, 0);
    padding: 1px 8px;
    top: 110px;
    left: -30px;
    letter-spacing: 2px;
    font-size: 10px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    border-radius: 3px;
    transform: rotate(90deg);
}


.lazy-placeholder.no-thumb {
    background-image: url("https://www.themoviedb.org/assets/2/v4/glyphicons/basic/glyphicons-basic-38-picture-grey-c2ebdbb057f2a7614185931650f8cee23fa137b93812ccb132b9df511df1cfac.svg");
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  max-width: 1250px;
  margin: 20px auto 0;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } 
	.celebrity-news {
  padding: 15px 15px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; overflow: hidden;
} }

.banner-site {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center top;
}
.banner-site::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, rgba(0,20,50,.3) 50%, transparent 100%);
  z-index: 1;
}
.banner-site::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,5,15,.95) 0%, rgba(0,5,15,.6) 35%, transparent 70%);
  z-index: 2;
}
.banner-glow-border {
  position: absolute; inset: 0; border-radius: 12px;
  border: 1px solid rgba(0,180,255,.18); z-index: 5; pointer-events: none;
  transition: border-color .4s;
}
.banner-site:hover .banner-glow-border { border-color: rgba(0,200,255,.45); }
.banner-badge {
  position: absolute; top: 16px; left: 16px; z-index: 6;
  background: rgba(0,180,255,.15); border: 1px solid rgba(0,180,255,.4);
  backdrop-filter: blur(8px); border-radius: 20px; padding: 4px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: #00c8ff; display: flex; align-items: center; gap: 6px;
}
.banner-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #00c8ff; animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}
.banner-content { position: relative; z-index: 4; padding: 28px 28px 24px; width: 100%; }
.banner-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 6px;
}
.banner-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px,4vw,42px); line-height: 1;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.8); margin-bottom: 10px;
}
.banner-headline span {font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(28px, 4vw, 42px); 
	line-height: 1; color: #00c8ff;}
.banner-url {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,255,.12); border: 1px solid rgba(0,180,255,.3);
  border-radius: 6px; padding: 6px 14px; font-size: 13px; font-weight: 600;
  color: #7dd8f0; backdrop-filter: blur(6px); transition: all .25s; text-decoration: none;
}
.banner-url:hover { background: rgba(0,180,255,.22); color: #fff; }

.celebrity-news {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; overflow: hidden;
}
.news-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 10px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.news-header-title {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.news-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; transition: background .2s; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.news-card:last-child { border-bottom: none; }
.news-card:hover { background: rgba(255,255,255,.04); }
.news-thumb { flex-shrink:0; width:52px; height:52px; border-radius:8px; overflow:hidden; }
.news-thumb img { width:100%; height:100%; object-fit:cover; }
.news-title {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  line-height: 1.35; display:-webkit-box; -webkit-line-clamp:2;
  -webkit-box-orient:vertical; overflow:hidden; margin-bottom:4px; text-decoration:none;
}
.news-title:hover { color: #00c8ff; }
.news-meta { font-size: 11px; color: rgba(255,255,255,.35); }
.news-header-link {
  font-size: 11px;
  color: #00c8ff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.news-header-link:hover { opacity: 1; }

.news-list { padding: 8px 0; }

.news-text { flex: 1; min-width: 0; }
.donation-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 16px; 
	margin-top: 10px;
}

.donation-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0070c8, #00c8ff);
  border-radius: 10px;
  transition: width 1s ease;
  min-width: 4px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}