/* Fondo negro que ocupa todo el espacio */
body {
    color: white;
    background-color: black;
    margin: 0;
}

/* Contenedor de estrellas */
#stars-container {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

/* Estrellas */
.star {
    animation: blink 2s infinite;
    background-color: gray;
    border-radius: 50%;
    position: absolute;
    opacity: 0;
}

/* Animación de parpadeo */
@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Estilos del perfil */
.profile-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Foto de portada */
/* .cover-photo img {
    width: 100%;
    border-radius: 10px;
} */

/* Avatar */
.avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid #fff;
}

/* Games */
.game-records .record {
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid gray;
}

.game-records .record:last-child {
    border-bottom: none;
}

.game-records p {
    font-size: 0.85rem;
    color: gray;
}

/* Pestañas */
.nav-tabs .nav-link {
    color: #ccc;
}

.nav-tabs .nav-link.active {
    background-color: #333;
    color: #fff;
}

.tab-content {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
}
