html {
margin: 0;
padding: 0;
overflow-x: hidden;
overflow-y: auto;
background-color: #000;
}
main, header{
user-select: none;
-webkit-user-select: none;
cursor: default;
}
body {
margin: 0;
padding: 0;
width: 100%;
min-height: 100vh;
background-color: #000;
color: #fff;
font-family: 'Science Gothic', sans-serif;
overflow-x: hidden;
}
#stars-canvas {
filter: blur(5px);
position: fixed;
top: -2vh;
left: -2vw;
width: 104vw;
height: 104vh;
z-index: 0;
pointer-events: none;
display: block;
transform: translateZ(0);
}
.info-wrapper {
max-width: 900px;
margin: 80px auto 100px auto; 
padding: 20px;
position: relative;
z-index: 10;
}
.glass-card {
background: transparent; 
border-radius: 20px;
padding: 40px;
margin-bottom: 30px;
border: none;
}
.about-unificado {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.about-content {
flex: 1;
}
.about-image-inline {
flex-shrink: 0;
width: 240px;
height: 240px;
border-radius: 50%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.02);
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.about-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
h2 {
color: #8F0000;
text-shadow: 0 0 15px rgba(143, 0, 0, 0.5);
margin-bottom: 25px;
margin-top: 0;
letter-spacing: 3px;
font-weight: 900;
font-size: 2.3em;
text-transform: uppercase;
}
p {
line-height: 1.8;
font-size: 1.15em;
color: #e0e0e0;
margin-bottom: 15px;
}
b {
color: #fff;
font-weight: 700;
}
.flat-list {
list-style: none;
padding: 0;
margin: 0;
}
.flat-list li {
margin-bottom: 14px;
color: #ccc;
font-size: 1.1em;
text-align: left;
}
.glow-link {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease, text-shadow 0.3s ease;
display: inline-block;
}
.glow-link:hover {
color: #ff0000;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 
            0 0 20px rgba(143, 0, 0, 0.4);
cursor: pointer;
}
@media (max-width: 850px) {
    .about-unificado {
    flex-direction: column-reverse; /* Imagen arriba en móviles */
    text-align: center;
    gap: 30px;
    }
    .about-image-inline {
    width: 180px;
    height: 180px;
    }
    .info-wrapper {
    margin-top: 70px;
    }
    .flat-list li {
    text-align: center;
    }

}
