.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 40px 20px 25px;
  border-top: 2px solid #e10600;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(320px, 1.55fr) minmax(170px, 1fr);
  align-items: center;
  gap: 28px;
}

.footer-brand h2 {
  margin: 0;
  color: #e10600;
  font-family: "Orbitron", sans-serif;
}

.footer-brand p {
  opacity: 0.7;
  margin-top: 6px;
}

.footer-apps {
  width: 100%;
}

.footer-apps-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

.footer-apps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-app-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.footer-app-link img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(225, 6, 0, 0.22);
}

.footer-app-link span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.footer-app-link strong {
  overflow: hidden;
  font-size: 12px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-app-link small {
  overflow: hidden;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-apps-list {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

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