/* ==========================================================================
   ESTILOS GENERALES Y BASE
   ========================================================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #04080c;
    color: #fff;
    font-family: 'Chakra Petch', 'Courier New', monospace;
}

/* ==========================================================================
   HEADER Y NAVEGACIÓN
   ========================================================================== */
.logo-header {
    width: 100%;
    text-align: center;
    padding: 8px 0;
}

/* ==========================================================================
   ESTILOS DE LA PORTADA PRINCIPAL (ARCADE HALL)
   ========================================================================== */
.game-container { 
    max-width: 1020px; 
    margin: 0 auto; 
    padding: 0 15px 30px 15px; 
}

.arcade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background: rgba(5, 12, 20, 0.95);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card.blue-glow { border: 2px solid #00b7ff; box-shadow: 0 0 15px rgba(0, 183, 255, 0.15); }
.game-card.blue-glow:hover { box-shadow: 0 0 25px rgba(0, 183, 255, 0.4); }

.game-card.red-glow { border: 2px solid #ff0064; box-shadow: 0 0 15px rgba(255, 0, 100, 0.15); }
.game-card.red-glow:hover { box-shadow: 0 0 25px rgba(255, 0, 100, 0.4); }

.game-card.green-glow { border: 1px dashed #39ff14; opacity: 0.7; }

.card-status {
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
}
.status-online { background: rgba(57, 255, 20, 0.2); color: #39ff14; border: 1px solid #39ff14; }
.status-dev { background: rgba(255, 123, 0, 0.2); color: #ff7b00; border: 1px solid #ff7b00; }

.card-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.card-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 5px 0 10px 0;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-desc {
    font-family: 'Courier New', monospace;
    color: #aaa;
    font-size: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 15px;
}

.btn-play {
    width: 100%;
    background: #00b7ff;
    color: #000;
    font-weight: bold;
    font-size: 0.85rem;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.btn-play:hover {
    background: #39ff14;
    box-shadow: 0 0 10px #39ff14;
}

.btn-play.btn-red { background: #ff0064; color: #fff; }
.btn-play.btn-red:hover { background: #ff7b00; color: #000; box-shadow: 0 0 10px #ff7b00; }

/* ==========================================================================
   SECCIÓN INTRODUCCIÓN / MANIFIESTO
   ========================================================================== */
.nowey-manifesto {
    background: rgba(5, 12, 20, 0.95);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.manifesto-header h2 {
    color: #39ff14;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-align: center;
    border-bottom: 1px dashed rgba(57, 255, 20, 0.3);
    padding-bottom: 10px;
}

/* ==========================================================================
   FORMULARIO DE CONTACTO
   ========================================================================== */
.grid-contacto {
    margin-bottom: 25px;
}

.form-container-box {
    background: #020508;
    border: 1px solid rgba(255, 123, 0, 0.4);
    border-left: 3px solid #ff7b00;
    padding: 20px;
    border-radius: 4px;
}

.form-title {
    color: #ff7b00;
    margin-top: 0;
    letter-spacing: 1px;
    font-size: 1rem;
}

.form-subtitle {
    font-family: 'Courier New', monospace;
    color: #aaa;
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.contacto-form-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #00b7ff;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    background: #020508;
    border: 1px solid rgba(0, 183, 255, 0.3);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Chakra Petch', monospace;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #39ff14;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.form-select option {
    background: #020508;
    color: #fff;
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 5px;
}

.response-msg-box {
    display: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Chakra Petch', 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ==========================================================================
   MARCAS Y ESTILOS NEÓN (NOWEY Y 107D)
   ========================================================================== */
.brand-nowey {
    font-family: 'Chakra Petch', 'Courier New', monospace !important;
    font-weight: 900 !important;
    background: linear-gradient(90deg, #00b7ff 0%, #39ff14 50%, #ff7b00 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.6));
    display: inline-block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #020508;
    padding: 25px 0;
    text-align: center;
    font-family: 'Chakra Petch', 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    border-top: 1px solid rgba(0, 183, 255, 0.2);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.8);
}