.game-footer {
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 30px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-box h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-box a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 6px;
  transition: 0.2s;
}

.footer-box a:hover {
  color: #dc2626;
  transform: translateX(4px);
}

.footer-brand h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #dc2626;
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.footer-btn {
  padding: 6px 10px;
  background: #0d142b;
  border-radius: 8px;
  color: #94a3b8;
  text-decoration: none;
  margin-right: 8px;
}

.footer-btn:hover {
  background: #dc2626;
  color: #fff;
}

/* =========================
   CHAT ALERT
========================= */

.chat-alert {
  display: block !important;
  color: #fff !important;
  background: #dc2626;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: bold;
  animation: pulseChat 1.5s infinite;
}

@keyframes pulseChat {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* =========================
   MESSAGE ALERT
========================= */

.message-alert {
  display: block !important;
  color: #fff !important;
  background: #2563eb;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: bold;
  animation: pulseMessage 1.5s infinite;
}

@keyframes pulseMessage {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
