/* Reset de márgenes y padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Aseguramos que el body pueda hacer scroll */
html, body {
    height: 100%;
    overflow: auto; /* Habilitar el scroll en toda la página */
}

/* Fondo y alineación del body */
body {
    background: linear-gradient(135deg, #1a1a1a, #333);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto; /* Permitir que el body se ajuste al contenido */
    width: 100%;
}

/* Contenedor principal */
.launcher-container {
    background: #222;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
    width: 90%;
    max-width: 1200px;
    margin-top: 40px;
    overflow: auto; /* Permitir scroll dentro del contenedor si el contenido es mayor */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100%; /* Asegura que el contenedor ocupe todo el alto disponible */
}

/* Encabezado */
.launcher-header h1 {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.launcher-header p {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 20px;
    text-align: center;
}

/* Botones */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.version-button {
    padding: 20px;
    border: none;
    background-color: #ff5733;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    width: 80%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.version-button:hover {
    background-color: #ff471a;
    transform: scale(1.05);
}

/* Sección de Noticias */
.news-section {
    background-color: #444;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    width: 80%;
}

.news-section h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.news-item {
    background-color: #555;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #666;
}

.news-item h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 1.3rem;
}

/* Sección de Sugerencias */
.suggestions-section {
    background-color: #444;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    width: 80%;
}

.suggestions-section h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

#suggestion-input {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    border: none;
    background-color: #555;
    color: #fff;
    resize: none;
    min-height: 120px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

#suggestion-input:focus {
    background-color: #666;
    outline: none;
}

.suggestion-button {
    padding: 20px;
    border: none;
    background-color: #ff5733;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.suggestion-button:hover {
    background-color: #ff471a;
}

/* Pie de página */
.launcher-footer {
    text-align: center;
    margin-top: 40px;
}

.launcher-footer p {
    font-size: 1.2rem;
    color: #bbb;
}}

.news-item:hover {
    background-color: #666;
}

.news-item h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 1.3rem;
}

/* Sección de Sugerencias */
.suggestions-section {
    background-color: #444;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    width: 80%;
}

.suggestions-section h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

#suggestion-input {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    border: none;
    background-color: #555;
    color: #fff;
    resize: none;
    min-height: 120px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

#suggestion-input:focus {
    background-color: #666;
    outline: none;
}

.suggestion-button {
    padding: 20px;
    border: none;
    background-color: #ff5733;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.suggestion-button:hover {
    background-color: #ff471a;
}

/* Pie de página */
.launcher-footer {
    text-align: center;
    margin-top: 40px;
}

.launcher-footer p {
    font-size: 1.2rem;
    color: #bbb;
}
