
:root {
  --primary-color: #e8192c;
  --primary-glow: rgba(232, 25, 44, 0.28);
  --bg-color: #141414;
  --bg-darker: #0b0b0b;
  --card-radius: 7px;
  --text-color: #ffffff;
  --text-muted: #a8a8a8;
  --navbar-height: 68px;
  --transition-speed: 0.28s;
}

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

body {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

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

/* ── Top Bar / Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  padding: 0 4%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background-color var(--transition-speed) ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(18, 18, 18, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo-image {
  height: 28px;
  width: auto;
}

.logo-icon {
  height: 28px;
  width: 28px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Menu links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
}

.nav-link {
  color: #d0d0d0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Right side actions */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.search-icon-btn:hover {
  transform: scale(1.1);
}

.search-bar-container {
  display: flex;
  align-items: center;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 12px;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.search-bar-container.active {
  width: 250px;
  opacity: 1;
}

.search-bar-container input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-color);
  font-size: 14px;
  width: 100%;
  padding: 4px;
}

/* Hamburger mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* ── Hero Section (Browse Pages) ── */
.hero-banner {
  position: relative;
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  transition: background-image 0.8s ease-in-out;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(20, 20, 20, 0.9) 30%, rgba(20, 20, 20, 0.3) 60%, rgba(20, 20, 20, 0) 100%),
    linear-gradient(to top, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0) 60%);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 4%;
  margin-bottom: 20px;
}

.hero-banner-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-banner-desc {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #e5e5e5;
  line-height: 1.5;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.hero-banner-buttons {
  display: flex;
  gap: 12px;
}

.btn-play,
.btn-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn-play {
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  color: #000;
}

.btn-play:hover {
  background: #fff;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-info {
  background-color: rgba(100, 100, 102, 0.6);
  color: var(--text-color);
  backdrop-filter: blur(4px);
}

.btn-info:hover {
  background-color: rgba(100, 100, 102, 0.35);
  transform: scale(1.04);
}

/* ── Landing Page (index.html) ── */
.landing-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

/* Subtle depth layers — minimal red, cinematic dark */
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(229, 9, 20, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 100% 50% at 50% 110%, rgba(0, 0, 0, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse 140% 100% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

/* ── SEO Section & Container ── */
.seo-section {
  background-color: var(--bg-darker);
  border-top: 1px solid #1c1c1c;
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.seo-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4%;
}

.seo-container h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
  font-family: 'Outfit', sans-serif;
}

.seo-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.seo-container p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Feature Grid */
.seo-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.seo-feature-card {
  background-color: #181818;
  border: 1px solid #282828;
  padding: 25px;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.seo-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.seo-feature-card svg {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.seo-feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.seo-feature-card p {
  font-size: 13.5px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* FAQ Accordion */
.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.seo-faq-item {
  background-color: #181818;
  border: 1px solid #282828;
  border-radius: 6px;
  overflow: hidden;
}

.seo-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: background-color 0.2s;
  font-family: 'Outfit', sans-serif;
}

.seo-faq-question:hover {
  background-color: #222;
}

.seo-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.seo-faq-item.active .seo-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.seo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #141414;
}

.seo-faq-item.active .seo-faq-answer {
  max-height: 500px;
  padding: 20px 24px;
  border-top: 1px solid #282828;
}

.seo-faq-answer p {
  margin-bottom: 0;
  line-height: 1.6;
}

/* Genre tags explorer */
.seo-explore-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.seo-tag {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid #444;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.seo-tag:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* NetPrime Network Grid */
.seo-network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.seo-network-card {
  background-color: #0c0c0c;
  border: 1px solid #1c1c1c;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s, border-color 0.2s;
}

.seo-network-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.seo-network-card h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.seo-network-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.landing-content {
  max-width: 820px;
  z-index: 2;
  position: relative;
}

.landing-logo {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -1px;
}

.landing-logo-icon {
  height: 40px;
  width: auto;
}

.landing-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.landing-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.6;
}

.landing-search-box {
  display: flex;
  max-width: 620px;
  margin: 0 auto 32px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-search-box input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  font-family: inherit;
}

.landing-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.landing-search-box button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-search-box button:hover {
  background-color: #f40612;
}

.landing-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.landing-meta-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-meta-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.landing-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.landing-btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  transition: transform 0.2s, background-color 0.2s;
}

.landing-btn-primary:hover {
  background-color: #f40612;
  transform: translateY(-2px);
}

.landing-btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s, background-color 0.2s;
}

.landing-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ── Content Section / Rows ── */
.rows-container {
  padding: 40px 0;
  position: relative;
  z-index: 5;
  background-color: var(--bg-color);
  margin-top: -20px;
}

.movie-row {
  margin-bottom: 40px;
  padding: 0 4%;
  position: relative;
}

.row-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
  padding-left: 12px;
  border-left: 3px solid var(--primary-color);
  letter-spacing: -0.2px;
}

.row-inner-container {
  position: relative;
  display: flex;
  align-items: center;
}

.row-posters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 0;
}

.row-posters::-webkit-scrollbar {
  display: none;
}

.row-posters {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Card Styling */
.movie-card {
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 2/3;
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.22, 1), box-shadow 0.28s ease;
  background-color: #1c1c1c;
}

.movie-card:hover {
  transform: scale(1.07);
  z-index: 10;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--primary-glow);
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  letter-spacing: 0.04em;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.movie-card:hover .card-overlay {
  opacity: 1;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.card-star { color: #f5c518; }

/* Card centre play button */
.card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.65);
  width: 42px;
  height: 42px;
  background: rgba(232, 25, 44, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 3;
  pointer-events: none;
}

.movie-card:hover .card-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Landscape Cards (Trending rows) ── */
.landscape-card {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  background-color: #1c1c1c;
  transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.22, 1), box-shadow 0.28s ease;
}

.landscape-card:hover {
  transform: scale(1.04);
  z-index: 10;
  box-shadow: 0 10px 32px rgba(0,0,0,0.65), 0 0 0 1px var(--primary-glow);
}

.landscape-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landscape-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.landscape-card:hover .landscape-overlay { opacity: 1; }

.landscape-play {
  width: 34px;
  height: 34px;
  background: rgba(232, 25, 44, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.landscape-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landscape-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #bbb;
}

/* ── Ranked Cards (Top Rated row) ── */
.ranked-card {
  display: inline-flex;
  align-items: flex-end;
  flex-shrink: 0;
  cursor: pointer;
}

.rank-number {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(255,255,255,0.13);
  margin-right: -20px;
  position: relative;
  z-index: 0;
  user-select: none;
  letter-spacing: -4px;
  flex-shrink: 0;
}

.ranked-card .movie-card {
  position: relative;
  z-index: 1;
  width: 148px;
}

/* More Like This - Play Button Overlay */
.similar-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px;
  height: 44px;
  background: rgba(229, 9, 20, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
  pointer-events: none;
}

.similar-card:hover .similar-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.similar-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.similar-grid .movie-card {
  width: 100%;
}

@media (max-width: 480px) {
  .similar-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* More Like This Section (Player Page) */
.more-like-this-section {
  padding: 25px 0 10px;
  border-top: 1px solid #282828;
  margin-top: 30px;
}

.more-like-this-section h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.3px;
}


.row-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  border: none;
  color: var(--text-color);
  width: 44px;
  height: 100%;
  max-height: calc(100% - 30px);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.25s ease, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-inner-container:hover .row-arrow {
  opacity: 1;
}

.row-arrow:hover {
  background-color: rgba(10, 10, 10, 0.92);
}

.row-arrow.left {
  left: 0;
  border-radius: 0 6px 6px 0;
}

.row-arrow.right {
  right: 0;
  border-radius: 6px 0 0 6px;
}

/* ── Detail Modal ── */
.detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}

.detail-modal.active {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 860px;
  background-color: #181818;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255,255,255,0.05);
  animation: modalZoom 0.26s cubic-bezier(0.22, 0.8, 0.22, 1);
}

@keyframes modalZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--text-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: background-color 0.2s;
}

.modal-close-btn:hover {
  background-color: rgba(229, 9, 20, 0.8);
}

.modal-banner {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.modal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #181818 0%, rgba(24, 24, 24, 0.4) 60%, rgba(24, 24, 24, 0) 100%);
}

.modal-banner-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  width: calc(100% - 60px);
}

.modal-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.modal-banner-buttons {
  display: flex;
  gap: 12px;
}

.modal-btn-play,
.modal-btn-download,
.modal-btn-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-btn-play {
  background-color: var(--text-color);
  color: #000;
}

.modal-btn-download {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.modal-btn-tg {
  background-color: #229ED9;
  color: #fff;
}

.modal-btn-play:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.18);
}

.modal-btn-download:hover,
.modal-btn-tg:hover {
  transform: scale(1.04);
}

.modal-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.modal-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.modal-match {
  color: #46d369;
  font-weight: 700;
}

.modal-year {
  color: #a3a3a3;
}

.modal-badge-hd {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1px 6px;
  font-size: 11px;
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
}

.modal-overview {
  font-size: 15px;
  line-height: 1.6;
  color: #e5e5e5;
}

.modal-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
}

.modal-poster {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 2/3;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.modal-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-info-list > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-label {
  color: #666;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.info-val {
  color: #e0e0e0;
  font-size: 13px;
  line-height: 1.4;
}

.modal-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.genre-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: #ccc;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.modal-score {
  color: #f5c518;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.modal-runtime-badge,
.modal-seasons-badge {
  background: rgba(255,255,255,0.08);
  padding: 2px 9px;
  border-radius: 5px;
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}

/* Episodes section for TV Shows */
.modal-episodes-section {
  padding: 0 30px 30px;
  border-top: 1px solid #282828;
}

.episodes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0 15px;
}

.episodes-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.season-selector {
  background-color: #242424;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  font-weight: 600;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

.episode-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  border: 1px solid transparent;
}

.episode-card:hover {
  background-color: #272727;
  border-color: rgba(255,255,255,0.06);
}

.episode-number {
  font-size: 15px;
  font-weight: 700;
  color: #555;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.episode-thumb {
  width: 120px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background-color: #181818;
  position: relative;
  flex-shrink: 0;
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.episode-card:hover .episode-thumb img {
  transform: scale(1.05);
}

.episode-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.2s;
}

.episode-card:hover .episode-play-icon { opacity: 1; }

.episode-info {
  flex: 1;
  min-width: 0;
}

.episode-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 5px;
}

.episode-name {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.episode-runtime {
  font-size: 11px;
  color: #666;
  flex-shrink: 0;
}

.episode-overview {
  font-size: 12px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.45;
}

/* ── Content Grid / Filtered Pages (Movies, TV Shows, Search Results) ── */
.grid-container,
.grid-page-container {
  padding: calc(var(--navbar-height) + 30px) 4% 60px;
  background-color: var(--bg-color);
  min-height: 100vh;
}

.page-title,
.grid-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.filters-wrapper,
.grid-page-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.filter-buttons,
.grid-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-select {
  background-color: #222222;
  color: var(--text-muted);
  border: 1px solid #333333;
  padding: 8px 36px 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  font-family: inherit;
}

.filter-select:focus,
.filter-select:hover {
  border-color: var(--primary-color);
  color: #fff;
  outline: none;
}

.filter-select option {
  background-color: #1a1a1a;
  color: #fff;
}

.filter-btn,
.filter-tag {
  background-color: #1e1e1e;
  color: var(--text-muted);
  border: 1px solid #2e2e2e;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover,
.filter-tag.active,
.filter-tag:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.search-results-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px 15px;
}

.media-grid .movie-card {
  width: 100%;
}

@media (max-width: 480px) {

  .search-results-grid,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }
}

/* Loading Spinner */
.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  width: 100%;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.07);
  border-top-color: var(--primary-color);
  border-right-color: rgba(232, 25, 44, 0.35);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 50px;
}

.pagination-btn,
.page-btn {
  background-color: #1e1e1e;
  border: 1px solid #2e2e2e;
  color: var(--text-color);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.pagination-btn:hover:not(:disabled),
.page-btn:hover:not(:disabled) {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.pagination-btn:disabled,
.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn.active,
.page-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.pagination-info,
.page-info {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 6px;
}

@media (max-width: 480px) {
  .pagination {
    gap: 4px;
    margin-top: 30px;
  }

  .pagination-btn,
  .page-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .page-info {
    width: 100%;
    text-align: center;
    margin: 6px 0 0;
    order: 99;
  }
}

/* ── Footer ── */
.site-footer {
  background-color: var(--bg-darker);
  border-top: 1px solid #1c1c1c;
  padding: 52px 4% 32px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-inner {
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 0 auto;
  max-width: 260px;
}

.footer-brand .logo {
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #222;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copyright {
  color: #666;
  font-size: 13px;
}

.footer-disclaimer {
  color: #555;
  font-size: 12px;
  line-height: 1.5;
}

/* ── Responsive Styling ── */
@media (max-width: 992px) {
  .navbar {
    padding: 0 5%;
  }

  .navbar.active {
    background-color: var(--bg-color);
  }

  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    right: -100%;
    width: 250px;
    height: calc(100vh - var(--navbar-height));
    background-color: var(--bg-darker);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 99;
  }

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

  .hamburger {
    display: flex;
  }

  .navbar.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .navbar.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-banner {
    height: 70vh;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-banner-title {
    font-size: 2.2rem;
  }

  .movie-card {
    width: 140px;
  }

  .modal-banner-info {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
  }

  .modal-body {
    padding: 15px;
  }

  .modal-episodes-section {
    padding: 0 15px 15px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

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

  .footer-nav {
    gap: 28px;
  }
}
/* ═══════════════════════════════════════════
   INNER PAGES — shared styles (pg-*)
═══════════════════════════════════════════ */

/* Page Hero Header */
.pg-hero {
  padding: calc(var(--navbar-height) + 64px) 5vw 60px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-darker) 100%);
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 340px;
  background: radial-gradient(ellipse, rgba(232,25,44,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.pg-tag {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid rgba(232,25,44,0.35);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(232,25,44,0.07);
}
.pg-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 14px;
  line-height: 1.1;
}
.pg-hero .pg-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.pg-updated {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 4px 14px;
}

/* Page content wrapper */
.pg-content {
  background: var(--bg-darker);
  padding: 64px 5vw 80px;
}
.pg-inner {
  max-width: 880px;
  margin: 0 auto;
}

/* Key point strip */
.pg-key-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.pg-key-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}
.pg-key-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(232,25,44,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.pg-key-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.pg-key-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Legal section block */
.pg-section {
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.pg-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pg-section-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pg-section-head h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.pg-section-body {
  padding: 22px 24px;
}
.pg-section-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 14px;
}
.pg-section-body p:last-child { margin-bottom: 0; }
.pg-section-body ul {
  padding-left: 20px;
  margin: 10px 0;
}
.pg-section-body li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 2;
}
.pg-section-body a { color: var(--primary-color); }

/* Highlight / notice box */
.pg-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(232,25,44,0.07);
  border: 1px solid rgba(232,25,44,0.22);
  margin-bottom: 36px;
}
.pg-notice-icon {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 2px;
}
.pg-notice p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}
.pg-notice strong { color: #fff; }

/* Section divider title */
.pg-divider-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 52px 0 24px;
  padding-left: 14px;
  border-left: 4px solid var(--primary-color);
  letter-spacing: -0.3px;
}

/* Help cards */
.pg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.pg-card {
  padding: 26px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.pg-card:hover {
  border-color: rgba(232,25,44,0.4);
  transform: translateY(-3px);
}
.pg-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(232,25,44,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.pg-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.pg-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Steps */
.pg-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 52px; }
.pg-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}
.pg-step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pg-step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.pg-step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.pg-step-body a { color: var(--primary-color); }

/* Contact form */
.pg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 52px;
}
.pg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pg-contact-card {
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pg-contact-card-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,25,44,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.pg-contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.pg-contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.pg-contact-card a { color: var(--primary-color); }
.pg-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pg-field { display: flex; flex-direction: column; gap: 7px; }
.pg-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.pg-field input,
.pg-field select,
.pg-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.pg-field input:focus,
.pg-field select:focus,
.pg-field textarea:focus { border-color: var(--primary-color); }
.pg-field select option { background: #1a1a1a; }
.pg-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.pg-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  align-self: flex-start;
}
.pg-submit:hover { background: #c2112a; }

/* Bottom CTA */
.pg-cta-box {
  margin-top: 52px;
  padding: 32px;
  border-radius: 14px;
  background: rgba(232,25,44,0.06);
  border: 1px solid rgba(232,25,44,0.18);
  text-align: center;
}
.pg-cta-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.pg-cta-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.pg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: background 0.2s;
}
.pg-cta-btn:hover { background: #c2112a; }

/* DMCA checklist */
.pg-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.pg-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pg-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-color);
}

/* Responsive inner pages */
@media (max-width: 768px) {
  .pg-key-strip { grid-template-columns: 1fr; }
  .pg-cards { grid-template-columns: 1fr 1fr; }
  .pg-contact-grid { grid-template-columns: 1fr; }
  .pg-form-row { grid-template-columns: 1fr; }
  .pg-hero h1 { font-size: 2rem; }
}
@media (max-width: 500px) {
  .pg-cards { grid-template-columns: 1fr; }
  .pg-hero { padding: calc(var(--navbar-height) + 44px) 5vw 44px; }
  .pg-content { padding: 44px 5vw 60px; }
}
