/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    
    /* CAMBIOS CLAVE PARA EL FONDO DE IMAGEN ADAPTABLE */
    background: #1a1a1a; /* Color de fallback si la imagen no carga */
    background-image: url('../img/smite-fondo-web.jpg'); 
    background-size: cover; /* Asegura que la imagen cubra toda la pantalla */
    background-position: center center; 
    background-repeat: no-repeat; 
    background-attachment: fixed; /* Mantiene la imagen fija al hacer scroll */
    /* FIN DE CAMBIOS CLAVE */
    
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alineación ajustada para desplazamiento vertical */
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}
.container {
    text-align: center;
    /* Fondo semi-transparente para que la imagen de fondo se vea a través del contenedor */
    background: rgba(41, 41, 41, 0.9); 
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    /* Asegura que el contenedor esté por encima del fondo fijo */
    z-index: 10;
}
.profile-pic {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
h1, h2 {
    margin: 10px 0;
    color: #d3a02a;
}
p {
    margin: 10px 0 20px;
}
/* Estilos de Botones Sociales */
.social-link {
    display: flex;
    align-items: center;
    background: #2468ac; /* Fondo de los botones */
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    text-decoration: none;
    color: #ecf0f1;
    transition: border 0.3s ease;
	background-color: rgba(189, 176, 134, 0.15);
}
.social-link i {
    margin-right: 10px;
}
.social-link:hover {
    border: 2px solid #e67e22; /* Borde naranja al pasar el mouse */
}

/* Estilos del Carrusel */
.slider-container {
    margin-top: 30px;
}
.slider-item {
    padding: 5px;
    outline: none;
}
.slider-item img {
    width: 100%;
    height: 300px; 
    object-fit: contain; /* Mantiene la relación de aspecto y muestra la imagen completa */
    border-radius: 5px;
    cursor: pointer;
    background-color: #1a1a1a; /* Color de fondo dentro del slider para rellenar el espacio si la imagen no lo cubre */
	background-color: rgba(189, 176, 134, 0.15);
}

/* Estilos de Steam Preview */
.steam-preview {
    margin-top: 30px;
}
.steam-link {
    display: flex;
    flex-direction: column;
    /* Degradado de fondo: de un gris oscuro (arriba) a negro (abajo) */
    background: #171a21; /* Color base (gris oscuro de Steam) */
    background: linear-gradient(130deg, #3b4351, #282e39);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    height: 146px; /* Altura fija para el recuadro */
    padding: 10px 15px;
    border-radius: 4px;
    border-top: 1px solid #424c5c;
    border-left: 1px solid #424c5c;
    position: relative;
    margin: 0 auto;
    color: #c7d5e0;
    text-decoration: none;
    text-align: left;
    border: 1px solid #3c4451;
    transition: background-color 0.2s ease;
}
.steam-link:hover {
    background: #2a3038;
    background: linear-gradient(to bottom, #2b3038 5%, #2a3038 95%);
}
.steam-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #66c0f4;
    margin-bottom: 5px;
}
.steam-desc {
    font-size: 0.9em;
    color: #a8a8a8;
}

/* Estilos para la estructura de la preview con imagen */
.steam-content {
    display: flex; 
    align-items: flex-start;
    gap: 15px;
}

.steam-logo {
    width: 150px;
    height: auto;
    border-radius: 3px;
    flex-shrink: 0;
}

.steam-details {
    flex-grow: 1;
}