/* Estilos generales */
body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Header */
.header {
    background-color: #161b22ee;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #6a29e2;
    box-shadow: 0 0 25px rgba(106, 41, 226, 0.3);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #58ff7c;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.navbar a:hover {
    background: #6a29e233;
    border-color: #58ff7c;
    text-shadow: 0 0 15px #58ff7c;
    transform: translateY(-2px);
}

.navbar a[href="contact.html"] {
    background: #6a29e266;
    border-color: #58ff7c;
    box-shadow: 0 0 15px rgba(88, 255, 124, 0.3);
}

/* Reproductor oscuro con botón "Press_Me" */
#video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 1s ease;
}

#video-container {
    position: relative;
    text-align: center;
}

iframe {
    width: 560px;
    height: 315px;
    border: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Pixelify Sans', sans-serif;
    background-color: #6a29e2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#play-button:hover {
    background-color: #58ff7c;
}

/* Tarjeta estática (oculta inicialmente) */
#static-card {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: rgba(22, 27, 34, 0.9);
    padding: 30px; /* Aumentamos el padding */
    border-radius: 20px; /* Bordes más redondeados */
    box-shadow: 0 0 20px rgba(88, 255, 124, 0.3);
    display: none;
    width: 400px; /* Ancho más grande */
    max-width: 90%; /* Para que sea responsive */
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #58ff7c;
    margin-bottom: 10px;
}

.profile-name {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 2rem;
    color: #58ff7c;
    margin: 10px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links img {
    width: 50px; /* Tamaño un poco más grande */
    height: 50px;
    border-radius: 50%; /* Bordes redondeados */
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #161b22;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.social-links a {
    color: #58a6ff;
    text-decoration: none;
    font-family: 'Pixelify Sans';
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #58ff7c;
    text-shadow: 0 0 15px rgba(88, 255, 124, 0.4);
}

/* Clase para ocultar elementos */
.hidden {
    display: none;
}