/* KolRank Profiles CSS */

/* Contenedor principal */
#kr-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    text-align: center;
}

/* Área de perfil */
.kr-profile {
    margin-bottom: 20px;
}

.kr-profile-img img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px #00e0c6; /* Glow inicial */
    animation: glowPulse 3s ease-in-out infinite; /* ✅ Pulsación */
}

/* Animación de glow pulsante */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 12px #00e0c6;
    }
    50% {
        box-shadow: 0 0 28px #00e0c6;
    }
    100% {
        box-shadow: 0 0 12px #00e0c6;
    }
}

/* Nombre en el perfil */
.kr-profile-name {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #fff; /* blanco */
}

/* Enlace dentro del nombre */
.kr-profile-name a {
    color: #fff; /* blanco */
    text-decoration: none;
}

/* Botonera */
#kr-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

#kr-buttons button {
    background: #111;
    color: #fff;
    border: 1px solid #00e0c6;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 600;

    /* ✅ Forzar siempre MAYÚSCULAS */
    text-transform: uppercase;
}

#kr-buttons button:hover {
    background: #00e0c6;
    color: #111;
}