/* --- ESTILOS GENERALES Y VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #8A2BE2;
    --secondary-color: #4169E1;
    --accent-color: #FF00FF;
    --text-color: #EAEAEA;
    --bg-color: #0D0B1A;
    --card-bg-color: rgba(23, 19, 44, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- NUEVA SECCIÓN DE BIENVENIDA (HERO) --- */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-image: linear-gradient(rgba(13, 11, 26, 0.85), rgba(13, 11, 26, 0.95)), url('https://storage.googleapis.com/generative-ai-public-downloads/images/3f192b0b-60c7-43ca-a0f1-0a6d59580456.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.social-links-header {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 25px;
}

.social-links-header a {
    color: var(--text-color);
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.social-links-header a:hover {
    color: var(--accent-color);
}

.hero-logo {
    width: 100%;
    /* NOTA: Ajustado para un logo tipo banner */
    max-width: 700px; 
    height: auto;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    color: rgba(234, 234, 234, 0.8);
}

/* --- SECCIONES DE CONTENIDO --- */
.content-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content, .community-content {
    background: var(--card-bg-color);
    padding: 50px 40px; /* Aumentamos el padding para compensar la falta de imagen */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Se elimina .section-image ya que no se usa */

.about-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em; /* Un poco más grande para llenar el espacio */
}

.community-content p {
    font-size: 1.2em;
}

/* --- BOTONES DE COMUNIDAD --- */
.community-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1em;
}

.btn-twitter {
    background: linear-gradient(90deg, #1DA1F2, #178BCC);
}

.btn-telegram {
    background: linear-gradient(90deg, #2AABEE, #229ED9);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- PIE DE PÁGINA (FOOTER) --- */
footer {
    padding: 40px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: var(--bg-color);
}

/* --- ANIMACIONES --- */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- RESPONSIVIDAD PARA MÓVILES --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-logo {
        max-width: 90%;
    }
    .social-links-header {
        position: static;
        margin-bottom: 30px;
        justify-content: center;
    }
    .hero-section {
        justify-content: center;
        padding-top: 40px;
    }
    .section-title {
        font-size: 2.2em;
    }
}