body {
  font-family: 'Montserrat', sans-serif;
}

ul li {
  color:#ffffff
}

.logo-img {
  max-height: 100px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.animate-logo {
  animation: fadeZoom 1s ease-out forwards;
}

@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.text-gold { color: #FFD700; }
.text-silver { color: #C0C0C0; }

.btn-outline-gold {
  color: #FFD700;
  border: 2px solid #FFD700;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background-color: #FFD700;
  color: #000;
  text-decoration: none;
}


.game-card {
  background-color: #1a1a1a;
  border: 1px solid #C0C0C0;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
}

.game-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn-danger {
  background-color: #D72638;
  border: none;
  transition: transform 0.2s ease;
  animation: pulseGlow 2s infinite;
}

.btn-danger:hover {
  transform: scale(1.08);
  background-color: #ff3b4f;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0px rgba(255, 215, 0, 0.6); }
  50% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.9); }
  100% { box-shadow: 0 0 0px rgba(255, 215, 0, 0.6); }
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon{
  color: #FFD700;
}

.navbar-dark .navbar-nav .nav-link {
  color: #FFD700;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff; /* Opcional: mejora contraste al interactuar */
}

.border-black {
  border: 2px solid #000 !important;
}

.text-bg-black {
  color: #fff; /* texto blanco */
  background-color: #000; /* fondo negro */
  padding: 0.35em 0.65em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  display: inline-block;
}


.footer-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.social-icon {
  color: #FFD700;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}