:root {
    --red: #ff003c;
    --orange: #ff7b00;
    --blue: #00d4ff;
    --green: #00ff88;
    --dark: #020100;
    --light: #f0f0f0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Share Tech Mono', monospace;
    background-color: var(--dark);
    color: var(--light);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hex-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.terminal {
    width: 80%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--orange);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
}

.terminal-header h1 {
    color: var(--orange);
    margin-bottom: 10px;
    font-size: 1.8em;
    text-shadow: 0 0 5px var(--red);
}

.menu {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.menu-item {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--red);
    border-radius: 3px;
    color: var(--light);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.menu-item:hover {
    background-color: rgba(255, 100, 0, 0.3);
    box-shadow: 0 0 10px var(--orange);
}

.tab-content {
    display: none;
    padding: 20px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin: 10px 0;
}

.tab-content.active {
    display: block;
}

.terminal-footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: var(--green);
    text-align: center;
}

/* Scanlines */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.25));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 0;
}

/* Eva UI Overlay */
.eva-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border: 1px solid rgba(255, 100, 0, 0.2);
    box-sizing: border-box;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 100, 0, 0.2);
}

th {
    color: var(--orange);
}
