:root {
  --bg: #070709;
  --panel: #111217;
  --text: #f7f7f7;
  --muted: #9e9ea7;
  --accent: #d7263d;
  --accent-2: #ff455e;
  --border: rgba(255, 255, 255, 0.08);
}

.footer {
  margin-top: auto;
  background: #090a0e;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 1.75rem;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
  max-width: 720px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon-btn:hover,
.social-icon-btn:active {
  background: rgba(215, 38, 61, 0.2);
  border-color: rgba(215, 38, 61, 0.4);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
}

.footer-links a {
  color: #c4c4cc;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover,
.footer-links a:active {
  color: var(--accent-2);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0.25rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-inner {
    gap: 1.25rem;
  }

  .footer-links {
    gap: 0.5rem 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .social-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    width: 100%;
  }

  .footer-brand-desc {
    font-size: 0.88rem;
  }
}

