:root {
    --bg-color: #2d2d2d; 
    --accent-color: #00f2ff; 
    --text-color: #ffffff;
    --card-bg: #1a1a1a;
    --gbc-body: #6c5ce7; 
}

* { box-sizing: border-box; }
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Silkscreen', cursive;
    margin: 0; padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Press Start 2P', cursive; color: var(--accent-color); text-align: center; }

/* HERO */
#hero { 
    height: 100vh; display: flex; flex-direction: column; 
    background: radial-gradient(circle, #3d3d3d 0%, #202020 100%); 
    position: relative; overflow: hidden; text-align: center;
}
#pixel-rain { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.pixel-drop { position: absolute; background-color: var(--accent-color); width: 4px; height: 4px; opacity: 0.3; animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(100vh); } }

.hero-content { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    z-index: 2; 
    justify-content: flex-start; /* Sube el contenido */
    align-items: center; 
}

.hero-text-area { padding-top: 15vh; margin-bottom: 2vh; width: 100%; }
.text-container { width: 100%; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

h1 { font-size: 2.8rem; text-shadow: 4px 4px 0px #000; margin: 0; width: 100%; }
.tagline { color: #888; font-size: 1.1rem; margin-top: 15px; width: 100%; display: block; }
.mid-phrase { 
    text-align: center; 
    padding: 0 20px; 
    max-width: 700px; 
    margin: 0 auto auto auto; /* Empuja el wrapper hacia abajo */
}
.mid-phrase p { color: #bbb; font-size: 1.2rem; line-height: 1.6; font-style: italic; }

.gbc-wrapper { 
    display: flex; 
    justify-content: center; 
    align-items: flex-end; 
    width: 100%;
    margin-top: auto; /* Ancla al fondo */
}

.gbc-body { 
    width: 320px; 
    height: 350px; 
    background: var(--gbc-body); 
    border: 6px solid #4834d4; 
    border-radius: 25px 25px 0 0; 
    padding: 25px 20px 0 20px; 
    position: relative; 
    transform: translateY(0); /* Eliminamos el flotado */
    box-shadow: 0 -15px 50px rgba(0,0,0,0.8);
    margin-bottom: -5px; /* Sella contra el borde */
}

.gbc-screen-frame { 
    background: #333; 
    height: 280px; /* Marco más alto para albergar pantalla cuadrada */
    border-radius: 10px 10px 45px 10px; /* Esquina redondeada distintiva GBC */
    padding: 25px; 
    position: relative; 
}

.gbc-lcd { 
    background: #8b9331; 
    width: 220px; /* Ancho para hacerla cuadrada */
    height: 220px; /* Alto igual al ancho para forma CUADRADA */
    border: 4px solid #111; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    margin: 0 auto; /* Centrada en el marco */
    box-shadow: inset 4px 4px 10px rgba(0,0,0,0.4); /* Profundidad LCD */
}

.logo-on-screen { max-width: 85%; filter: grayscale(1) contrast(1.2); mix-blend-mode: multiply; image-rendering: pixelated; }

/* LED de encendido, ajustado para nueva pantalla */
.gbc-led { position: absolute; left: 12px; top: 110px; width: 6px; height: 6px; background: red; border-radius: 50%; box-shadow: 0 0 5px red; }

/* TRILOGY */
.container { max-width: 900px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.game-card { background: var(--card-bg); border: 3px solid #fff; padding: 30px; margin: 30px auto; display: flex; align-items: center; gap: 30px; }
.game-media { width: 180px; height: 240px; flex-shrink: 0; background: #000; overflow: hidden; border: 1px solid #333; }
.game-media img { width: 100%; height: 100%; object-fit: contain; }
.game-info { text-align: left; }
.game-line { width: 4px; height: 50px; background: #fff; margin: 0 auto; }
.game-line.glitch { background: repeating-linear-gradient(0deg, #fff, #fff 4px, transparent 4px, transparent 8px); }

/* --- SECCIÓN NOSOTROS (ABOUT) --- */
#about { background: #222; border-top: 2px solid #333; border-bottom: 2px solid #333; }

.about-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #1a1a1a;
    border: 3px solid var(--accent-color);
    padding: 40px;
    text-align: left;
    box-shadow: 10px 10px 0px #000;
}

.pixel-art-placeholder {
    width: 120px;
    height: 120px;
    background: repeating-conic-gradient(from 0deg, #333 0deg 90deg, #444 90deg 180deg) 0 0/20px 20px;
    border: 4px solid #fff;
    flex-shrink: 0;
}

.about-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ccc;
}

.glitch-text {
    font-family: 'Press Start 2P', cursive;
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 20px !important;
}

/* Responsivo para Nosotros */
@media (max-width: 600px) {
    .about-box { flex-direction: column; text-align: center; padding: 20px; }
    .pixel-art-placeholder { margin: 0 auto 20px; }
}

/* WIZARD */
.custom-description {
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.custom-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
    font-family: 'Silkscreen', cursive;
}

.wizard-container { background: #000; border: 4px solid var(--accent-color); padding: 30px; margin-top: 20px; }
.options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 15px; margin: 20px 0; }
.option-card { background: #111; border: 2px solid #444; padding: 15px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 120px; }
.option-card.selected { border-color: var(--accent-color); background: #001a1d; }
input[type="text"] { width: 100%; padding: 15px; background: #000; border: 2px solid var(--accent-color); color: #fff; text-align: center; margin-bottom: 15px; font-family: 'Silkscreen'; }
.cyan-btn { background: var(--accent-color); border: none; padding: 15px 30px; font-family: 'Press Start 2P'; cursor: pointer; font-size: 0.65rem; }

/* FOOTER STYLES */
footer { padding: 60px 20px; color: #777; border-top: 1px solid #333; background: #222; }
.footer-main { font-family: 'Press Start 2P', cursive; font-size: 0.7rem; color: var(--accent-color); margin-bottom: 15px; }
.footer-disclaimer { font-size: 0.75rem; line-height: 1.6; max-width: 600px; margin: 0 auto; }

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .tagline { font-size: 0.8rem; }
    .gbc-body { width: 280px; height: 300px; transform: translateY(-10px); }
    .gbc-lcd { width: 180px; height: 180px; }
    .game-card { flex-direction: column; text-align: center; }
}

/* FAQ SECTION */
#faq { background: var(--bg-color); padding-bottom: 100px; }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border: 2px solid #444;
    margin-bottom: 15px;
    background: #1a1a1a;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-family: 'Silkscreen', cursive;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover { background: #222; }

.faq-question::after {
    content: '+';
    font-family: 'Press Start 2P';
    font-size: 0.8rem;
}

.faq-item.active .faq-question::after { content: '-'; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #111;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
}

.faq-item.active .faq-answer { max-height: 200px; }
3. script.js (Lógica de apertura/cierre)
Añade este pequeño bloque al final de tu archivo para que las preguntas se abran al hacer clic:

JavaScript
// Lógica para el FAQ Acordeón
document.querySelectorAll('.faq-question').forEach(button => {
    button.addEventListener('click', () => {
        const faqItem = button.parentElement;
        faqItem.classList.toggle('active');
    });
});