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

    body {
      min-height: 100vh;
      background: #0a0a0f;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
      color: #fff;
    }

    /* ── Animated background ── */
    .bg {
      position: fixed; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse at 20% 50%, #0a0a2e 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, #001a3a 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, #0d1020 0%, transparent 60%),
        #07070f;
    }

    .orb {
      position: fixed; border-radius: 50%; filter: blur(40px);
      opacity: 0.3; animation: float linear infinite; z-index: 0; pointer-events: none; will-change: transform;
    }
    .orb1 { width:500px;height:500px;background:#1a3a7c;top:-150px;left:-100px;animation-duration:18s; }
    .orb2 { width:400px;height:400px;background:#0e2a6e;top:30%;right:-100px;animation-duration:22s;animation-delay:-8s; }
    .orb3 { width:350px;height:350px;background:#102050;bottom:-100px;left:30%;animation-duration:20s;animation-delay:-5s; }
    .orb4 { width:250px;height:250px;background:#0a1a50;top:60%;left:10%;animation-duration:15s;animation-delay:-12s; }

    @keyframes float {
      0%   { transform: translate(0,0) scale(1); }
      25%  { transform: translate(60px,-40px) scale(1.1); }
      50%  { transform: translate(30px,60px) scale(0.95); }
      75%  { transform: translate(-40px,20px) scale(1.05); }
      100% { transform: translate(0,0) scale(1); }
    }

    .grid {
      position: fixed; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px; pointer-events: none;
    }

    .particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
    .particle {
      position: absolute; width: 2px; height: 2px;
      background: #fff; border-radius: 50%; opacity: 0;
      animation: twinkle linear infinite;
    }
    @keyframes twinkle {
      0%   { opacity:0; transform:translateY(0); }
      50%  { opacity:0.8; }
      100% { opacity:0; transform:translateY(-80px); }
    }

    /* ── Navbar ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 32px;
      background: rgba(7,7,15,0.7);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .logo-wrap {
      display: flex; align-items: center; gap: 12px; text-decoration: none;
    }
    .logo-wrap img {
      width: 54px; height: 54px;
      object-fit: contain;
      border-radius: 50%;
      filter: drop-shadow(0 0 10px rgba(30,100,255,0.6));
      transition: filter 0.3s;
    }
    .logo-wrap:hover img {
      filter: drop-shadow(0 0 18px rgba(30,100,255,1));
    }
    .logo-text {
      display: flex; flex-direction: column; line-height: 1.1;
    }
    .logo-text .nrc {
      font-size: 1.3rem; font-weight: 800; letter-spacing: 2px;
      background: linear-gradient(135deg, #c0c8e8, #fff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .logo-text .movies {
      font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
      color: #3b82f6; font-weight: 600;
    }

    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.6); text-decoration: none;
      font-size: 0.9rem; letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }

    .nav-btn {
      padding: 9px 22px;
      background: linear-gradient(135deg, #1d4ed8, #3b82f6);
      border: none; border-radius: 6px; color: #fff;
      font-size: 0.85rem; font-weight: 600; cursor: pointer;
      box-shadow: 0 0 20px rgba(59,130,246,0.4);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .nav-btn:hover { box-shadow: 0 0 35px rgba(59,130,246,0.7); transform: translateY(-1px); }

    /* ── Hero content ── */
    .content {
      position: relative; z-index: 1;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      min-height: 100vh; padding: 120px 20px 60px;
      text-align: center;
    }

    .badge {
      display: inline-block;
      background: rgba(30,80,200,0.2);
      border: 1px solid rgba(59,130,246,0.4);
      color: #93c5fd; font-size: 0.72rem;
      letter-spacing: 3px; text-transform: uppercase;
      padding: 6px 18px; border-radius: 999px; margin-bottom: 24px;
    }

    h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 800; line-height: 1.1; margin-bottom: 20px;
      background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #60a5fa 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    p {
      font-size: 1.1rem; color: rgba(255,255,255,0.5);
      max-width: 520px; line-height: 1.7; margin-bottom: 40px;
    }

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

    .btn-primary {
      padding: 14px 34px;
      background: linear-gradient(135deg, #1d4ed8, #3b82f6);
      border: none; border-radius: 8px; color: #fff;
      font-size: 1rem; font-weight: 600; cursor: pointer;
      box-shadow: 0 0 30px rgba(59,130,246,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(59,130,246,0.7); }

    .btn-secondary {
      padding: 14px 34px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px; color: #fff;
      font-size: 1rem; font-weight: 600; cursor: pointer;
      backdrop-filter: blur(8px);
      transition: transform 0.2s, background 0.2s;
    }
    .btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); }

    /* ── Category Section ── */
    .categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
    }

    .cat-btn {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 13px 22px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      color: rgba(255,255,255,0.72);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: 0.3px;
            transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      font-family: 'Segoe UI', sans-serif;
    }

    .cat-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(29,78,216,0.06));
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .cat-btn:hover {
      border-color: rgba(59,130,246,0.55);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(59,130,246,0.2), 0 0 0 1px rgba(59,130,246,0.15);
    }

    .cat-btn:hover::before { opacity: 1; }

    .cat-btn .cat-icon {
      font-size: 1.2rem;
      position: relative;
      z-index: 1;
      line-height: 1;
    }

    .cat-btn .cat-label {
      position: relative;
      z-index: 1;
    }

    .cat-btn.active {
      border-color: rgba(59,130,246,0.7);
      color: #fff;
      background: rgba(59,130,246,0.15);
      box-shadow: 0 0 22px rgba(59,130,246,0.28);
    }

    .cat-btn.active::before { opacity: 1; }

    /* About page */
    .tagline {
      font-size: 1.1rem; font-style: italic;
      color: #60a5fa; margin-bottom: 36px; letter-spacing: 0.5px;
    }
    .about-body {
      max-width: 680px; text-align: left;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 36px 40px;
          }
    .about-body p {
      color: rgba(255,255,255,0.72); font-size: 1.05rem;
      line-height: 1.85; margin-bottom: 20px;
    }
    .about-body p:last-child { margin-bottom: 0; }
    .nav-links a.active { color: #fff; border-bottom: 2px solid #3b82f6; padding-bottom: 2px; }
    .glow-line {
      width: 200px; height: 1px; margin: 50px auto 0;
      background: linear-gradient(90deg, transparent, #1d4ed8, #3b82f6, transparent);
      box-shadow: 0 0 20px rgba(59,130,246,0.6);
    }

    /* ── Movies & Shows Section ── */
    .section {
      position: relative; z-index: 1;
      padding: 60px 40px 80px;
      max-width: 1300px;
      margin: 0 auto;
      contain: layout style;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 4px;
      text-transform: uppercase;
      background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #818cf8 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 12px;
    }

    .section-divider {
      width: 80px; height: 3px;
      background: linear-gradient(90deg, #7c3aed, #6d28d9);
      border-radius: 2px;
      margin: 0 auto 48px;
      box-shadow: 0 0 12px rgba(124,58,237,0.6);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
    }

    .service-card {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
      min-height: 90px;
      text-decoration: none;
      will-change: transform;
    }

    .service-card:hover {
      border-color: rgba(124,58,237,0.5);
      background: rgba(124,58,237,0.08);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(124,58,237,0.2);
    }

    .service-card .service-name {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-align: center;
      color: #fff;
    }

    /* ── Info Pages (Request / DMCA) ── */
    .info-page {
      position: relative; z-index: 1;
      max-width: 820px;
      margin: 0 auto;
      padding: 120px 24px 80px;
    }
    .info-page h2 {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      font-weight: 800; line-height: 1.15; margin-bottom: 28px;
      background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #60a5fa 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .info-page p {
      font-size: 1rem; color: rgba(255,255,255,0.7);
      line-height: 1.8; margin-bottom: 20px; max-width: 100%;
    }
    .info-page h3 {
      font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px;
      color: #93c5fd;
    }
    .info-page ul {
      list-style: none; padding: 0; margin-bottom: 20px;
    }
    .info-page ul li {
      color: rgba(255,255,255,0.7);
      font-size: 0.97rem; line-height: 1.8;
      padding: 6px 0 6px 4px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .info-page .email-highlight {
      display: inline-block;
      margin-top: 16px;
      color: #60a5fa;
      font-size: 1rem;
      font-weight: 600;
      background: rgba(59,130,246,0.1);
      border: 1px solid rgba(59,130,246,0.3);
      padding: 10px 20px;
      border-radius: 8px;
    }
    .info-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 28px 32px;
      margin-bottom: 28px;
    }
    .dmca-box {
      background: rgba(30,60,120,0.15);
      border: 1px solid rgba(59,130,246,0.25);
      border-radius: 14px;
      padding: 28px 32px;
    }
    .dmca-box p {
      color: rgba(255,255,255,0.75);
    }
.footer {
  position: relative;
  z-index: 1;

  display: flex;              /* NEW */
  flex-direction: column;     /* NEW */
  align-items: center;        /* NEW */
  justify-content: center;    /* NEW */

  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;

  background: rgba(255,255,255,0.02);
  border-top: 0.5px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.footer p {
  text-align: center;   /* ensure center */
  width: 100%;          /* ensures perfect alignment */
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 4px 0;
}

.footer .disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}