/* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Orbitron';
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-wrapper {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

/* Logo */
.logo {
    width: 50vw;
    height: auto;
    margin-bottom: 40px;
}

/* Textos */
h3 {
    font-size: clamp(1.3rem, 5vw, 2rem); /* Tamaño fluido */
    font-weight: 300;
    margin-bottom: 15px;
}

.highlight {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: #17b79c; /* Verde del logo */
    margin-bottom: 60px;
}

/* Contenedor de Links */
.links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Esto lo hace responsive */
}

.link-item {
    color: #17b79c;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

/* Iconos específicos */
.link-item i {
    font-size: 1.4rem;
    color: #17b79c;
}

/* Efecto Hover */
.link-item:hover {
    color: #a0ffcc;
    border-bottom: 1px solid #a0ffcc;
}

/* Ajustes para Celulares */
@media (max-width: 600px) {
    .links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .logo {
        width: 90vw;
    }

    h1 {
        margin-bottom: 10px;
    }
}