

.footer {
  background: #0000008a;
  color: #aaa;
  padding: 25px 20px 25px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-top: 2%;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: baseline;       /* Aligns logo bottom with text baseline */
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 2rem;               /* Matches text size exactly */
  width: auto;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  margin-bottom: 32px;
  margin-top: 42px;
  font-size: 0.82rem;          /* Smaller links */
}

.footer-link {
  color: rgb(164, 170, 179);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 25px;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #080f15b2;
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.1rem;           /* Icon inside circle */
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-circle:hover,
.social-circle:focus {
  background: #080f157c;
  color: #fff;
  transform: scale(1.08);
}


.footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 18px;
}

.badge-link {
  line-height: 0;
}

.badge-img {
  height: 36px;                /* Smaller badges overall */
  width: auto;
  display: block;
}

.roku {
  height: 32px;                /* Roku logo often needs slight adjustment */
}

.amazon {
  height: 34px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #666;
}

/* Mobile – even more compact */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 40px;
  }

  .footer-logo-text {
    font-size: 1.25rem;
  }

  .footer-logo-img {
    height: 1.25em;
  }

  .footer-links {
    gap: 12px 18px;
    font-size: 0.85rem;
  }

  .social-circle {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .footer-badges {
    gap: 14px 24px;
  }

  .badge-img {
    height: 34px;
  }
}














/* Language selector styling */
.footer-language {
  display: flex;
  justify-content: center;
}

.lang-select {
  background: #080f15b2;
  color: #aaa;
  border: none;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-select:hover {
  background: #080f15;
  color: #fff;
  border-color: #555;
}

.lang-select:focus {
  outline: none;
  border-color: #777;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}