/* Video de fondo */
#videoBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Siempre detrás del contenido */
    filter: brightness(0.8); /* Oscurece un poco para que el texto resalte */
}

/* Ajuste general del body */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1; /* Asegura que el contenido esté encima del video */
}

header {
    text-align: center;
    margin: 20px 0;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #120a20a9;
    position: relative;
    z-index: 1;
    animation: glow 3s infinite ease-in-out;
    box-shadow: 0 0 15px #3aedc6, 0 0 30px #33eac2, 0 0 45px #33eac2;
}

/* Animación del resplandor */
@keyframes glow {
    0% {
        box-shadow: 0 0 10px #3aedc6, 0 0 20px #33eac2, 0 0 30px #33eac2;
    }
    50% {
        box-shadow: 0 0 20px #3aedc6, 0 0 40px #33eac2, 0 0 60px #33eac2;
    }
    100% {
        box-shadow: 0 0 10px #3aedc6, 0 0 20px #33eac2, 0 0 30px #33eac2;
    }
}

.badges {
    display: flex;
    gap: 5px; /* Espacio entre badges */
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 2px; /* Espacio entre texto e imagen */
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    color: white;
}

.badge.developer { background-color: gold; color: black; } /* Dorado */
.badge.beta { background-color: gold; color: black; } /* Dorado */
.badge.premium2 { background-color: gold; color: black; } /* Dorado */
.badge.premium { background-color: gold; color: black; } /* Dorado */

.badge-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.descripcion {
    color: #ffffff;
    font-size: 14px;
}

.link-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
/**********************************************************************/
/* Todas las tarjetas */
.link-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    justify-content: center;
    gap: 15px; /* Espacio entre tarjetas */
}

.link-card {
    background: rgba(19, 4, 4, 0.438);
    border-radius: 12px;
    padding: 15px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    backdrop-filter: blur(8px);
    width: 220px; /* Todos con el mismo ancho */
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #07cfbf;
    transform: scale(1.03);
}

.link-card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.link-card p {
    font-size: 14px;
    color: #c00892;
}
/***********************************************************/
footer {
  width: 100%;
  background: transparent; /* Fondo transparente */
  text-align: center;
  padding: 20px 0;
  color: #f7f7f7; /* Texto oscuro */
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 40px; /* 🔧 Ajusta este valor para bajarlo más */
}

footer p {
  margin: 0;
}

/***********************************************************/
