:root {
  --color-zombie: #2ecc40;
  --color-barbanegra: #25a336;
  --color-mito:
  --color-fondo: #0D0F40;
}

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
 background: linear-gradient(to bottom, #0D0F40, #000000);
  margin: 0;
  padding: 0;
  color: #f1f1f1;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  opacity: 0.12;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.card img {
  border: 5px solid #733eee; /* Azul eléctrico */
  border-radius: 6; /* Opcional, si no querés esquinas redondeadas */
}
.card video {
  border: 5px solid #733eee; /* Azul eléctrico */
  border-radius: 6; /* Opcional, si no querés esquinas redondeadas */
}
.ribbon-tag {
  position: absolute;
  top: 60px; /* mitad fuera */
  left: 0px;
  background-color: #733eee;
  color: #ffffff; /* azul eléctrico */
  border: 2px solid #733eee;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 10;
  border-radius: 0 0 6px 6px;
}

.btn-outline-light{
  background-color: rgba(0, 0, 0, 0.164);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.red-box {
  font-size: 1em;         /* Tamaño normal para el texto grande */
  vertical-align: middle; /* Para que esté alineado con el texto */
}

.red-box.small {  
  background-color: red;
  color: white;
  
  font-size: 0.7em;       /* Fuente más chica para "DE" */
  padding: 0 0.15em;      /* Ajusta un poco el padding si quieres */
}

.xsmall {
  font-size: 1rem;
}

.container-juegos {
  padding-top: 40px;
  padding-bottom: 40px;
}

.card {
  transition: all 0.3s ease;
}

  .card-hover-content {
    transition: opacity 0.3s ease;
  }

  .card:hover .card-hover-content {
    opacity: 1 !important;
  }

.card:hover video {
  opacity: 1 !important;
}
 
.image-wrapper {
  height: 150px; /* o el alto que necesites */
  overflow: hidden;
}

.image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem; /* opcional, si querés mantener el borde redondeado */
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 1.8) 100%);
  pointer-events: none;
}

 .social-links {
  text-align: center; 
  margin-top: 40px;
 
}

.social-links h3 {
  margin-bottom: 15px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
}

.social-links img {

  width: 40px;
  height: 40px;
  transition: transform 0.2s;

}

.social-links img:hover {
  transform: scale(1.1);
}
