
.footer-compact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) ;
    color: white;
    padding: 12px 0;
    font-size: 0.8rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    border-top: 2px solid #e94560;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
}

.divider {
    color: #555;
}

.copyright strong {
    color: white;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #e94560;
}

.current-games {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
}

.current-games i {
    color: #e94560;
    font-size: 0.9rem;
}

.hosting {
    color: #cccccc;
}

.hosting a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.hosting a:hover {
    color: #e94560;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .copyright {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*preloader*/.load{
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro translúcido */
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} 

.preloader {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 15px;
}

/* Brazo del atleta (estático) */
.preloader:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 40px;
  height: 20px;
  background: #FFD700;
  border-radius: 40px 40px 0 0;
  transform-origin: 0 100%;
}

/* Antorcha (base estática) */
.preloader:after {
  content: "";
  position: absolute;
  top: 35%;
  left: 60%;
  width: 10px;
  height: 25px;
  background: linear-gradient(to top, #8B4513, #A0522D); /* Color madera */
  border-radius: 0 5px 5px 0;
}

/* Llama animada */
.flame {
  position: absolute;
  top: 10%;
  left: 60%;
  width: 12px;
  height: 30px;
  background: linear-gradient(to top, #FF4500, #FF8C00, #FFD700);
  border-radius: 50% 50% 20% 20%;
  animation: torchFlame 0.8s infinite alternate ease-in-out;
  transform-origin: bottom center;
  box-shadow: 0 0 10px #FF8C00, 0 0 20px #FF4500;
}

@keyframes torchFlame {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleY(1.2) scaleX(1.1);
    opacity: 1;
  }
}

#msgPreloader{
  margin-top: 15px;
  padding: 8px 12px;
  font-size: 1em;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  /*background-color: rgba(0, 0, 0, 0);*/
  border-radius: 4px;
}