* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #000000;
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER Y NAV (COPIA FIEL) --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000; 
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links li a:hover, .nav-active a {
    color: #00f2ff;
}

/* LOGO */
.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

/* --- TÍTULO COMUNIDAD --- */
.main-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 242, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.5);
    margin-bottom: 50px;
}

/* --- CONTENEDOR COMUNIDAD --- */
.content-wrapper { 
    padding: 30px 20px 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    flex: 1; 
    display: flex; 
    flex-direction: column;
}

.comunidad-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #eee;
    border-left: 4px solid #ff00ff;
    padding-left: 20px;
    margin-bottom: 40px;
}

/* --- FOOTER --- */
.footer-do {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

/* --- NEBULOSA --- */
.nebulosa-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    overflow: hidden;
}

.vapor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(80px);
    animation: movimientoEpico 15s infinite alternate ease-in-out;
}

.v-magenta {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.4) 0%, transparent 70%);
    top: -10%; left: -10%;
}

.v-aqua {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    bottom: -10%; right: -10%;
    animation-duration: 20s;
}

.v-azul-marino {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 20, 150, 0.4) 0%, transparent 70%);
    top: 20%; left: 30%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.v-blanco {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 40%; left: 50%;
    filter: blur(50px);
    animation-duration: 12s;
}

.v-rojo-claro {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 80, 80, 0.3) 0%, transparent 70%);
    bottom: 10%; left: 5%;
    animation-duration: 18s;
}

.v-aqua-deep {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.3) 0%, transparent 70%);
    top: 5%; right: 15%;
    animation-delay: -3s;
}

.v-magenta-dark {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(150, 0, 150, 0.3) 0%, transparent 70%);
    bottom: 20%; right: 30%;
    animation-duration: 22s;
}

.v-brillo {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 80%);
    top: 10%; left: 40%;
    filter: blur(40px);
    animation-duration: 10s;
}

@keyframes movimientoEpico {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(150px, 100px) scale(1.2) rotate(15deg);
    }
    100% {
        transform: translate(-100px, 200px) scale(0.9) rotate(-15deg);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }
    
    .nav-links li {
        margin-left: 15px;
    }
    
    .nav-links li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px;
    }

    .nav-container {
        flex-direction: column; 
        gap: 15px;
    }

    .nav-links {
        padding: 0;
        justify-content: center;
        width: 100%;
    }

    .nav-links li {
        margin: 0 8px; 
    }

    .main-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .comunidad-box {
        padding: 20px;
    }

    .quote-text {
        font-size: 1rem;
    }
}