/* =========================
   PREMIUM GAMING FOOTER
   ========================= */

.gaming-footer {
  width: 100%;
  margin-top: 34px;
  padding: 34px 0 40px;
  color: #28333d;
  text-align: center;
  background: linear-gradient(180deg, #dff1f8 0%, #cce8f3 100%);
  border-top: 1px solid rgba(35, 125, 165, 0.16);
}

.gaming-footer__inner {
  width: min(calc(100% - 28px), 1000px);
  margin-inline: auto;
}

.footer-brand {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.footer-shield {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #171b20;
  background: linear-gradient(135deg, #ffd83d, #ffad18);
  box-shadow: 0 6px 16px rgba(168, 119, 0, 0.16);
  font-size: 1.4rem;
}

.footer-brand h2 {
  margin: 0 0 10px;
  color: #17232d;
  font-family: var(--font-gaming);
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-brand p {
  max-width: 700px;
  margin: 0 auto;
  color: #496573;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
  font-size: 18px;
}

.footer-contact {
  margin-top: 26px;
  text-align: center;
}

.footer-contact__title {
  display: block;
  margin-bottom: 12px;
  color: #36515f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social {
  min-width: 115px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(30, 90, 115, 0.13);
  border-radius: 10px;
  color: #243943;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 4px 12px rgba(35, 75, 95, 0.07);
  font-size: 0.78rem;
  font-size: 19px;
  font-weight: 800;
  transition:
    transform var(--transition),
    background var(--transition);
}

.footer-social img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.footer-social:hover {
  transform: translateY(-2px);
  background: #fff3b8;
}

.footer-divider {
  height: 1px;
  margin: 27px 0 19px;
  background: rgba(32, 112, 148, 0.17);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 12px;
}

.footer-bottom__links a {
  color: #3e5e6d;
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-bottom__links a:hover {
  color: #111;
}

.footer-bottom p {
  margin: 0;
  color: #667f8b;
  font-size: 0.76rem;
  font-weight: 650;
}

/* Mobile */
@media (max-width: 560px) {
  .gaming-footer {
    margin-top: 26px;
    padding: 28px 0 92px;
  }

  .gaming-footer__inner {
    width: calc(100% - 24px);
  }

  .footer-shield {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .footer-brand h2 {
    font-size: 1.12rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .footer-contact__title {
    font-size: 0.76rem;
  }

  .footer-social {
    min-width: 105px;
    padding: 8px 11px;
    font-size: 0.72rem;
  }

  .footer-social img {
    width: 21px;
    height: 21px;
  }

  .footer-bottom__links a,
  .footer-bottom p {
    font-size: 0.7rem;
  }
}

@media (max-width: 300px) {
  .footer-brand p {
    font-size: 0.76rem;
  }

  .footer-social {
    min-width: 98px;
  }
}
/* WhatsApp */
.footer-social[aria-label="WhatsApp"] {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.footer-social[aria-label="WhatsApp"] img {
  filter: brightness(0) invert(1);
}

.footer-social[aria-label="WhatsApp"]:hover {
  background: #20bd5a;
  border-color: #20bd5a;
}


/* Facebook */
.footer-social[aria-label="Facebook"] {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}

.footer-social[aria-label="Facebook"] img {
  filter: brightness(0) invert(1);
}

.footer-social[aria-label="Facebook"]:hover {
  background: #1268d3;
  border-color: #1268d3;
}