:root {
  --bg: #0b0f14;
  --panel: #0f1720;
  --muted: #9aa6b2;
  --accent: #ff5c5c;
  --accent-2: #5ce0ff;
  --text: #e6eef6;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-2: rgba(255, 255, 255, 0.02);
  --card-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
  --radius: 10px;
  --max-width: 1200px;
  --transition: 200ms cubic-bezier(.2, .9, .3, 1);
  --focus-ring: 0 0 0 3px rgba(92, 224, 255, 0.12);
  --warning: #ffb86b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.footer {
  background: var(--bg);
  color: #d1d1d1;
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #b3b3b3;
}

.footer-text-sm {
  font-size: 12px;
  color: #9c9c9c;
  margin-bottom: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #b3b3b3;
  font-size: 14px;
  transition: color 0.25s ease;
}

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

.tmdb-logo {
  height: 30px;
  margin-top: 6px;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.tmdb-logo:hover {
  opacity: 1;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 40px auto;
  width: 100%;
  max-width: 1200px;
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-link {
  font-size: 13px;
  color: #bfbfbf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

.footer-dot {
  margin: 0 8px;
  color: #6e6e6e;
}

.footer-copy {
  font-size: 13px;
  color: #8c8c8c;
}

.faq-container {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #ffffff30;
  padding: 6px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  text-align: left;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #ff4081;
}

.faq-icon {
  font-weight: bold;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  color: #ddd;
  font-size: 14px;
  padding-right: 5px;
}

.faq-answer p {
  margin: 5px 0 12px;
}
