.footer-netflix {
  background: linear-gradient(
    to bottom,
    rgba(20,26,50,0) 0%,
    rgba(20,26,50,0.01) 1%,
    rgba(20,26,50,1) 100%
  );
  color: #999;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-ft {
  margin: 0;
}

.logo-ft img {
  height: 2.4rem;
  width: auto;
  max-width: 100%;
  display: block;
  transition: 0.3s ease;

  filter:
    drop-shadow(0 0 6px rgba(111,197,3,0.7))
    drop-shadow(0 0 14px rgba(111,197,3,0.5));
}

.logo-ft img:hover {
  transform: scale(1.08);

  filter:
    drop-shadow(0 0 10px rgba(111,197,3,1))
    drop-shadow(0 0 24px rgba(111,197,3,0.8));
}

.footer-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
}

/* Logo */
.footer-logo img {
  width: 140px;
  filter: brightness(0) invert(1);
  transition: 0.4s ease;
}

.footer-logo img:hover {
  transform: scale(1.08);
}

/* Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #6fc503;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: 0.3s;

  text-shadow:
    0 0 6px rgba(111,197,3,0.5),
    0 0 12px rgba(111,197,3,0.3);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #6fc503;
  transition: 0.3s;
  transform: translateX(-50%);
}

.footer-links a:hover {
  color: #fff;

  text-shadow:
    0 0 10px rgba(111,197,3,0.9),
    0 0 20px rgba(111,197,3,0.7),
    0 0 35px rgba(111,197,3,0.5);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(111,197,3,0.8);

  font-size: 18px;
  transition: all 0.3s ease;

  color: #6fc503;

  box-shadow:
    0 0 8px rgba(111,197,3,0.6),
    0 0 16px rgba(111,197,3,0.3);
}

/* Semua icon jadi glow hijau */
.footer-social .fb,
.footer-social .x,
.footer-social .mail,
.footer-social .ig {
  color: #6fc503;
  background: rgba(0,0,0,0.35);
}

.footer-social a:hover {
  transform: translateY(-6px) scale(1.1);

  background: #6fc503 !important;
  border-color: #6fc503;

  color: #fff !important;

  box-shadow:
    0 0 10px rgba(111,197,3,1),
    0 0 20px rgba(111,197,3,0.9),
    0 0 40px rgba(111,197,3,0.7),
    0 0 70px rgba(111,197,3,0.5);
}

.footer-social .fb,
.footer-social .x,
.footer-social .ig,
.footer-social .mail {
  color: #6fc503 !important;
  background: rgba(0,0,0,0.35) !important;
}

/* Copyright */
.footer-copy p {
  font-size: 13px;
  color: #777;
  text-shadow: 0 0 8px rgba(111,197,3,0.2);
}

.Search {
  position: relative;
}