/* OMNIX GLOBAL STANDARD v11.0 - UNIVERSAL LAYOUT */
:root {
    --neon-cyan: #00f2ff;
    --bg-dark: #0b0e14;
    --card-bg: #141923;
}

body {
    background: #05070a; /* Fondo profundo para PC */
    margin: 0;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

/* CONTENEDOR PRINCIPAL: Centra la App en monitores grandes */
.omnix-app-container {
    width: 100vw;
    max-width: 480px; /* Ancho tipo smartphone en PC */
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    box-shadow: 0 0 100px rgba(0,0,0,0.8);
    padding: 20px;
    padding-bottom: 100px; /* Espacio para el menú inferior */
    display: flex;
    flex-direction: column;
}

/* MENU INFERIOR: Siempre dentro del contenedor */
.omnix-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px; /* Se ajusta al contenedor en PC */
    display: flex;
    justify-content: space-around;
    background: #1a222d;
    padding: 15px 0;
    border-top: 1px solid var(--neon-cyan);
    z-index: 9999;
}

.menu-item { color: #666; text-align: center; cursor: pointer; font-size: 0.75rem; font-weight: bold; }
.menu-item i { font-size: 1.4rem; display: block; margin-bottom: 5px; }
.menu-item.active { color: var(--neon-cyan); }

/* TARJETAS E IMPACTO */
.impact-card {
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid #333;
    margin-bottom: 20px;
    border-radius: 4px;
}

.chart-box { height: 200px; margin-top: 10px; }

/* CAPTURA UNIVERSAL */
.omnix-select {
    width: 100%; background: #000; color: #fff; padding: 15px; 
    border-radius: 8px; border: 1px solid #333; margin-bottom: 15px;
    font-size: 1rem;
}

.qty-control {
    display: flex; justify-content: space-between; align-items: center;
    background: #000; padding: 15px; border-radius: 12px; margin: 20px 0;
}

.btn-qty { 
    width: 65px; height: 65px; border-radius: 50%; border: none; 
    font-size: 2rem; font-weight: bold; cursor: pointer;
}
.btn-plus { background: var(--neon-cyan); color: #000; }
.qty-input { background: transparent; border: none; color: #fff; font-size: 3rem; text-align: center; width: 100px; }

.action-grid { display: flex; gap: 10px; margin-top: 20px; }
.btn-action { 
    flex: 1; padding: 25px; border-radius: 10px; border: none; 
    font-weight: 900; cursor: pointer; font-size: 1.2rem;
}
.btn-red { background: #e74c3c; color: white; }
.btn-green { background: #2ecc71; color: black; }
/* --- GATEWAY STYLES --- */
.gateway-body {
    background: radial-gradient(circle at center, #0b0e14 0%, #05070a 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-neon {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px var(--neon-cyan);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}