/* =========================================================
   COMMUNITY IMPACT RADIO™
   OPTIMISED MASTER STYLESHEET
   Cleaned, de-duplicated, responsive
========================================================= */

/* =========================
   ROOT VARIABLES
========================= */

:root{
  --primary:#E06A1B;
  --primary-dark:#C65A11;
  --primary-soft:rgba(224,106,27,0.12);

  --bg:#0B0B0D;
  --bg-dark:#050506;
  --bg-light:#111317;
  --card:#16181D;
  --card-2:#1A1D24;

  --text:#F5F5F5;
  --white:#FFFFFF;
  --muted:#A7A7A7;
  --text-light:#B8B8B8;

  --border:rgba(224,106,27,0.12);
  --border-strong:rgba(224,106,27,0.35);

  --shadow:0 0 25px rgba(224,106,27,0.08);
  --shadow-hover:0 0 35px rgba(224,106,27,0.18);

  --radius:24px;
  --radius-sm:16px;
  --transition:0.35s ease;
}

/* =========================
   RESET / GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  padding-top:90px;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font-family:inherit;
}

img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
}

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 60px;
}

.section-title h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.1;
  margin-bottom:15px;
  font-weight:800;
}

.section-title span,
.logo-text span,
.footer h2 span{
  color:var(--primary);
}

.section-title p{
  color:var(--muted);
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 6%;
  background:rgba(8,8,10,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  z-index:9999;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.logo img{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
}

.logo-text h1,
.logo-text h2{
  font-size:1rem;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.5px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-menu a{
  position:relative;
  font-size:.95rem;
  font-weight:500;
  color:var(--text);
  transition:var(--transition);
}

.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:var(--transition);
}

.nav-menu a:hover{
  color:var(--primary);
}

.nav-menu a:hover::after{
  width:100%;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--bg-light);
  color:var(--white);
  justify-content:center;
  align-items:center;
  cursor:pointer;
  font-size:1.4rem;
  transition:var(--transition);
  z-index:10001;
}

.menu-toggle:hover{
  background:var(--primary);
}

.mobile-socials{
  display:none;
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(4px);
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
  z-index:9998;
}

.menu-overlay.active{
  opacity:1;
  visibility:visible;
}

/* SUPPORT BUTTON */

.support-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  background:var(--primary);
  color:#fff;
  border-radius:50px;
  font-weight:700;
  transition:var(--transition);
  box-shadow:0 8px 25px rgba(224,106,27,.25);
}

.support-btn:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(224,106,27,.4);
}

/* =========================
   HERO
========================= */

.hero{
  min-height:65vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 8% 100px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.84)),
    url('/hero.jpeg');
  background-size:cover;
  background-position:center;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,rgba(224,106,27,.15),transparent 62%);
  pointer-events:none;
}

.hero > div,
.hero-content{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:auto;
}

.hero h1{
  font-size:clamp(2.2rem,6vw,4.5rem);
  line-height:1.05;
  margin-bottom:25px;
  font-weight:800;
}

.hero h1 span{
  color:var(--primary);
}

.hero p{
  color:var(--muted);
  font-size:clamp(1rem,2vw,1.15rem);
  line-height:1.9;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

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

.btn,
.btn-primary,
.btn-secondary,
.social-btn,
.partner-btn,
.stream-btn,
.podcast-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border:none;
  border-radius:50px;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  transition:var(--transition);
}

.btn-primary,
.social-btn,
.partner-btn,
.stream-btn,
.podcast-btn{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  color:#fff;
  box-shadow:0 0 15px rgba(224,106,27,.2);
}

.btn-primary:hover,
.social-btn:hover,
.partner-btn:hover,
.stream-btn:hover,
.podcast-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 0 25px rgba(224,106,27,.4);
}

.btn-secondary{
  background:transparent;
  border:2px solid var(--primary);
  color:var(--primary);
}

.btn-secondary:hover{
  background:var(--primary);
  color:#fff;
}

/* =========================
   SHOWS
========================= */

.shows-section{
  background:
    radial-gradient(circle at top center,rgba(224,106,27,.08),transparent 55%),
    var(--bg);
}

.shows-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:35px;
}

.show-card{
  background:var(--card);
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(224,106,27,.08);
  box-shadow:var(--shadow);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
  height:100%;
  position:relative;
}

.show-card:hover{
  transform:translateY(-10px);
  border-color:var(--primary);
  box-shadow:var(--shadow-hover);
}

.show-card.live{
  border:2px solid #22c55e;
  box-shadow:0 0 25px rgba(34,197,94,.3);
}

.show-image{
  width:100%;
  height:380px;
  overflow:hidden;
  position:relative;
}

.show-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  transition:.45s ease;
}

.show-card:hover .show-image img{
  transform:scale(1.05);
}

.show-content{
  padding:30px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.show-tag,
.show-time,
.show-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:8px 16px;
  border-radius:50px;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:20px;
  letter-spacing:.2px;
}

.show-tag,
.show-time.upcoming,
.show-status.status-upcoming{
  background:var(--primary-soft);
  color:var(--primary);
}

.show-time.live,
.show-status.status-live{
  background:#22c55e;
  color:#fff;
}

.show-time.earlier,
.show-status.status-earlier{
  background:#444;
  color:#bbb;
}

.show-content h3{
  font-size:clamp(1.4rem,3vw,2rem);
  margin-bottom:18px;
  line-height:1.2;
}

.show-content p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:25px;
  flex:1;
}

.show-info,
.show-hosts{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.show-info span,
.show-hosts span{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
}

.show-info i,
.show-hosts i{
  color:var(--primary);
}

.show-ribbon{
  position:absolute;
  top:15px;
  right:15px;
  background:var(--primary);
  color:#fff;
  padding:8px 14px;
  border-radius:30px;
  font-size:.75rem;
  font-weight:800;
  z-index:2;
}

.show-host-badge{
  position:absolute;
  bottom:15px;
  left:15px;
  background:rgba(0,0,0,.82);
  color:#fff;
  padding:8px 14px;
  border-radius:30px;
  font-size:.85rem;
  backdrop-filter:blur(8px);
  z-index:2;
}

.now-playing{
  background:linear-gradient(135deg,rgba(224,106,27,.2),rgba(0,0,0,.95));
  border:1px solid rgba(224,106,27,.2);
  border-radius:25px;
  padding:40px;
}

/* =========================
   LIVE / IONO / ZENO PLAYER
========================= */

.zeno-stream-section,
.stream-section{
  background:linear-gradient(180deg,#0F1115,var(--card));
  text-align:center;
}

.zeno-stream-section .section-title{
  margin-bottom:50px;
}

.zeno-container,
.stream-card,
.iono-player-section{
  max-width:900px;
  margin:0 auto;
  background:var(--card);
  border-radius:25px;
  padding:40px;
  border:1px solid rgba(224,106,27,.15);
  box-shadow:0 0 35px rgba(224,106,27,.08);
}

.live-status{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:var(--primary-soft);
  color:var(--primary);
  padding:12px 24px;
  border-radius:50px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:30px;
}

.pulse-dot,
.live-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--primary);
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(224,106,27,.6);}
  70%{transform:scale(1.6);opacity:.35;box-shadow:0 0 0 12px rgba(224,106,27,0);}
  100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(224,106,27,0);}
}

.zeno-player-wrapper,
.iono-player{
  overflow:hidden;
  border-radius:18px;
  background:#000;
  border:1px solid rgba(224,106,27,.15);
  box-shadow:0 0 25px rgba(224,106,27,.08);
}

.zeno-player-wrapper iframe,
.iono-player iframe{
  display:block;
  width:100%;
  border:none;
}

.iono-player-section{
  margin-top:40px;
  padding:30px;
}

.iono-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
}

.iono-header i{
  color:var(--primary);
  font-size:1.5rem;
}

.iono-header h3{
  color:var(--white);
  font-size:1.4rem;
}

.iono-text,
.stream-tagline{
  color:var(--muted);
  line-height:1.7;
  margin:20px 0;
}

.stream-tagline span{
  color:var(--primary);
  font-weight:700;
}

/* =========================
   SOCIAL / SHARE
========================= */

.social-section,
.share-section{
  padding:100px 8%;
  text-align:center;
  background:linear-gradient(180deg,var(--bg) 0%,var(--bg-light) 100%);
  position:relative;
  overflow:hidden;
}

.social-section::before,
.share-section::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(224,106,27,.12),transparent 70%);
  top:-180px;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:50px;
}

.social-card{
  background:var(--card);
  padding:40px 30px;
  border-radius:var(--radius);
  text-align:center;
  border:1px solid var(--border);
  transition:var(--transition);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

.social-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--primary),#ff8c3a);
}

.social-card:nth-child(1)::before{background:#25D366;}
.social-card:nth-child(2)::before{background:linear-gradient(90deg,#ff0050,#00f2ea);}
.social-card:nth-child(3)::before{background:#1877F2;}

.social-card:hover{
  transform:translateY(-8px);
  border-color:var(--primary);
  box-shadow:var(--shadow-hover);
}

.social-card i{
  font-size:3rem;
  margin-bottom:20px;
  color:var(--primary);
  transition:var(--transition);
}

.social-card:hover i{
  transform:scale(1.15);
}

.social-card h3{
  font-size:1.5rem;
  margin-bottom:15px;
}

.social-card p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:25px;
}

.social-links,
.share-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

.social-links a,
.share-icons a{
  width:75px;
  height:75px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(145deg,var(--card-2),var(--bg-light));
  border:1px solid rgba(224,106,27,.12);
  color:var(--text);
  font-size:1.8rem;
  transition:var(--transition);
  box-shadow:0 0 20px rgba(224,106,27,.05);
}

.social-links a:hover,
.share-icons a:hover{
  transform:translateY(-8px) scale(1.06);
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  border-color:var(--primary);
  box-shadow:0 0 30px rgba(224,106,27,.35);
}

/* =========================
   CONTACT
========================= */

.contact-section{
  background:var(--bg);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:35px;
  margin-top:60px;
}

.contact-card{
  background:var(--card);
  border-radius:25px;
  padding:40px 30px;
  border:1px solid rgba(224,106,27,.08);
  box-shadow:var(--shadow);
  transition:.4s ease;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.contact-card:hover{
  transform:translateY(-10px);
  border-color:var(--primary);
  box-shadow:var(--shadow-hover);
}

.contact-card::before{
  content:'';
  position:absolute;
  inset:-50%;
  background:radial-gradient(circle,rgba(224,106,27,.08),transparent 60%);
  opacity:0;
  transition:.5s ease;
  pointer-events:none;
}

.contact-card:hover::before{
  opacity:1;
}

.contact-icon{
  width:75px;
  height:75px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(224,106,27,.15),rgba(224,106,27,.05));
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:25px;
  border:1px solid rgba(224,106,27,.12);
}

.contact-icon i{
  font-size:2rem;
  color:var(--primary);
}

.contact-card h3{
  font-size:1.6rem;
  margin-bottom:18px;
  line-height:1.3;
}

.contact-card p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:30px;
  flex:1;
}

.contact-card a{
  color:var(--primary);
  font-weight:700;
  word-break:break-word;
}

.contact-card a::after{
  content:' →';
  transition:var(--transition);
}

.contact-card:hover a::after{
  margin-left:5px;
}

/* Optional: whole card clickable.
   Use only if each card contains one main link. */
.contact-card.clickable a{
  position:absolute;
  inset:0;
  z-index:5;
  opacity:0;
}

.contact-card.clickable > *{
  position:relative;
  z-index:10;
}

/* =========================
   PARTNERS
========================= */

.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:35px;
  margin-top:60px;
}

.partner-card{
  background:var(--card);
  border-radius:28px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  border:1px solid rgba(224,106,27,.08);
  box-shadow:var(--shadow);
  transition:.4s ease;
}

.partner-card:hover{
  transform:translateY(-10px);
  border-color:var(--primary);
  box-shadow:var(--shadow-hover);
}

.partner-logo{
  width:100%;
  height:260px;
  overflow:hidden;
  background:var(--bg);
}

.partner-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.partner-card:hover .partner-logo img{
  transform:scale(1.05);
}

.partner-content{
  padding:30px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.partner-tag{
  display:inline-block;
  width:fit-content;
  background:var(--primary-soft);
  color:var(--primary);
  padding:10px 18px;
  border-radius:40px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:22px;
}

.partner-content h3{
  font-size:clamp(1.4rem,3vw,2rem);
  line-height:1.2;
  margin-bottom:18px;
}

.partner-content p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:30px;
  flex:1;
}

/* =========================
   NEWS
========================= */

.news-header{
  position:relative;
  min-height:55vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 8% 100px;
  background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.82)),
    url('news-bg.jpg');
  background-size:cover;
  background-position:center;
}

.header-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,rgba(224,106,27,.15),transparent 70%);
}

.header-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.page-tag,
.updated-date{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  border-radius:50px;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:.85rem;
  font-weight:700;
  letter-spacing:1px;
  border:1px solid rgba(224,106,27,.15);
  margin-bottom:25px;
}

.news-header h1{
  font-size:clamp(2.2rem,5vw,4rem);
  line-height:1.1;
  margin-bottom:20px;
}

.news-header h1 span{
  color:var(--primary);
}

.news-header p{
  color:var(--muted);
  line-height:1.9;
  font-size:1.1rem;
}

.news-page{
  display:grid;
  grid-template-columns:2fr 340px;
  gap:40px;
  background:var(--bg);
}

.featured-article,
.mini-news-card,
.advert-card{
  background:var(--card);
  border-radius:25px;
  border:1px solid rgba(224,106,27,.08);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.featured-image{
  position:relative;
}

.featured-image img{
  width:100%;
  height:420px;
  object-fit:cover;
}

.featured-badge{
  position:absolute;
  top:25px;
  left:25px;
  background:var(--primary);
  color:#fff;
  padding:10px 18px;
  border-radius:40px;
  font-size:.8rem;
  font-weight:700;
}

.featured-content{
  padding:40px;
}

.article-meta{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  margin-bottom:25px;
  color:var(--muted);
  font-size:.9rem;
}

.article-meta i{
  color:var(--primary);
}

.featured-content h2{
  font-size:clamp(1.7rem,4vw,2.5rem);
  line-height:1.2;
  margin-bottom:25px;
}

.featured-content p,
.mini-news-card p{
  color:var(--text-light);
  line-height:1.9;
  margin-bottom:22px;
}

.lead-text{
  font-size:1.15rem;
  color:var(--text);
}

blockquote{
  border-left:4px solid var(--primary);
  padding-left:20px;
  margin:30px 0;
  font-size:1.2rem;
  color:#fff;
  font-style:italic;
}

.article-tags,
.footer-links{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.article-tags span{
  background:var(--primary-soft);
  color:var(--primary);
  padding:10px 18px;
  border-radius:40px;
  font-size:.85rem;
}

.mini-news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:40px;
}

.mini-news-card{
  padding:30px;
  transition:var(--transition);
}

.mini-news-card:hover{
  transform:translateY(-8px);
  border-color:var(--primary);
}

.mini-tag{
  display:inline-block;
  margin-bottom:18px;
  color:var(--primary);
  font-size:.8rem;
  letter-spacing:1px;
}

.news-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.advert-card{
  padding:20px;
}

.advert-card span{
  display:block;
  margin-bottom:15px;
  color:var(--primary);
  font-size:.8rem;
  letter-spacing:1px;
}

.advert-box{
  height:250px;
  border-radius:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(135deg,#1F232C,var(--bg-light));
  color:#777;
  border:1px dashed rgba(224,106,27,.25);
}

/* =========================
   POLICY / TERMS / ABOUT CONTENT BLOCKS
========================= */

.policy-section,
.terms-section,
.about-section{
  background:var(--bg);
}

.policy-container,
.terms-container{
  max-width:1100px;
  margin:auto;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:35px;
}

.policy-block,
.term-block,
.about-block{
  background:var(--card);
  padding:40px;
  border-radius:28px;
  margin-bottom:35px;
  border:1px solid rgba(224,106,27,.08);
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.about-block{
  margin-bottom:0;
}

.policy-block:hover,
.term-block:hover,
.about-block:hover{
  transform:translateY(-6px);
  border-color:var(--border-strong);
  box-shadow:0 0 35px rgba(224,106,27,.12);
}

.policy-block h2,
.term-block h2,
.about-block h2{
  font-size:clamp(1.4rem,3vw,2rem);
  margin-bottom:25px;
  line-height:1.25;
}

.policy-block h2 span,
.term-block h2 span,
.about-block h2 span{
  color:var(--primary);
}

.policy-block p,
.term-block p,
.about-block p,
.policy-block li,
.term-block li,
.about-block li{
  color:var(--text-light);
  line-height:1.9;
  margin-bottom:16px;
}

.policy-block ul,
.term-block ul{
  padding-left:22px;
  margin-top:20px;
}

.term-block li::marker{
  color:var(--primary);
}

.about-block ul{
  list-style:none;
  margin-top:20px;
}

.about-block li{
  position:relative;
  padding-left:30px;
}

.about-block li::before{
  content:'';
  position:absolute;
  left:0;
  top:11px;
  width:10px;
  height:10px;
  background:var(--primary);
  border-radius:50%;
}

.about-block blockquote{
  margin:0;
  padding:30px;
  border-left:4px solid var(--primary);
  background:rgba(224,106,27,.05);
  border-radius:15px;
  color:#fff;
  font-size:1.25rem;
  line-height:1.8;
  font-style:italic;
}

.about-block strong{
  display:block;
  font-size:clamp(1.1rem,4vw,2rem);
  color:var(--primary);
  font-weight:800;
  text-align:center;
  word-break:break-word;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:var(--bg-dark);
  padding:32px 5%;
  text-align:center;
  border-top:1px solid rgba(224,106,27,.08);
}

.footer h2{
  font-size:clamp(1.4rem,3vw,2rem);
  margin-bottom:10px;
  font-weight:800;
}

.footer-tagline,
.footer-credit,
.footer-copy{
  color:#888;
  font-size:.9rem;
  margin-top:10px;
}

.footer-credit span{
  color:var(--primary);
}

.footer-links{
  justify-content:center;
  align-items:center;
  gap:14px;
  margin:15px 0;
}

.footer-links a{
  color:#B5B5B5;
  font-size:.9rem;
  transition:var(--transition);
  position:relative;
}

.footer-links a:hover{
  color:var(--primary);
}

.footer-divider{
  color:#444;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){
  .news-page{
    grid-template-columns:1fr;
  }

  .news-sidebar{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .advert-card{
    flex:1 1 300px;
  }
}

@media(max-width:950px){
  .menu-toggle{
    display:flex;
  }

  .nav-menu{
    position:fixed;
    top:90px;
    right:-100%;
    width:300px;
    max-width:100%;
    height:calc(100vh - 90px);
    background:#111317;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:30px;
    border-left:1px solid var(--border);
    box-shadow:-10px 0 30px rgba(0,0,0,.5);
    transition:right .4s ease;
    z-index:10000;
  }

  .nav-menu.active{
    right:0;
  }

  .nav-menu a{
    display:block;
    width:100%;
    padding:15px 18px;
    border-radius:12px;
    font-size:1.05rem;
  }

  .nav-menu a::after{
    display:none;
  }

  .nav-menu a:hover{
    background:var(--primary-soft);
  }

  .mobile-socials{
    display:flex;
    gap:18px;
    margin-top:25px;
  }

  .mobile-socials a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--card-2);
  }

  .support-btn{
    width:100%;
    justify-content:center;
    margin-top:18px;
  }
}

@media(max-width:768px){
  body{
    padding-top:82px;
  }

  section{
    padding:80px 6%;
  }

  .navbar{
    height:82px;
    padding:0 5%;
  }

  .logo img{
    width:48px;
    height:48px;
  }

  .logo-text h1,
  .logo-text h2{
    font-size:.82rem;
  }

  .nav-menu{
    top:82px;
    width:100%;
    height:calc(100vh - 82px);
  }

  .hero{
    min-height:55vh;
    padding:120px 6% 80px;
  }

  .hero-buttons{
    gap:14px;
  }

  .shows-grid,
  .contact-grid,
  .partners-grid,
  .social-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .show-image{
    height:240px;
  }

  .show-content,
  .partner-content,
  .featured-content{
    padding:24px;
  }

  .zeno-container,
  .stream-card,
  .iono-player-section{
    padding:25px;
  }

  .social-links a,
  .share-icons a{
    width:62px;
    height:62px;
    font-size:1.45rem;
  }

  .featured-image img{
    height:320px;
  }

  .policy-block,
  .term-block,
  .about-block{
    padding:30px 24px;
  }

  .updated-date{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}

@media(max-width:480px){
  section{
    padding:70px 5%;
  }

  .btn,
  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .show-image{
    height:200px;
  }

  .show-content,
  .contact-card,
  .partner-content,
  .policy-block,
  .term-block,
  .about-block{
    padding:22px;
  }

  .contact-icon{
    width:60px;
    height:60px;
    border-radius:16px;
  }

  .contact-icon i{
    font-size:1.5rem;
  }

  .partner-logo{
    height:190px;
  }

  .featured-image img{
    height:250px;
  }

  .footer{
    padding:28px 6%;
  }

  .footer-tagline,
  .footer-credit,
  .footer-copy,
  .footer-links a{
    font-size:.82rem;
  }
}

.footer-credit a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
