/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: url('../images/featured-image-of-paramountplus-activate.webp')
    center / cover no-repeat fixed;
  background-color: #000;
}

/* TOP NEWS BAR */
.top-news-bar {
  height: 50px;
  min-height: 50px; /* Ye line add karo */
  background: linear-gradient(90deg, #000, #1a1a1a);
  border-bottom: 2px solid #0066ff;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.news-track {
  position: absolute;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  animation: marquee 20s linear infinite;
  color: #fff;
}

.badge {
  background: #e50914;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin: 0 10px;
  font-weight: bold;
}

.badge.new {
  background: #00ccff;
  color: #000;
}

.separator {
  margin: 0 15px;
  color: #555;
}

@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,20,60,.95),
    rgba(0,20,60,.85),
    rgba(0,20,60,.4),
    rgba(0,20,60,.1)
  );
}

.hero-content {
  position: relative;
  max-width: 850px;
  padding-left: 80px;
  color: #fff;
}

.hero-content h1 {
    font-size: clamp(22px, 5vw, 82px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-desc {
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-btn {
  padding: 16px 40px;
  background: #1f6bff;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.logo span { color: #1f6bff; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 20px;
}

.sign-in {
  color: #e5e7eb;
  text-decoration: none;
}

.header-cta {
  padding: 10px 22px;
  background: #1f6bff;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

/* SEO HEADER */
.seo-header {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

/* ARTICLE */
.article-section {
  padding: 40px 20px 80px;
}

.container {
  max-width: 1200px;
  margin: auto;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 15px;
  color: #fff;
}

/* MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
}

.mobile-actions {
  display: none;
  padding: 20px;
  gap: 14px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .hero-content { padding-left: 20px;
        padding-right: 20px; }
  .desktop-actions { display: none; }
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.96);
    flex-direction: column;
    display: none;
  }

  .nav-links.active { display: flex; }
  .nav-links.active .mobile-actions { display: flex; }

  .nav-links a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}












/* =========================
   GLOBAL TEXT (FORCED)
========================= */
p, li, td {
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.65;
}

ul {
    padding: 20px 10px 0px 30px;
}
/* =========================
   PREMIUM H2 (CTR + MOBILE SAFE)
========================= */
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 3rem 0 1.4rem;
  padding: 10px 12px;
  background-color: #000000;
  border-left: 4px solid #ffffff;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(31,107,255,0.4);
  box-sizing: border-box;
  max-width: 100%;
  word-break: break-word;
}

/* =========================
   PREMIUM H3
========================= */
/* =========================
   PREMIUM H3 (VISIBILITY FIX)
========================= */
.h3mainpage {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 2.4rem 0 1rem;
  padding-left: 10px;
  border-left: 3px solid #ffffff;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.6),
    0 0 4px rgba(31,107,255,0.25);
    background-color: black;
    padding: 10px;
}


/* =========================
   STRONG / KEYWORDS
========================= */
strong, b {
  color: #1f6bff;
  font-weight: 600;
}

/* =========================
   LINKS
========================= */
a {
  color: #ffffff;
  text-decoration: underline;
}
a:hover { color: #1f6bff; }

/* =========================
   TABLE WRAPPER (CRITICAL)
========================= */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* =========================
   PREMIUM TABLE
========================= */
.premium-table {
  width: 100%;
  min-width: 720px;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.18);
}

.premium-table th {
  color: #1f6bff;
  font-weight: 600;
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.premium-table td {
  padding: 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  word-break: break-word;
}

/* Column widths */
.premium-table th:nth-child(1),
.premium-table td:nth-child(1) { width: 22%; }

.premium-table th:nth-child(2),
.premium-table td:nth-child(2) { width: 18%; }

.premium-table th:nth-child(3),
.premium-table td:nth-child(3) { width: 15%; }

.premium-table th:nth-child(4),
.premium-table td:nth-child(4) { width: 45%; }

/* Lists inside table */
.premium-table td ul {
  padding-left: 1.1rem;
  margin: 0;
}
.premium-table td ul li {
  line-height: 1.55;
  white-space: normal;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  .premium-table { font-size: 0.9rem; }
}

/* =========================
   HEADING OVERFLOW FIX (SAFARI)
========================= */
h1, h2, h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  line-height: 1.25;
  padding-right: 8px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.55rem;
  }
}


/* =========================
   Images Container
========================= */

.image-container {
  width: 100%;             /* Mobile par screen ki puri width lega */
  max-width: 800px;        /* Desktop par 800px se bada nahi hoga */
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #f0f0f000;
  overflow: hidden;
}

.image-container img {
  width: 100%;             /* Container ke andar fit rahega */
  height: 100%;            /* aspect-ratio ko maintain karega */
  object-fit: cover;
  display: block;
}
/* =========================
   Images Container
========================= */