.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 40px 20px 25px;
  border-top: 2px solid #e10600;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-brand h2 {
  margin: 0;
  color: #e10600;
  font-family: "Orbitron", sans-serif;
}

.footer-brand p {
  opacity: 0.7;
  margin-top: 6px;
}

.footer-portal-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 9px 16px 9px 10px;
  border: 1px solid rgba(225, 6, 0, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.035));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(225, 6, 0, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-portal-link:hover {
  transform: translateY(-2px);
  border-color: #e10600;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.28), rgba(255, 255, 255, 0.055));
}

.footer-portal-link img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(225, 6, 0, 0.3);
}

.footer-portal-link span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-portal-link strong {
  font-size: 14px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.4px;
}

.footer-portal-link small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #e10600;
  border-color: #e10600;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  opacity: 0.75;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: white;
  border: 1px solid #333;
  font-size: 16px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #e10600;
  border-color: #e10600;
  transform: translateY(-2px);
}

.footer-social a:hover {
  background: #e10600;
  border-color: #e10600;
  color: white;
}

@media (max-width: 720px) {
  .footer-container {
    justify-content: center;
    text-align: center;
  }

  .footer-portal-link {
    width: 100%;
    max-width: 330px;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
