/* --- 1. CARGA DE TU FUENTE PERSONALIZADA --- */
@font-face {
    font-family: 'Echo - Hate';
    /* RUTA AJUSTADA para funcionar desde assets/css/ */
    src: url('../fonts/Echo-Hate.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* --- ESTILOS BASE --- */
body { margin: 0; padding: 0; font-family: 'Echo - Hate', -apple-system, sans-serif; background-color: #000; color: #e7e9ea; overflow: hidden; }

/* BARRA NAVEGADOR */
.browser-bar { background: #2b2b2b; padding: 10px 20px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #444; height: 35px; }
.window-controls { display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.url-bar { flex: 1; background: #1a1a1a; color: #999; padding: 6px 15px; border-radius: 20px; font-size: 13px; display: flex; align-items: center; gap: 10px; border: 1px solid #333; }

/* EXTENSIÓN ICONO */
.ext-icon { width: 32px; height: 32px; border-radius: 5px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s; position: relative; }
.ext-icon:hover { background: #444; }
.ext-icon.active { background: #2f3336; box-shadow: 0 0 0 2px #ff0000 inset; }
.badge { position: absolute; top: 4px; right: 4px; width: 8px; height: 8px; background: #ff3b30; border-radius: 50%; display:none; box-shadow: 0 0 5px #ff3b30; }

/* LAYOUT */
.layout { display: flex; height: calc(100vh - 56px); max-width: 1280px; margin: 0 auto; }
.nav-col { width: 275px; padding: 20px; display: flex; flex-direction: column; gap: 5px; border-right: 1px solid #2f3336; }
.nav-btn { display: flex; align-items: center; gap: 20px; font-size: 20px; padding: 12px 15px; border-radius: 30px; cursor: pointer; width: fit-content; transition: 0.2s;}
.nav-btn:hover { background: #181818; }
.nav-btn.active { font-weight: bold; }
.post-btn { background: #1d9bf0; color: white; border: none; padding: 15px; border-radius: 30px; font-weight: bold; font-size: 17px; width: 90%; margin-top: 15px; cursor: pointer; }

.feed-col { width: 600px; border-right: 1px solid #2f3336; overflow-y: auto; scrollbar-width: none; position: relative;}
.feed-header { padding: 15px; position: sticky; top: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); z-index: 10; font-weight: bold; font-size: 20px; border-bottom: 1px solid #2f3336; display: flex; justify-content: space-between;}

.trends-col { width: 350px; padding: 20px 30px; }
.search { background: #202327; padding: 12px 20px; border-radius: 30px; color: #71767b; display: flex; gap: 10px; margin-bottom: 20px; font-size: 14px;}
.trend-card { background: #16181c; border-radius: 16px; padding: 15px; }
.trend-item { margin-bottom: 20px; cursor: pointer; }
.trend-topic { font-size: 13px; color: #71767b; display: flex; justify-content: space-between;}
.trend-title { font-weight: bold; margin: 2px 0; }

/* TWEETS */
.tweet { padding: 15px; border-bottom: 1px solid #2f3336; display: flex; gap: 12px; cursor: pointer; transition: 0.2s; }
.tweet:hover { background: #080808; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: #444; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; color: white;}
.t-content { flex: 1; }
.t-header { font-size: 15px; margin-bottom: 4px; display: flex; gap: 5px; }
.t-name { font-weight: bold; color: #e7e9ea; }
.t-handle { color: #71767b; }

/* --- CONFIGURACIÓN TIPOGRÁFICA --- */
.t-text {
    font-size: 22px;
    line-height: 1.4;
    color: #e7e9ea;
    margin-bottom: 12px;
    font-family: 'Echo - Hate', sans-serif;
    /* Animación fluida */
    transition: font-variation-settings 0.8s ease, color 0.5s ease;
    /* ESTADO BASE: Ejes a 0 */
    font-variation-settings: 'HATE' 0, 'ECHO' 0;
}

.t-actions { display: flex; justify-content: space-between; max-width: 425px; color: #71767b; font-size: 13px; }

/* --- DASHBOARD (Tu versión exacta) --- */
.glass-panel {
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 460px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
    display: none;
    z-index: 1000;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1rem;
    animation: slideUp 0.3s ease-out;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { opacity: 1; } }

.glass-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 20px; }
.glass-title { font-size: 16px; font-weight: bold; color: #fff; display: flex; gap: 8px; align-items: center; letter-spacing: 1px;}
.meter-group { margin-bottom: 20px; }
.meter-label { display: flex; justify-content: space-between; font-size: 14px; color: #aaa; margin-bottom: 8px; font-weight: bold;}
.meter-val { color: white; font-weight: bold; }
.meter-track { width: 100%; height: 10px; background: #222; border-radius: 5px; overflow: hidden; }
.meter-fill { height: 100%; background: #444; width: 0%; transition: width 0.6s, background 0.6s; }

.controls-section { border-top: 1px solid #333; padding-top: 20px; margin-top: 20px; }
.section-title { font-size: 11px; color: #666; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }

.scenario-btns { display: flex; gap: 10px; margin-bottom: 10px; }
.s-btn {
    flex: 1; background: #1a1a1a; border: 1px solid #333; color: #888;
    padding: 15px 5px;
    font-size: 14px; cursor: pointer; border-radius: 8px; text-align: center; transition: 0.2s;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.s-btn:hover { background: #333; color: white; }
.s-btn.active { background: #e7e9ea; color: black; border-color: #fff; font-weight: bold; }
.sim-btn { border: 1px dashed #555; }
.sim-btn:hover { border-color: #888; }
.sim-btn.active { background: #333; color: #fff; border: 1px solid #fff; }