/* --- DEFINICIÓN DE FUENTES PERSONALIZADAS --- */
@font-face {
    font-family: 'HomeVideo';
    src: url('HomeVideo-Regular.woff2') format('woff2'),
         url('HomeVideo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OldEnglishFive';
    src: url('OldEnglishFive.woff2') format('woff2'),
         url('OldEnglishFive.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* --- ESTILOS GLOBALES --- */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'HomeVideo', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
a {
    color: #ffffff;
    text-decoration: none;
}

/* --- EFECTO SCANLINES --- */
.scanlines-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}
.scanlines-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 1px, rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 3px);
    background-size: 100% 3px;
    animation: scanlines-flicker 25s linear infinite;
}
@keyframes scanlines-flicker {
    from { background-position: 0 0; }
    to { background-position: 0 100%; }
}

/* --- ELEMENTOS DECORATIVOS --- */
.fixed-advisory {
    position: fixed;
    top: 25px;
    left: 25px;
    width: 80px;
    z-index: 1000;
}

.portfolio-button {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
}

.utility-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
}

.utility-button {
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.utility-button:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* --- CONTENIDO PRINCIPAL --- */
.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-gif {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 40px;
}

.artist-name {
    font-family: 'OldEnglishFive', serif; 
    font-size: 4rem;
    letter-spacing: 2px;
    margin: 0;
}

/* --- FOOTER Y ENLACES --- */
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

footer a {
    font-size: 1.2rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #aaaaaa;
}

/* --- DISEÑO RESPONSIVO PARA MÓVILES --- */
@media screen and (max-width: 768px) {
    .profile-gif {
        width: 220px;
        height: 220px;
    }

    .artist-name {
        font-size: 2.5rem;
    }

    footer a {
        font-size: 1rem;
        margin: 0 10px;
    }

    .fixed-advisory {
        width: 60px;
        top: 15px;
        left: 15px;
    }
    
    .portfolio-button {
        top: 15px;
        right: 15px;
    }

    .utility-buttons {
        bottom: 15px;
        left: 15px;
    }

    .utility-button {
        font-size: 0.9rem;
    }
}