.footer-netflix {
  background: linear-gradient(
    to bottom,
    rgba(0,106,210,0) 0%,
    rgba(0,106,210,0.03) 1%,
    rgba(0,106,210,1) 100%
  );
  color: #8fcfff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* CENTER LOGO */
.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.35s ease;

  filter:
    drop-shadow(0 0 8px rgba(77,184,255,0.8))
    drop-shadow(0 0 18px rgba(77,184,255,0.6));
}

/* HOVER LOGO */
.logo-ft img:hover {
  transform: scale(1.08);

  filter:
    drop-shadow(0 0 12px rgba(77,184,255,1))
    drop-shadow(0 0 30px rgba(77,184,255,0.9))
    drop-shadow(0 0 60px rgba(77,184,255,0.6));
}

/* CONTAINER */
.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)
    drop-shadow(0 0 10px rgba(77,184,255,0.6));
  transition: 0.4s ease;
}

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

  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 12px rgba(77,184,255,1))
    drop-shadow(0 0 25px rgba(77,184,255,0.8));
}

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

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

  text-shadow:
    0 0 8px rgba(77,184,255,0.5),
    0 0 16px rgba(77,184,255,0.3);
}

/* GARIS HOVER */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;

  background: #4db8ff;

  transition: 0.3s ease;
  transform: translateX(-50%);

  box-shadow:
    0 0 8px rgba(77,184,255,0.9),
    0 0 18px rgba(77,184,255,0.7);
}

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

  text-shadow:
    0 0 12px rgba(77,184,255,1),
    0 0 24px rgba(77,184,255,0.9),
    0 0 45px rgba(77,184,255,0.7);
}

.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.35);
  border: 2px solid rgba(77,184,255,0.8);

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

  color: #4db8ff;

  box-shadow:
    0 0 10px rgba(77,184,255,0.6),
    0 0 20px rgba(77,184,255,0.35);
}

/* SEMUA ICON */
.footer-social .fb,
.footer-social .x,
.footer-social .mail,
.footer-social .ig {
  color: #4db8ff !important;
  background: rgba(0,0,0,0.35) !important;
}

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

  background: #006ad2 !important;
  border-color: #4db8ff;

  color: #ffffff !important;

  box-shadow:
    0 0 12px rgba(77,184,255,1),
    0 0 24px rgba(77,184,255,0.95),
    0 0 45px rgba(77,184,255,0.8),
    0 0 80px rgba(77,184,255,0.6);
}

/* COPYRIGHT */
.footer-copy p {
  font-size: 13px;
  color: #7cc8ff;

  text-shadow:
    0 0 8px rgba(77,184,255,0.3);
}

/* DESKRIPSI */
.footer-desc {
  color: #8fd4ff;
  opacity: .75;
  line-height: 1.7em;

  text-shadow:
    0 0 10px rgba(77,184,255,0.15);
}

/* SEARCH */
.Search {
  position: relative;
}