<style>
/* ================================
   MZWeekly Ad System
================================ */

/* Generic Ad Container */

.mz-ad {
  width: 100%;
  margin: 25px auto;
  text-align: center;
  position: relative;
}

/* Ad label */

.mz-ad-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

/* Ad content box */

.mz-ad-content {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 8px;
  overflow: hidden;
}

/* Ad images */

.mz-ad-content img {
  width: 100%;
  height: 300;
  display: block;
}

/* ================================
   HERO BILLBOARD (970x250)
================================ */

.mz-hero-ad {
  max-width: 400px;
}

.mz-hero-ad .mz-ad-content {
  min-height: 250px;
}

/* ================================
   FEATURED SECTION AD - 3D CARD
================================ */

.mz-featured-ad {
  max-width:500px;
  margin:40px auto;
  perspective:1000px;
}


.mz-featured-ad .mz-ad-content {

  min-height:120px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f1f1f1
    );

  border-radius:22px;

  border:1px solid rgba(255,255,255,.8);

  box-shadow:
    0 20px 35px rgba(0,0,0,.25),
    0 8px 15px rgba(0,0,0,.15),
    inset 0 1px 3px rgba(255,255,255,.9);

  transform:
    rotateX(3deg);

  transition:.4s ease;

  position:relative;

  overflow:hidden;

}

/* 3D */
.mz-featured-ad .mz-ad-content::after {

  content:"";

  position:absolute;

  bottom:-12px;
  left:15px;
  right:15px;

  height:20px;

  background:#000;

  opacity:.15;

  filter:blur(12px);

  z-index:-1;

}

/* Hover lift */

.mz-featured-ad .mz-ad-content:hover {

  transform:
    translateY(-8px)
    rotateX(5deg);

  box-shadow:

    0 35px 50px rgba(0,0,0,.35),
    0 15px 25px rgba(0,0,0,.2);

}

/* Sponsored label */

.mz-ad-label {

  display:inline-block;

  background:
    linear-gradient(
      135deg,
      #111,
      #333
    );

  color:white;

  padding:6px 18px;

  border-radius:20px;

  font-size:12px;

  letter-spacing:1px;

  box-shadow:
    0 5px 10px rgba(0,0,0,.3);

  transform:
    translateY(10px);

  position:relative;

  z-index:2;

}

/* tiny hint */

.ad-hint{

    text-align:center;

    font-size:12px;

    color:#fff;

    margin-top:8px;

}
/* ================================
   SIDEBAR AD (300x600)
================================ */

.mz-sidebar-ad {
  width: 300px;
  position: sticky;
  top: 120px;
  float: right;
  margin: 20px;
}

.mz-sidebar-ad .mz-ad-content {
  min-height: 600px;
}

/* ================================
   MOBILE STICKY AD
================================ */

.mz-mobile-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  border-top: 1px solid #333;
  padding: 6px;
  z-index: 9999;
  text-align: center;
}

.mz-mobile-ad img {
  max-width: 320px;
  height: 150px;
}

/* Hide mobile ad on desktop */

@media (min-width: 768px) {
  .mz-mobile-ad {
    display: none;
  }
}

/* Hide sidebar on small screens */

@media (max-width: 900px) {
  .mz-sidebar-ad {
    display: none;
  }
}

.now-playing-container{
  display:flex;
  align-items:center;
  background:red;
  color: black;
  width:100%;
  overflow:hidden;
  border-top:2px solid #333;
  border-bottom:2px solid #333;
  border-left:2px solid #333;
  border-right:2px solid #333;
  font-family:Arial, Helvetica, sans-serif;
}

.np-label{
  background:black;
  color:#ffffff;
  padding:10px 15px;
  font-weight:bold;
}

.marquee{
  overflow:hidden;
  white-space:nowrap;
  width:100%;
  position:relative;
}

.marquee span{
  display:inline-block;
  padding-left:100%;
  animation:scrollText 15s linear infinite;
}

@keyframes scrollText{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}
.support-artist{
    background:#111;
    border:1px solid #333;
    padding:12px;
    margin-top:10px;
    font-size:13px;
    color:#ddd;
}

.support-artist a{
    color:#ef233c;
    text-decoration:none;
    font-weight:bold;
}

.support-artist a:hover{
    text-decoration:underline;
}
/* ===== GENERAL AD STYLING ===== */
.mz-ad {
  background: #1a1a1a;
  border: 1px solid #333;
  margin: 30px 0;
  padding: 20px;
  text-align: center;
  position: relative;
}

.mz-ad-label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: #e10600;
  color: white;
  font-size: 11px;
  padding: 3px 8px;
  text-transform: uppercase;
}

.mz-ad-content {
  color: #bbb;
  font-size: 16px;
}

/* HERO */
.mz-hero-ad {
  min-height: 180px;
}

/* FEATURED AD */
.mz-featured-ad {
  border-left: 4px solid #e10600;
}

/* SIDEBAR */
.mz-sidebar-ad {
  position: sticky;
  top: 20px;
}

/* SPONSORED TILE */
.mz-sponsored-tile {
  background: #141414;
  border: 1px solid #444;
}

.mz-sponsored-badge {
  display: inline-block;
  font-size: 11px;
  background: #e10600;
  padding: 3px 6px;
  margin-bottom: 10px;
}


/* MOBILE STICKY */
.mz-mobile-ad {
  display: none;
}

@media (max-width: 768px) {
  .mz-mobile-ad {
    display: block;
    position: fixed;
    bottom: 0;
    width: 40%;
    background: #000; color: #ffff;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #333; height:150px;
    z-index: 9999;
  }
}

/* ===================================
MZW DASHBOARD
=================================== */

.front-grid{
display:grid;
grid-template-columns:2fr 380px;
gap:20px;
padding:20px;
max-width:1400px;
margin:auto;
}

.quick-panel{
display:flex;
flex-direction:column;
gap:20px;
}

.dashboard-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.15);
border-radius:20px;
padding:20px;
color:#fff;
}

.card-heading{
font-weight:bold;
margin-bottom:15px;
font-size:18px;
color:red;
}

.mz-status-bar{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
padding:15px 20px;
max-width:1400px;
margin:auto;
}

.status-item{
background:#111;
color:#fff;
padding:15px;
border-radius:15px;
text-align:center;
font-weight:600;
}

.hero-wrap .hero{
margin:0;
height:650px;
border-radius:25px;
overflow:hidden;
}

.hero-pill{
display:inline-block;
background:red;
padding:8px 14px;
border-radius:30px;
font-size:12px;
font-weight:bold;
margin-bottom:15px;
}

.quick-btn{
display:block;
background:red;
color:#fff;
text-decoration:none;
padding:12px;
border-radius:10px;
margin-bottom:10px;
text-align:center;
font-weight:bold;
}

.quick-btn:hover{
background:#000;
}

.live-strip{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
max-width:1400px;
margin:20px auto;
padding:0 20px;
}

.live-strip div{
background:#111;
color:#fff;
padding:12px;
text-align:center;
border-radius:12px;
font-weight:600;
}

.weekly-cinema{
max-width:1400px;
margin:auto;
padding:20px;
}

.weekly-video-panel{
position:relative;
border-radius:25px;
overflow:hidden;
}

.weekly-video-panel iframe{
width:100%;
height:700px;
border:none;
}

.video-overlay{
position:absolute;
left:40px;
bottom:40px;
max-width:600px;
background:rgba(0,0,0,.65);
backdrop-filter:blur(12px);
padding:25px;
border-radius:20px;
color:#fff;
}

.week-tag{
display:inline-block;
background:red;
padding:8px 15px;
border-radius:30px;
margin-bottom:15px;
}

.history-panel{
background:#111;
padding:25px;
border-radius:20px;
margin-top:20px;
color:#fff; text-align: center;
}
.history-panel h3{
background:red;
color:white;
padding:14px;
border-radius:12px;
margin:-25px -25px 20px -25px;
text-align:center;
font-weight:bold;
}

@media(max-width:1000px){

.front-grid{

display:flex;

flex-direction:column;

width:100%;

padding:0;

margin:0;

}


.hero-wrap{

width:100%;

}


.quick-panel{

width:100%;

}


.dashboard-card{

width:100%;

box-sizing:border-box;

}


}
/* ============================================
   COMMUNITY POLL
============================================ */


.weekly-poll{

background:transparent;

padding:0;

}



.poll-option{

display:block;

padding:12px;

margin:8px 0;

background:#1b1b1b;

border-radius:10px;

cursor:pointer;

transition:.3s;

color:black;

font-weight:bold;

line-height:1.5;

}



.poll-option:hover{

background:red;

color:black;

transform:translateX(5px);

}




#pollQuestion{

display:block;

background:black;

color:white;

padding:12px;

border-radius:10px;

margin:12px 0;

text-align:center;

font-weight:bold;

}



.weekly-poll strong,
#pollWeekLabel{


display:block;

background:black;

color:white;

padding:12px;

border-radius:10px;

margin-bottom:12px;

text-align:center;

font-weight:bold;

}




/* ============================================
   LIVE RESULTS BOX
============================================ */


.poll-results{


margin-top:25px;


background:

linear-gradient(
135deg,
#111,
#1f1f1f
);



border-radius:15px;


padding:15px;


border:

1px solid rgba(255,255,255,.08);


display:block;


}




#resultsTitle{


margin:0 0 15px;


background:#000;


color:white;


padding:12px;


border-radius:10px;


text-align:center;


font-weight:bold;


}




.results-chart{


display:flex;

flex-direction:column;

gap:12px;

}



.results-chart > div{


background:#151515;


padding:10px;


border-radius:10px;


color:white;


}






/* FEEDBACK */


#pollFeedback{


display:none;


margin-top:12px;


padding:12px;


border-radius:10px;


font-weight:bold;


text-align:center;


}




@media(max-width:1000px){


.weekly-poll{

padding:0 5px;

}


}


.quick-panel{
order:2;
}

.hero-wrap{
order:1;
}

.live-strip{
grid-template-columns:1fr 1fr;
}

.mz-status-bar{
grid-template-columns:1fr 1fr;
}

.weekly-video-panel iframe{
height:400px;
}

.video-overlay{
position:relative;
left:auto;
bottom:auto;
margin:15px;
}

}


/*global*\
img, video, iframe {
  max-width: 100%;
  height: 300;
}

body {
  overflow-x: hidden;  
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/*Auto Hero*/
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 30px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-base-gif {
  z-index: 1;
  filter: brightness(55%);
}

.hero-article-img {
  z-index: 2;
  transition: opacity 0.6s ease;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/*MasqModern*/
.news-ticker {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}

.ticker-track span {
  display: inline-block;
  margin-right: 50px;
  font-size: 14px;
  font-weight: 600;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.top-info-bar {
    width: 500;
    background: #000;
    color: #fff;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #222;
    gap: 14px;
}

.ti-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ti-badge,
.ti-brand {
    padding: 6px 12px;
    background: #111;
    border-radius: 6px;
    color: #ef233c;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ti-badge:hover,
.ti-brand:hover {
    background: #1a1a1a;
}

.ti-right {
    display: flex;
    gap: 10px;
}

.ti-btn {
    background: red;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.ti-btn:hover {
    background: black;
}

/* */
@media (max-width: 600px) {
    .top-info-bar {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        overflow-x: hidden;
        padding: 12px;
    }

    .ti-left, 
    .ti-right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .ti-badge,
    .ti-brand {
        flex: 1 1 auto;
        text-align: left;
        max-width: 100%;
    }

    .ti-btn {
        flex: 1 1 auto;
        text-align: center;
        max-width: 100%;
    }
}

.footer {
  background:#111;
  color: #fff;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}


/* SUPER-TINY FOOTER */
.mz-footer {
  background: #ffff;
  color: black;
  padding: 10px 8px;          /* very small padding */
  margin-top: 15px;
  text-align: center;
  width: 100%;
  font-size: 12px;            /* smaller text*/
}

/* CONTENT WRAPPER */
.footer-section {
  max-width: 600px;           /* narrower */
  margin: 0 auto;
}

/* HEADINGS SMALL + TIGHT */
.mz-footer h5,
.mz-footer h2 {
  font-size: 13px;
  margin: 4px 0;              /* very small spacing */
}

/* PARAGRAPHS SMALL + TIGHT */
.mz-footer p {
  font-size: 12px;
  line-height: 1.2;           /* tight line spacing */
  margin: 4px 0;
}

/* LINKS */
.mz-footer a {
  font-size: 12px;
}

/* SOCIAL ICONS — VERY SMALL */
.social-row {
  display: flex;
  justify-content: center;
  gap: 6px;                   /* tiny gap */
  margin: 6px 0;
  flex-wrap: wrap;
}

.social-row img {
  width: 22px;                /* tiny icons */
  height: 22px;
}

/* DEVELOPER CREDIT SMALL */
.developed_by p5 {
  font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mz-footer {
    padding: 8px 6px;
  }

  .footer-section {
    max-width: 100%;
  }
}

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: black;
  color: #222;
  line-height: 1.6; border: 5px black; overflow-x: hidden; background-image: url("/images/uMlazi.jpg"); background-size: contain; background-repeat: no-repeat; background-attachment: fixed; background-position: center;}

/* NAVIGATION WRAPPER */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 10px 15px;
  color: #fff;
  flex-wrap: wrap; /* mobile */
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

/* LOGO */


.logo-area {

  display:flex;
  align-items:center;

  position:relative;

  gap:0;

  padding:10px;

}


/* =============================
   SIGN BOARD
============================= */

.logo {

  position:relative;

  background:transparent;

  color:#fffff;

  padding:14px 35px;

  border-radius:15px;

  font-size:28px;

  font-weight:800;

  letter-spacing:1px;

  box-shadow:
  0 5px 15px rgba(0,0,0,0.25);

  z-index:2;

}


/* =============================
   CONNECTING LINES
============================= */


.logo::before {

  content:"";

  position:absolute;

  left:-45px;

  top:50%;

  width:45px;

  height:4px;

  background:white;

  transform:translateY(-50%);

}


.logo::after {

  content:"";

  position:absolute;

  right:-45px;

  top:50%;

  width:45px;

  height:4px;

  background:white;

  transform:translateY(-50%);

}



/* =============================
   CARTOON SIGN
============================= */


/* left hand */

.logo .left-hand {

  position:absolute;

  left:-12px;

  top:50%;

  width:22px;

  height:22px;

  background:red;

  border-radius:50%;

  transform:translateY(-50%);

  z-index:5;

}


/* right hand */

.logo .right-hand {

  position:absolute;

  right:-12px;

  top:50%;

  width:22px;

  height:22px;

  background:red;

  border-radius:50%;

  transform:translateY(-50%);

  z-index:5;

}


/* =============================
   GIF CHARACTER OVERLAP
============================= */

.logo-area img {

  position:relative;

  z-index:4;

  margin-left:-20px;

  width:100px;

  height:99px;

}


/* =============================
   SMALL SHADOW UNDER CHARACTER
============================= */

.logo-area img {

  filter:
  drop-shadow(0 5px 5px rgba(0,0,0,0.3));

}


/* =============================
   MOBILE
============================= */

@media(max-width:768px){

.logo {

 font-size:18px;

 padding:10px 20px;

}


.logo-area img {

 width:70px;

 height:70px;

}


.logo::before,
.logo::after {

 width:20px;

}


.logo::before {

 left:-20px;

}


.logo::after {

 right:-20px;

}

}
/* =============================
   MASCOT LOGO FRAME
============================= */

#mm-logo {

  width:100px;
  height:99px;

  object-fit:contain;

  background:white;

  padding:5px;

  border:4px solid #ffffff;

  border-radius:50%;

  box-shadow:
  0 0 10px rgba(255,255,255,0.8),
  0 5px 15px rgba(0,0,0,0.4);

  transition:all .5s ease;

}


/* hover animation */

#mm-logo:hover {

 transform:scale(1.08) rotate(3deg);

 box-shadow:
 0 0 20px white,
 0 8px 20px rgba(0,0,0,0.5);

}
.logo-morning #mm-logo {

  border-color:#FFD166;

  box-shadow:
  0 0 20px #FFB703,
  0 5px 15px rgba(0,0,0,.4);

}
.logo-day #mm-logo {

  border-color:#4CC9F0;

  box-shadow:
  0 0 20px #4895EF,
  0 5px 15px rgba(0,0,0,.4);

}
.logo-night #mm-logo {

  background:#111;

  border-color:#FFFFFF;

  box-shadow:
    0 0 5px #ffffff,
    0 0 15px #7209B7,
    0 0 30px #7209B7,
    0 0 60px #7209B7,
    0 0 90px rgba(114,9,183,0.8),
    0 8px 20px rgba(0,0,0,.7);

  animation: nightPulse 2s infinite alternate;

}


/* subtle breathing glow */

@keyframes nightPulse {

  from {

    box-shadow:
      0 0 5px #ffffff,
      0 0 20px #7209B7,
      0 0 40px #7209B7;

  }

  to {

    box-shadow:
      0 0 10px #ffffff,
      0 0 35px #9D4EDD,
      0 0 80px #9D4EDD,
      0 0 120px rgba(157,78,221,.7);

  }

}
/* ============================================
   MZ DIGITAL CITY STREET ENGINE v6
   REALISTIC AERIAL CITY MAP
============================================ */


/* ============================================
   MAIN CITY CANVAS
============================================ */


.mz-street {

position:fixed;
inset:0;

overflow:hidden;


background:

linear-gradient(
135deg,
#070c14,
#020305
);


z-index:-10;


transform:translateZ(0);

}




/* ============================================
   CITY TERRAIN / LAND MASS
============================================ */


.mz-street::before {


content:"";

position:absolute;

inset:-15%;


background:


/* residential districts */

radial-gradient(
ellipse at 18% 28%,
rgba(90,100,120,.18),
transparent 220px
),


radial-gradient(
ellipse at 75% 25%,
rgba(80,90,110,.15),
transparent 240px
),



/* downtown core */

radial-gradient(
ellipse at 52% 50%,
rgba(130,120,100,.22),
transparent 180px
),



/* outskirts */

radial-gradient(
ellipse at 85% 80%,
rgba(60,70,80,.18),
transparent 250px
);


pointer-events:none;


}




/* ============================================
   REAL WATER FEATURES
============================================ */


.water-bodies {


position:absolute;

inset:0;


background:


/* winding river */

linear-gradient(
125deg,

transparent 25%,

rgba(0,80,160,.12) 34%,

rgba(20,130,210,.22) 40%,

rgba(0,80,150,.12) 47%,

transparent 55%

),



/* lake */

radial-gradient(
ellipse at 82% 72%,

rgba(0,120,200,.25),

rgba(0,70,130,.12) 35%,

transparent 65%

),



/* small water areas */

radial-gradient(
ellipse at 20% 15%,

rgba(0,130,220,.18),

transparent 90px

);



pointer-events:none;

}




/* ============================================
   PARKS / TREES / GREEN AREAS
============================================ */


.landscape-parks {


position:absolute;

inset:0;


background:



/* large forest */

radial-gradient(
ellipse at 12% 65%,

rgba(0,120,55,.28),

transparent 220px

),



/* city park */

radial-gradient(
ellipse at 65% 20%,

rgba(20,150,70,.18),

transparent 160px

),



/* smaller green spaces */

radial-gradient(
ellipse at 40% 80%,

rgba(0,130,60,.16),

transparent 120px

),



radial-gradient(
ellipse at 90% 45%,

rgba(30,120,60,.14),

transparent 150px

);



}




/* ============================================
   BUILDINGS / CITY DISTRICTS
============================================ */


.city-blocks {


position:absolute;

inset:0;


background:



/* CBD HIGH RISE */

radial-gradient(
ellipse at 50% 42%,

rgba(255,190,100,.35),

transparent 90px

),



/* office district */

radial-gradient(
ellipse at 62% 55%,

rgba(255,150,80,.22),

transparent 150px

),



/* suburbs */

radial-gradient(
ellipse at 25% 35%,

rgba(150,170,200,.18),

transparent 220px

),



/* industrial zone */

radial-gradient(
ellipse at 80% 80%,

rgba(190,120,50,.18),

transparent 180px

),



/* airport / open area */

radial-gradient(
ellipse at 15% 85%,

rgba(100,110,120,.12),

transparent 160px

);


}




/* ============================================
   ROAD NETWORK
============================================ */


.mz-street::after {


content:"";

position:absolute;

inset:-20%;


background:



/* MAIN HIGHWAYS */

linear-gradient(
35deg,

transparent 46%,

rgba(255,200,120,.28) 47%,

rgba(255,200,120,.28) 48%,

transparent 49%

),



linear-gradient(
-25deg,

transparent 58%,

rgba(255,200,120,.22) 59%,

rgba(255,200,120,.22) 60%,

transparent 61%

),




/* city streets */

repeating-linear-gradient(

90deg,

transparent 0 120px,

rgba(255,230,170,.08) 122px,

transparent 126px

),



repeating-linear-gradient(

0deg,

transparent 0 120px,

rgba(255,230,170,.08) 122px,

transparent 126px

);



pointer-events:none;


}




/* ============================================
   NIGHT CITY LIGHTS
============================================ */


.street-night .city-blocks {


background:


radial-gradient(
ellipse at 50% 42%,

rgba(255,220,140,.42),

transparent 90px

),



radial-gradient(
ellipse at 65% 55%,

rgba(255,170,90,.28),

transparent 130px

),



radial-gradient(
ellipse at 30% 35%,

rgba(120,160,255,.22),

transparent 180px

),



radial-gradient(
ellipse at 80% 80%,

rgba(255,120,50,.18),

transparent 150px

);


}



/* ============================================
   NIGHT ATMOSPHERE
============================================ */


.street-night::after {


content:"";


position:absolute;

inset:0;


background:


radial-gradient(
circle at center,

transparent 15%,

rgba(0,0,0,.55)

),



linear-gradient(

180deg,

rgba(40,60,90,.08),

rgba(0,0,0,.5)

);



pointer-events:none;


}




/* ============================================
   PERFORMANCE CONTROL
============================================ */


.mz-street,
.mz-street::before,
.mz-street::after,
.city-blocks,
.water-bodies,
.landscape-parks {


filter:none;

backdrop-filter:none;

will-change:auto;

}



/* ============================================
   STREET LIGHT GRID
============================================ */

.road-markings {


position:absolute;

inset:0;


background:


repeating-linear-gradient(
90deg,
transparent 0 100px,
rgba(255,220,120,.08) 101px,
transparent 103px
),


repeating-linear-gradient(
0deg,
transparent 0 100px,
rgba(255,220,120,.08) 101px,
transparent 103px
);


opacity:.5;

}



/* ============================================
   CITY LABELS
============================================ */

.street-label {


font-family:Arial;

font-size:11px;

letter-spacing:3px;

text-transform:uppercase;


color:
rgba(255,255,255,.55);


background:
rgba(0,0,0,.55);


padding:
5px 12px;


border-radius:20px;


position:fixed;

z-index:5;


}



/* ============================================
   FOUR CORNER CITY LIGHTS
============================================ */


.mz-street-light {


position:fixed;

width:18px;

height:18px;


border-radius:50%;


opacity:0;


transition:
opacity 1s;


}


.north {

top:15px;

left:50%;

background:#ffd000;

}



.south {

bottom:15px;

left:50%;

background:#ff8c00;

}



.east {

right:15px;

top:50%;

background:#ff0033;

}



.west {

left:15px;

top:50%;

background:#00ff66;

}




.street-night .mz-street-light {


opacity:.75;


}



.north,
.south,
.east,
.west {


box-shadow:
0 0 20px currentColor;


}




/* ============================================
   DAY MODE
============================================ */


.mz-street:not(.street-night){


background:

linear-gradient(
135deg,
#24384c,
#101923
);


}



.mz-street:not(.street-night)
.mz-street-light {


display:none;


}



/* ============================================
   PERFORMANCE RULES
============================================ */


.mz-street *,
.mz-street::before,
.mz-street::after {


backdrop-filter:none;

filter:none;

will-change:auto;


}



/* MOBILE */

@media(max-width:700px){


.street-label{

font-size:9px;

}


.mz-street-light{

width:14px;

height:14px;

}


}

.navbar img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 8px auto;
}


/* NAVIGATION */
nav {
  width: 100%;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nav-links li {
  flex: 1 1 auto;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 0.95rem;
  background: #ffff;
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
}

/* HOVER EFFECT */
.nav-links a:hover {
  background: red;
}

/* ----- MOBILE FIX (prevents overflow) ----- */
@media (max-width: 600px) {
  .nav-links {
    gap: 6px;
  }

  .nav-links li {
    flex: 1 1 45%; /* two per row on small screens */
  }

  .navbar img {
    max-width: 130px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-content {
  background: linear-gradient(135deg, #111, #000);
  padding: 20px;
  border-radius: 14px;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 28px;
  margin: 10px 0;
}

.hero-content p {
  opacity: 0.8;
}
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: black;
  color: red;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: red;
}
.hero-feature {
  position: relative;
  z-index: 20;
}

/* SECTION WRAPPER */
.weekly-feed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

/* HERO FEATURE */
.hero-feature {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  margin: 30px 0;
  align-items: stretch;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 14px;
  background: black;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* VIDEO SECTION */
.video-container-0 {
    position: relative;
    width: 60%;
    padding-bottom: 33.75%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container-0 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto; /* iframe */
}

/* TEXT SECTION */
.hero-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 20; /* button */
}

/* TAG */
.tag {
    display: inline-block;
    background: #0077ff;
    color: #ffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag.week {
    background: #ff0066;
}

/* TITLE */
.hero-content h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

/* DESCRIPTION */
.hero-content p {
    font-size: 1.1rem;
    color: #ffff;
    line-height: 1.5;
}




/* BUTTON — FULLY CLICKABLE */
.cta {
    padding: 12px 26px;
    background: black;
    color: #ffff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease;
    pointer-events: auto; /* ensures the button receives the click */
}

.cta:hover {
    background: #0057c8;
}

/* MOBILE STYLING */
@media (max-width: 900px) {
    .hero-feature {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .video-container {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .hero-content {
        width: 100%;
        align-items: center;
    }
}

/* GRID */
.cards-container {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 20px;
}
.card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;

    position: relative;
    padding: 25px;
    border-radius: 12px;
}

.content-grid::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../images/apps-bg.png");
    background-repeat: repeat;
    background-size: 600px;

    opacity: 0.15; /* adjust 0.05 - 0.15 */

    pointer-events: none;
    z-index: 0;
}

.content-grid > * {
    position: relative;
    z-index: 1;
}

/* CARD STYLE */
.card {
    background: #ffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.card p {
    opacity: 0.8;
    font-size: 0.95rem;
}
/* History Corner specific */
.card.week {
  background: white;
  border-color: #ccc;
}

.card.week h3 {
  font-size: 1.6rem;
  color: red;
  margin-bottom: 8px;
}

.card.week p {
  color: #ffff;
  margin-bottom: 10px;
}

.card.week .btn {
  background: #ef233c;
  color: #ffff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}


/* TAGS */
.tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    color: #ffff;
}

/* CATEGORY COLORS */
.tag.podcast, .card.podcast { background: #ffff; }
.tag.laugh,   .card cinema  { background: solid red; background-image: url("/images/forestG.gif"); background-size: 100% 100%; background-repeat: no-repeat; background-attachment: fixed; background-position: center; }
.tag.watch,   .card.watch   { background: black;  background-image: url("/images/cape.jpg");}
.tag.week,    .card.week    { background: #111827; color: #fff; }

.category-strip {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 999;
}

/* SMALL BUTTON */
.small-btn {
    margin-top: 15px;
    background: #fff;
    border: 2px solid #000;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.small-btn:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        left: 20px;
        bottom: 20px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-feature img {
        height: 280px;
    }
}

.hero-feature .video-container-0 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 video ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px; /* optional */
}

.hero-feature .video-container-0 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500;
}
/* =========================
   APP SECTIONS
========================= */

.app-section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.app-section.active {
  display: block;
  opacity: 1;
}


/* =========================
   APP NAVIGATION
========================= */

.app-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}


/* =========================
   APP BUTTONS
========================= */

.app-nav button {

  /* prevents stretching */
  width: auto !important;
  flex: 0 0 auto !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  border-radius: 30px;
  border: none;

  background: rgba(255,255,255,0.1);
  color: white;

  cursor: pointer;
  font-weight: 600;

  backdrop-filter: blur(8px);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;

  white-space: nowrap;
}


/* =========================
   HOVER
========================= */

.app-nav button:hover {
  background: linear-gradient(135deg, red, #8B0000);
  transform: translateY(-2px);
}


/* =========================
   ACTIVE BUTTON
========================= */

.app-nav button.active {
  background: linear-gradient(135deg, red, #8B0000);

  box-shadow:
    0 0 15px red,
    0 0 30px rgba(255,0,0,0.5);

  transform: scale(1.03);
}


/* =========================
   SECTION BACKGROUNDS
========================= */

#film-section {
  background-color: #ffffff;
}

#ent-section {
  background-color: #ffffff;
}

#learning-section {
  background: linear-gradient(
    135deg,
    black,
    #ffffff,
    #0b0b0b,
    #1a0000,
    black
  );
}
.podcast-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    background: red;
    border-radius: 16px; 
}

/* Player box */
.pcast-player {
    width: 100%;
    background: black;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Controls */
.pcast-player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.pcast-player-controls button {
    background: #ef233c;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.pcast-player-controls button:hover {
    background: #d90429;
}

.pcast-time {
    font-weight: 600;
}

/* Progress Bar */
.pcast-progress {
    flex: 1;
    height: 8px;
}
.section-title {
    background: red; text-align: center;
}

/* Download link */
.pcast-download {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #ef233c;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .pcast-player-controls {
        flex-direction: column;
        align-items: stretch;
    }
}
/* desktop */
@media (min-width: 992px) {
    .pcast-player {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* landscape */
@media (orientation: landscape) and (max-height: 400px) {
  .card.podcast {
    max-width: 450px;
  }

  .pcast-player {
    padding: 14px;
  }

  .pcast-player-controls button {
    padding: 6px 10px;
    font-size: 12px;
  }
}
/* Base – mobile full width */
.card.podcast {
  width: 100%;
  margin: 0 auto;
}

/* Desktop shrink */
@media (min-width: 992px) {
  .card.podcast {
    max-width: 500px;
    margin: 40px auto;
  }

  .pcast-player {
    padding: 18px;
  }
}



/*filmanddocumtries*\

/* ===============================
   FILM CINEMA HERO
================================ */

.film-cinema {

padding:40px 30px;

background:
linear-gradient(
135deg,
#050505,
#180000,
#000000,
#111111
);

border-radius:25px;

color:white;

text-align:center;

position:relative;

overflow:hidden;

box-shadow:
0 20px 50px rgba(0,0,0,.7);

}


/* subtle cinema glow */

.film-cinema::before {

content:"";

position:absolute;

inset:0;

background:
radial-gradient(circle at top,
rgba(255,0,0,.25),
transparent 40%);

pointer-events:none;

}


/* title */

.film-title {

position:relative;

font-size:60px;

font-weight:900;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:10px;

text-shadow:
0 0 15px red,
0 0 30px rgba(255,0,0,.6);

}


/* tagline */

.film-tagline {

position:relative;

font-size:22px;

font-weight:700;

color:#ddd;

margin-bottom:30px;

}



/* moving cinema strip */

.film-heading {


background:
linear-gradient(
90deg,
#000,
#8b0000,
#000
);


border:

1px solid rgba(255,255,255,.4);


padding:15px;

border-radius:50px;

overflow:hidden;

}


/* marquee */

.sub-marquee {

overflow:hidden;

white-space:nowrap;

}


.sub-marquee span {

display:inline-block;

padding-left:100%;

font-size:16px;

font-weight:700;

letter-spacing:2px;

color:white;

animation:
scrollFilm 20s linear infinite;

}


@keyframes scrollFilm {

from {

transform:translateX(0);

}

to {

transform:translateX(-100%);

}

}

/* =========================
   HORIZONTAL CATEGORY BAR
========================= */

.category-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 12px 18px;
  margin-top: 20px;

  border-bottom: 1px solid rgba(255,255,255,0.1);

  scroll-behavior: smooth;
}

/* desktop */
@media (min-width: 768px) {
  .category-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .category-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
  }
}


.category-scroll {
  position: sticky;
  top: 0;
  z-index: 50;

  background: #0f0f0f;
}
/* button styling */
.category-chip {
  flex: 0 0 auto;        /* stacking */
  white-space: nowrap;

  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: red;
  color: black;

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0px;

  cursor: pointer;
  transition: 0.25s ease;

  scroll-snap-align: start;
}
.category-scroll {
  scroll-behavior: smooth;
}

/* hover */
.category-chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  color: white;
}

/* active */
.category-chip.active {
  background: white;
  color: black;
  border: 1px solid white;
  transform: scale(1.05);
}

.player-frame {

width:100%;

max-width:500px;

height:520px;

margin:0 auto;


background:#000;


border-radius:25px;


overflow:hidden;


box-shadow:

0 0 30px rgba(255,0,0,.5),
0 20px 40px rgba(0,0,0,.8);


}

.player-frame iframe,
.player-frame video,
.player-frame img {

width:100%;
height:100%;

object-fit:cover;

}

.player {
  max-width: 100%; 
}

.player-frame iframe,
.player-frame video {

width:100%;

height:100%;

object-fit:cover;

}
.player.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 10px;
  padding: 10px 12px;

  color: white;
  z-index: 10;
  position: relative; /* IMPORTANT */
}

.player-controls button {
  padding: 8px 14px;
  background: #111;
  color: red;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.playlist-item img {
  width: 200px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
/* =========================
   CINEMA PLAYLIST RAILS
========================= */

.playlist-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* each category row */
.playlist-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* category title */
.rail-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding-left: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* =========================================
   HORIZONTAL MOVIE SCROLL
========================================= */

.rail-scroll {
  display: flex;
  flex-wrap: nowrap;

  gap: 12px;

  overflow-x: auto;
  overflow-y: hidden;

  width: 100%;
  padding: 10px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;
}

/* IMPORTANT */
.rail-scroll > * {
  flex: 0 0 auto;
}

/* desktop scrollbar */
.rail-scroll::-webkit-scrollbar {
  height: 8px;
}

.rail-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
}

/* video cards */
.rail-card {
   flex: 0 0 auto;
  min-width: 180px;
  width: 180px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.rail-card:hover {
  transform: scale(1.05);
}

/* thumbnail */
.rail-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* title under thumb */
.rail-card strong {
  display: block;
  font-size: 12px;
  color: white;
  margin-top: 6px;
}

.rail-card p {
  font-size: 10px;
  color: #aaa;
  margin: 0;
}

/* mobile tuning */
@media (max-width: 600px) {
  .rail-card {
    width: 140px;
  }

.rail-card img {
    height: 85px;
  }
}
.thumb-grid img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/*  */
.playlist-wrapper,
.playlist-rail,
section,
.container {
  overflow: visible;
}

/* artsandenter */

/* Main Video Containers */
.vid-container,
.vid-container-1 {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px auto; height: 300;
}
/* Responsive 16:9 ratio */
.vid-container iframe,
.vid-container-1 iframe {
    width: 100%;
    height: 400px;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 12px;
}


/* =============================
   SPONSOR MINI AD
============================= */

.sponsor-box {

    position:absolute;

    right:20px;
    bottom:20px;

    width:180px;
    height:110px;

    background:#000;

    border-radius:12px;

    overflow:hidden;

    z-index:20;

    box-shadow:0 5px 20px rgba(0,0,0,.4);

}


.sponsor-box video {

    width:100%;
    height:100%;

    object-fit:cover;

}


/* Sponsored tag */

.sponsor-label {

    position:absolute;

    bottom:5px;
    left:8px;

    background:rgba(0,0,0,.7);

    color:white;

    font-size:11px;

    padding:3px 8px;

    border-radius:10px;

}


/* close button */

.sponsor-close {

    position:absolute;

    right:5px;
    top:5px;

    z-index:5;

    border:none;

    background:white;

    width:22px;
    height:22px;

    border-radius:50%;

    cursor:pointer;

}



/* Mobile */

@media(max-width:600px){

.sponsor-box{

    width:120px;
    height:75px;

    right:10px;
    bottom:10px;

}

}

#player-wrapper{
    position:relative;
}
/* =============================
   HORIZONTAL PLAYLIST
============================= */

.vid-list-container {

  width:100%;

  background:rgba(0,0,0,0.65);

  padding:15px;

  border-radius:20px;

  margin-top:20px;

  overflow-x:auto;
  overflow-y:hidden;

  -webkit-overflow-scrolling:touch;
  touch-action:pan-x;

}


/* =============================
   RAIL
============================= */

#cinema-list {

  display:flex !important;

  flex-direction:row !important;

  flex-wrap:nowrap !important;

  gap:15px;

  padding:5px;

  margin:0;

  list-style:none;

  width:max-content;

}


/* =============================
   CARDS
============================= */

#cinema-list li {

  flex:0 0 220px !important;

  width:220px;

  min-width:220px;

  height:auto;

  background:#111;

  border-radius:15px;

  overflow:hidden;

  cursor:pointer;

}


/* CARD INNER */

.playlist-item {

  display:flex;

  flex-direction:column;

  height:100%;

}


/* =============================
   IMAGE
============================= */

.video-thumb {

  width:100%;

  aspect-ratio:16 / 9;

  height:300;

  object-fit:cover;

  display:block;

}


/* =============================
   DESCRIPTION
============================= */

.cinema-desc {

  padding:10px 12px 5px;

  color:white;

  font-size:14px;

  line-height:1.3;

  min-height:auto;

  white-space:normal;

  overflow:visible;

}


/* =============================
   SAVE BUTTON
============================= */

.save-video-btn {

  margin:5px 10px 12px;

  padding:8px;

  display:block;

  width:calc(100% - 20px);

  border:none;

  border-radius:20px;

  cursor:pointer;

}


/* =============================
   SCROLLBAR
============================= */

.vid-list-container::-webkit-scrollbar {

  height:10px;

}


.vid-list-container::-webkit-scrollbar-thumb {

  background:#888;

  border-radius:20px;

}


/* =============================
   ACTIVE
============================= */

.playlist-item.active {

  border:3px solid red;

}

#adGif{
  transition: opacity 0.8s ease;
}
.playlist-ad a {
  display: block;
  background: linear-gradient(135deg, red, red);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
}

.playlist-ad a:hover {
  background: linear-gradient(135deg, red, red);
}

.playlist-ad strong {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
}

.video-search{

margin:10px 0;

}

.video-search input{

padding:6px;
border-radius:4px;
border: 5px black;

}

.video-search button{

padding:6px 10px;
border: 6px black;
background:#c00;
color:black;
cursor:pointer;

}



.cinema-label{
color:red;
font-size:12px;
margin:5px 0;
text-align:center;
}
.cinema-modes button:hover{
background:solid red;
}

.flags{
display:flex;
gap:10px;
overflow-x:auto;   /* */
padding:10px 5px;
scrollbar-width:none; /*/
}

.flags::-webkit-scrollbar{
display:none; /* Chrome */
}

.flags img{
flex:0 0 auto; /*  */
width:35px;
cursor:pointer;
transition:0.3s;
}

.flags img:hover{
transform:scale(1.2);
}



/* ===============================
   ENTERTAINMENT HUB
================================ */


.ent-section {

width:100%;

box-sizing:border-box;

padding:40px;

border-radius:25px;

overflow:hidden;


background:

linear-gradient(
135deg,
#0b0b0b, #1a0000, black, black, black, black, #ffffff, #0b0b0b, #1a0000, black
);


color:white;

text-align:center;


box-shadow:

0 15px 40px rgba(0,0,0,.7);


position:relative;

}



/* stage light effect */


.ent-section::before {

content:"";

position:absolute;

top:-100px;

left:50%;

transform:translateX(-50%);


width:300px;

height:300px;


background:

radial-gradient(
circle,
rgba(255,215,0,.35),
transparent 70%
);


pointer-events:none;

}



/* TITLE */


.ent-title {

position:relative;

z-index:1;


font-size:55px;

font-weight:900;

line-height:1.1;


text-transform:uppercase;


margin:0;


letter-spacing:2px;


background:

linear-gradient(
90deg,
#ffffff,
#ffd700,
#ff0000
);


-webkit-background-clip:text;

color:transparent;


}



/* subtitle */


.ent-subtitle {


position:relative;

z-index:1;


margin:15px 0 25px;


font-size:20px;


font-weight:700;


color:#ddd;


}



/* MOVING STRIP */


.ent-heading {


position:relative;


width:100%;


box-sizing:border-box;


padding:14px 0;


border-radius:50px;


overflow:hidden;


background:

rgba(0,0,0,.8);


border:

1px solid #ffd700;


}


/* marquee container */


.ent-marquee {


width:100%;

overflow:hidden;

white-space:nowrap;


}



/* moving text */


.ent-marquee span {


display:inline-block;


padding-left:100%;


font-size:16px;


font-weight:800;


letter-spacing:2px;


color:#fff;


animation:

entScroll 20s linear infinite;


}



/* animation */


@keyframes entScroll {


from {

transform:translateX(0);

}


to {

transform:translateX(-100%);

}


}



/* MOBILE */


@media(max-width:600px){


.ent-section {

padding:30px 15px;

}


.ent-title {

font-size:36px;

}


.ent-subtitle {

font-size:16px;

}


.ent-marquee span {

font-size:14px;

}


}



/* GLOBAL SAFETY */


html,
body {

overflow-x:hidden;

}

#cinema-list li{
list-style:none;
margin-bottom:10px;
}

#cinema-list li a{
display:flex;
align-items:center;
gap:12px;
padding:10px;
border-radius:10px;
background: black;
backdrop-filter: blur(6px);
transition:0.3s;
cursor:pointer;
}

#cinema-list li a:hover{
background: linear-gradient(135deg, green);
transform:scale(1.02);
}

/* thumbnail */
.cinema-thumb img{
width:70px;
height:50px;
object-fit:cover;
border-radius:6px;
}

/* title */
.cinema-desc{
font-size:11px;
color: #fffff;
font-weight:500;
}
.flags img.active{
border:2px solid red;
transform:scale(1.2);
}
.flags img.active{
border:2px solid red;
border-radius:6px;
transform:scale(1.1);
}
.playlist-item{
display:flex;
gap:10px;
padding:10px;
cursor:pointer;
border-radius:8px;
background:rgba(255,255,255,0.1);
transition:0.3s;
}

.playlist-item:hover{
background:black;
transform:scale(1.02);
}

#cinema-list li.active {
  border: 2px black;
  box-shadow: 0 0 10px #00ffcc;
  transform: scale(1.02);
}
#cinema-list {
  max-height: 400px;   /* height */
  overflow-y: auto;    /* vertical scroll */
  overflow-x: hidden;
  padding-right: 5px;  /* space for scrollbar */
}
.playlist-item {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: black;
  cursor: pointer;
}

/* video thumbnail */
.video-thumb {
  width: 80px;
  border-radius: 6px;
}

/* floating mini flag */
.mini-flag {
  position: absolute;
  top: 5px;
  left: 5px;
}

.mini-flag img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #fff;
}

#player-wrapper {
  width: 100%;
  transition: all 0.3s ease; min-height: 360px;
}

/* floating mode */
#player-wrapper.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 170px;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  border-radius: 10px;
  overflow: hidden;
  background: black;
}

.now-playing-container {
  overflow: hidden;
  white-space: nowrap;
}

.cinema #nowPlaying {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite; color: black;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.ent-heading {
  background: black;
  border: 1px solid red;
  padding: 12px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
}

.sub-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.sub-marquee span {
  display: inline-block;
  padding-left: 100%;
  color: red;
  font-weight: 700;
  letter-spacing: 1px;
  animation: scrollEnt 16s linear infinite;
}

/* animation */
@keyframes scrollEnt {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* horizontal scroll container */
.mode-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.mode-scroll::-webkit-scrollbar {
  display: none;
}

.mode-card img {
   width:150px;
  height:200px;
  object-fit:contain;     /*  */
  border-radius:20px;     /*  */
  margin:0 auto 15px;

  background: white;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;

  scroll-snap-align: start;
  color: black;

  display:flex;
  flex-direction:column;
  justify-content:center; text-align: center;
}

.mode-card:hover {
  transform: translateY(-6px);
  background: red;
}

/* active state */
.mode-card.active {
  border: 2px solid red;
  background: linear-gradient(135deg, #330000, black);
  box-shadow: 
    0 0 10px red,
    0 0 25px red,
    0 0 40px rgba(255,0,0,0.8);
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .mode-scroll {
    overflow-x: hidden;
    flex-wrap: wrap;
  }

  .mode-card {
    flex: 1 1 calc(33.33% - 16px);
    min-width: unset;
  }
}
@keyframes redGlow {
  0% { box-shadow: 0 0 10px red; }
  50% { box-shadow: 0 0 30px red; }
  100% { box-shadow: 0 0 10px red; }
}

.mode-card.active {
  animation: redGlow 1.5s infinite;
}
.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* base button */
.card-actions button {
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* hover */
.card-actions button:hover {
  background: linear-gradient(135deg, #ff0000, #990000);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
}

/* active click feel */
.card-actions button:active {
  transform: scale(0.95);
}

/* highlight */
.card-actions {
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:10px 5px;
  margin:15px 0;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}

.card-actions::-webkit-scrollbar {
  display:none;
}

.card-actions button {
  flex:0 0 auto;
  white-space:nowrap;
  border:none;
  border-radius:999px;
  padding:9px 18px;
  color:white; height:90px;
  cursor:pointer;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:.3s;
}

.card-actions button:hover {
  transform:scale(1.05);
  filter:brightness(1.2);
}


/* cors */

.btn-queue {
  background:linear-gradient(135deg,#0066ff,#003399);
}

.btn-surprise {
  background:linear-gradient(135deg,#cc0000,#330000);
}

.btn-shuffle {
  background:linear-gradient(135deg,#6633ff,#220066);
}

.btn-trending {
  background:linear-gradient(135deg,#ff3b3b,#990000);
}

.btn-mix {
  background:linear-gradient(135deg,#ff6600,#cc0000);
}


#queueCount {
  flex:0 0 auto;
  background:white;
  color:black;
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}
#genre-container {
  display: flex;
  flex-wrap: nowrap;        /* */
  gap: 10px;
  overflow-x: auto;         /* */
  overflow-y: hidden;
  padding: 10px 5px;
  margin: 15px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; height:100px;
}

#genre-container::-webkit-scrollbar {
  display: none;
}

/* fade edges */
#genre-container {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

#genre-container button {
  flex: 0 0 auto;           /*  */
  white-space: nowrap;      /*  */
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-size: 12px;
  text-transform: uppercase;
}

#genre-container button:hover {
  background: red;
  transform: scale(1.05);
}

#genre-container button.active {
  background: red;
  border-color: red;
  box-shadow: 0 0 10px red;
}


/* queue + shuffle buttons */
.btn-queue,
.btn-shuffle {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

/* queue */
.btn-queue {
  background: linear-gradient(135deg, #222, #000);
}

.btn-queue:hover {
  background: linear-gradient(135deg, #00c853, #006400);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,200,83,0.4);
}

/* shuffle */
.btn-shuffle {
  background: linear-gradient(135deg, #111, #1a1a1a);
}

.btn-shuffle:hover {
  background: linear-gradient(135deg, #ff0000, #660000);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
}


/* click */
.btn-queue:active,
.btn-shuffle:active {
  transform: scale(0.95);
}

.app-section {
  display: none;
}

.app-section.active {
  display: block;
}

.learning-layout {
  padding: 30px;
}

.learning-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px; color: #fffff;
}

.learning-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.learning-marquee {
  background: #111;
  color: white;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
}

.learning-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 30px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.learning-grid::-webkit-scrollbar {
  height: 6px;
}

.learning-grid::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
}

.learning-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 25px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #eee;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.learning-player iframe {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  margin-bottom: 30px;
}

.learning-playlist {
  background: #fafafa;
  padding: 20px;
  border-radius: 18px;
}

.learning-playlist ol {
  padding-left: 20px;
}

.learning-playlist li {
  padding: 10px 0;
  cursor: pointer;
}




.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.cookie-banner button {
  margin-left: 10px;
  padding: 8px 12px;
  cursor: pointer;
}
.ad-banner img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}


.support-artist {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.support-artist a {
  display: inline-block;
  margin-top: 10px;
  color: red;
  font-weight: bold;
}


/* ======================
PODCAST BUTTONS
====================== */

.podcast-actions{
  display:flex;
  gap:10px;
  margin-top:15px;
  flex-wrap:wrap;
}

.podcast-actions button{
  background: linear-gradient(135deg, #8B0000, #ff0000);
  color:#fff;
  border:none;
  padding:10px 14px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  letter-spacing:0.5px;
  transition:0.3s;
  box-shadow: 0 0 10px rgba(255,0,0,0.3);
}

/* hover */
.podcast-actions button:hover{
  background: linear-gradient(135deg, #ff0000, #cc0000);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

/* click */
.podcast-actions button:active{
  transform: scale(0.95);
}

/* dark tag */
.podcast-tag{
  display:inline-block;
  background:black;
  color:red;
  padding:6px 12px;
  border-radius:6px;
  font-weight:bold;
  letter-spacing:1px;
  border:1px solid red;
  margin-bottom:8px;
}
.podcast-banner{
  border:1px solid rgba(255,0,0,0.3);
  padding:12px;
  border-radius:10px;
  background: rgba(0,0,0,0.8);
  box-shadow: 0 0 20px rgba(255,0,0,0.2);
}



/* ============================================ */
/* LIVE GRID - FIXED & MOBILE RESPONSIVE */
/* ============================================ */

.live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   */
  gap: 12px;
  margin-top: 20px;
  padding: 0;
}

/* Tablet - 3 columns */
@media (min-width: 600px) {
  .live-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* Desktop - 4 columns */
@media (min-width: 900px) {
  .live-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* Large desktop - 5 columns */
@media (min-width: 1200px) {
  .live-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.live-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.live-card:active {
  transform: scale(0.98);
}

/* Image container */
.live-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;  /* 16:9 aspect ratio */
  overflow: hidden;
  background: #1a1a1a;
}

.live-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play overlay */
.play-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Play icon */
.play-overlay::before {
  content: "▶";
  font-size: 10px;
}

.live-card:hover .play-overlay {
  background: rgba(230, 126, 34, 0.9);  /* Orange on hover */
  transform: scale(1.05);
}

/* Title */
.live-card h3 {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Larger screens - bigger text */
@media (min-width: 600px) {
  .live-card h3 {
    font-size: 14px;
    padding: 12px;
  }
  
  .play-overlay {
    bottom: 12px;
    left: 12px;
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* LIVE badge for the card */
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Empty state */
.live-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 14px;
}

/* Loading skeleton */
.live-card.skeleton {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background: #1a1a1a; }
  50% { background: #222; }
  100% { background: #1a1a1a; }
}


.history-message{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);

  font-size: 10px;           /* VERY SMALL */
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;

  background: rgba(0,0,0,0.7);
  padding: 6px 12px;
  border-radius: 20px;

  opacity: 0;
  pointer-events: none;

  transition: all 1s ease;
}

/* visible state */
.history-message.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



.streak-bar {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      padding: 8px 16px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: #ffd700;
    }
    .streak-fire {
      font-size: 18px;
    }
    .continue-reading {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #e63946;
      color: white;
      padding: 10px 18px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: bold;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      display: none;
      gap: 8px;
      align-items: center;
    }

.polls-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.poll-option {
  background: #f0f0f0;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.poll-option:hover {
  background: #e0e0e0;
}
.poll-results{
background:#111;
border-radius:15px;
padding:15px;}

/* mobile tap fix */
.poll-option:active {
  transform: scale(0.98);

  -webkit-transform: scale(0.98);
}
 
 .whatsapp-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 8px 16px;

  background-color: #25D366;
  color: #ffffff;

  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;

  border: none;
  border-radius: 30px;

  cursor: pointer;

  box-sizing: border-box;

  transition: background-color 0.2s ease,
              transform 0.2s ease;

  -webkit-transition: background-color 0.2s ease,
                      -webkit-transform 0.2s ease;

  -webkit-appearance: none;
  appearance: none;
}

/* hover */
.whatsapp-subscribe:hover {
  background-color: #20ba5a;

  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
}

/* click/tap */
.whatsapp-subscribe:active {
  transform: scale(0.98);
  -webkit-transform: scale(0.98);
}

/* keyboard accessibility */
.whatsapp-subscribe:focus {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 2px;
}

/* icon/image inside */
.whatsapp-subscribe img,
.whatsapp-subscribe svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
 
.recent-activity {
      font-size: 12px;
      color: #666;
      padding: 8px;
      background: #f9f9f9;
      border-radius: 8px;
      margin: 10px 0;
    }
#floatingFlags{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
}

.floating-flag{
  position:fixed;
  width:32px;
  height:24px;
  object-fit:cover;
  opacity:0;
  animation:flagPop 4s ease forwards;
  border-radius:4px;
  box-shadow:0 2px 8px rgba(0,0,0,.3);
}

@keyframes flagPop{

  0%{
    opacity:0;
    transform:scale(.5);
  }

  15%{
    opacity:1;
    transform:scale(1);
  }

  85%{
    opacity:1;
  }

  100%{
    opacity:0;
    transform:scale(.8);
  }

}

/* =========================
   WINDOW SEAT AFRICA
========================= */

.window-seat-card {
  overflow:hidden;
}

.window-seat-video {
  width:100%;
  height:170px;
  overflow:hidden;
  border-radius:12px;
}

.window-seat-video video {
  width:100%;
  height:100%;
  object-fit:cover;
}

.window-seat-info {
  padding:12px 5px 5px;
}

.window-seat-info strong {
  font-size:14px;
}

.window-seat-info p {
  font-size:13px;
  color:#aaa;
  margin-top:6px;
}
</style>