/* --- Brand Color Palette (Derived from ALL MOVIE SITE Logo) --- */
:root {
  --primary-orange: #FF5E00;
  --primary-red: #FF0000;
  --secondary-gold: #FFB700;
  --bg-dark: #0A0D14;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(28, 36, 56, 0.9);
  --text-main: #FFFFFF;
  --text-sub: #94A3B8;
  --glow-orange: rgba(255, 94, 0, 0.35);
  --glow-red: rgba(255, 0, 0, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows & Grid Effect */
.bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 15%, rgba(255, 94, 0, 0.12) 0%, transparent 60%);
  z-index: -3;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  opacity: 0.45;
}
.orb1 { top: -10%; left: -10%; width: 450px; height: 450px; background: var(--primary-orange); }
.orb2 { bottom: 10%; right: -5%; width: 400px; height: 400px; background: var(--primary-red); }
.orb3 { top: 40%; left: 80%; width: 300px; height: 300px; background: var(--secondary-gold); opacity: 0.15; }

.grid {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

/* Top Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 6%;
  background: rgba(10, 13, 20, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 94, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#logoImg {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--glow-orange);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand-all {
  color: var(--primary-orange);
  background: linear-gradient(135deg, #FF9900, #FF3B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-site {
  color: var(--text-main);
  margin-left: 5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  padding: 6px 14px;
  border-radius: 8px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
  background: rgba(255, 94, 0, 0.15);
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.2);
}

/* Hero Content Area */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem 1rem 1.5rem;
}

.badge {
  background: rgba(255, 94, 0, 0.12);
  color: var(--secondary-gold);
  border: 1px solid rgba(255, 94, 0, 0.3);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.15);
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight-title {
  background: linear-gradient(135deg, #FFFFFF 0%, #FF9900 50%, #FF2E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-sub);
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Category Filter Buttons (Pill Bar) */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 2.2rem 0;
  max-width: 1000px;
}

.cat-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-sub);
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cat-btn:hover {
  color: #fff;
  border-color: rgba(255, 94, 0, 0.5);
  box-shadow: 0 0 15px var(--glow-orange);
  transform: translateY(-2px);
}

.cat-btn.active {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  border-color: transparent;
  color: #FFF;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
}

.glow-line {
  width: 80%;
  max-width: 650px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  margin: 1rem 0;
}

/* Main Directory Section Grid */
main {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto 3rem auto;
}

.directory-section {
  margin-bottom: 3rem;
}

/* Centered Section Titles */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  text-align: center; /* 👈 Centers the text */
}

/* Centered Underline Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
  margin: 0 auto 1.5rem auto; /* 👈 'margin: 0 auto' centers the bar horizontally */
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* Site Links Cards */
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  min-height: 85px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 94, 0, 0.6);
  box-shadow: 0 8px 25px rgba(255, 94, 0, 0.25);
  background: var(--bg-card-hover);
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

/* Content Pages (About, Request, DMCA) */
.page-view {
  max-width: 850px;
  margin: 2rem auto 4rem auto;
}

.info-page {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 94, 0, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 90%;
}

.info-page h2 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.info-box {
  background: rgba(0, 0, 0, 0.35);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-orange);
}

.info-box h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  margin-bottom: 0.6rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.email-highlight {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-gold);
}

.email-highlight a {
  color: var(--secondary-gold);
  text-decoration: none;
}

.email-highlight a:hover {
  text-decoration: underline;
}

/* Footer Section */
.footer {
  margin-top: auto;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
  background: rgba(6, 8, 12, 0.95);
  color: var(--text-sub);
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 480px) {
  nav {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  #logoImg {
    height: 32px;
  }

  .nav-links {
    gap: 0.4rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .content {
    padding: 1.5rem 0.8rem 0.8rem 0.8rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }

  /* Horizontal swipeable category buttons */
  .categories {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
    padding: 0.5rem 0.2rem 0.8rem 0.2rem;
    margin: 1.2rem 0 0.8rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .categories::-webkit-scrollbar {
    display: none;
  }

  .cat-btn {
    flex: 0 0 auto;
    padding: 7px 13px;
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Clean 2-column layout on phones */
    gap: 10px;
  }

  .service-card {
    padding: 12px 8px;
    min-height: 65px;
  }

  .service-name {
    font-size: 0.85rem;
  }
}

/* 2. TABLETS & LARGE PHONES (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 0.9rem 1.5rem;
    gap: 0.8rem;
  }

  .nav-links {
    gap: 1rem;
  }

  h1 {
    font-size: 2.3rem;
  }

  .categories {
    gap: 8px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
    gap: 14px;
  }

  .service-card {
    padding: 16px 12px;
    min-height: 75px;
  }

  .service-name {
    font-size: 0.95rem;
  }
}

/* 3. LAPTOPS & SMALL DESKTOPS (769px to 1200px) */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  main {
    width: 92%;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on laptops */
    gap: 16px;
  }
}

/* 4. LARGE DESKTOPS & HIGH-RES MONITORS (1201px to 1800px) */
@media screen and (min-width: 1201px) and (max-width: 1800px) {
  main {
    max-width: 1400px;
  }

  .services-grid {
    grid-template-columns: repeat(6, 1fr); /* 6 columns on large screens */
    gap: 18px;
  }
}

/* 5. SMART TVS & 4K DISPLAY MONITORS (Above 1801px) */
@media screen and (min-width: 1801px) {
  body {
    font-size: 18px;
  }

  main {
    max-width: 1800px;
  }

  nav {
    padding: 1.2rem 10%;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  #logoImg {
    height: 50px;
  }

  h1 {
    font-size: 4rem;
  }

  p {
    font-size: 1.3rem;
    max-width: 800px;
  }

  .cat-btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 16px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(8, 1fr); /* 8 columns on TV screens */
    gap: 20px;
  }

  .service-card {
    min-height: 100px;
    padding: 26px 18px;
    border-radius: 18px;
  }

  .service-name {
    font-size: 1.2rem;
  }
}