/* VIP Super11 / Triplex — sin chat, sin foro. Temas bronce / plata. */
:root {
    --bg-main: #0F172A;
    --bg-card: rgba(30, 41, 59, 0.9);
    --bg-surface: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #64748B;
    --accent: #CD7F32;
    --accent-2: #B45309;
    --accent-glow: rgba(205, 127, 50, 0.45);
    --emerald: #10B981;
    --red: #EF4444;
    --cyan: #06B6D4;
    --blue: #3B82F6;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}
body.theme-plata {
    --accent: #C5CDD8;
    --accent-2: #94A3B8;
    --accent-glow: rgba(197, 205, 216, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 16px;
    max-width: 480px;
    margin: 0 auto;
}
.header-vip {
    text-align: center;
    padding: 12px 0 16px;
    border-bottom: 1px solid hsla(217, 33%, 25%, 0.5);
    margin-bottom: 20px;
}
.header-vip img.logo-vip {
    height: 132px;
    width: auto;
    max-width: 92%;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px auto;
    filter: drop-shadow(0 0 18px var(--accent-glow));
}
.header-vip .brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 4px auto 10px auto;
    max-width: 96%;
    text-align: center;
    line-height: 1.35;
}
.header-vip .marca {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    display: block;
}
.header-vip h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent);
    margin-top: 6px;
}
.header-vip .slogan {
    font-size: 12px;
    color: #38BDF8;
    font-weight: 800;
    letter-spacing: 0.4px;
    display: block;
    margin-top: 4px;
}
.badge-pruebas {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #FDE68A;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid #F59E0B;
    border-radius: 99px;
    padding: 4px 12px;
}
.badge-gratis {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #6EE7B7;
}

.screen { display: none; flex-direction: column; gap: 16px; animation: fadeIn 0.3s ease; }
.screen.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.card-vip {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid hsla(217, 33%, 30%, 0.5);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.card-vip h2 { font-size: 16px; color: var(--accent); }
.card-vip p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label { font-size: 12px; font-weight: 800; color: var(--accent); }
.input-vip {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid hsla(217, 33%, 35%, 0.5);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    width: 100%;
}
.input-vip:focus { border-color: var(--accent); }

.btn-vip {
    padding: 15px;
    border-radius: 14px;
    border: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #0F172A;
    background: var(--accent);
}
.btn-ghost {
    background: transparent;
    color: #38BDF8;
    border: 1px solid #334155;
}
.login-error {
    display: none;
    font-size: 12px;
    color: #FCA5A5;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #EF4444;
    padding: 10px;
    border-radius: 8px;
}

.dash-meta { font-size: 11px; font-weight: 800; color: #6EE7B7; letter-spacing: 0.4px; }
.hint { text-align: center; font-size: 11px; color: var(--text-muted); }

.vip-section {
    background: linear-gradient(180deg, rgba(30,41,59,0.92) 0%, rgba(15,23,42,0.95) 100%);
    border: 1px solid hsla(187, 80%, 40%, 0.35);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.vip-section h3 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #F8FAFC;
    line-height: 1.35;
}
.vip-baro-wrap { border-color: rgba(16,185,129,0.45); }
.vip-mapa-card { border-color: rgba(56,189,248,0.4); }
.vip-hist-card { border-color: rgba(51,65,85,0.9); }

.vip-rec-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid #10B981;
    border-left: 6px solid #EF4444;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 0 22px rgba(16,185,129,0.12);
}
.vip-rec-card.verde { border-left-color: #10B981; background: rgba(16,185,129,0.08); }
.vip-rec-card.naranja { border-left-color: #F59E0B; background: rgba(245,158,11,0.08); }
.vip-rec-card.rojo { border-left-color: #EF4444; background: rgba(239,68,68,0.08); }
.vip-rec-kicker {
    font-size: 10px; font-weight: 800; color: #10B981;
    letter-spacing: 0.6px; text-transform: uppercase;
}
.vip-rec-card h2 { font-family: var(--font-heading); font-size: 17px; color: #FFF; margin: 0; line-height: 1.3; }
.vip-rec-card p { font-size: 12px; color: #94A3B8; margin: 0; line-height: 1.45; }
.vip-rec-action {
    align-self: stretch;
    text-align: center;
    padding: 10px 14px;
    margin-top: 4px;
}

.vip-status-tag {
    display: inline-block;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #64748B;
    color: #E2E8F0;
    background: #1E293B;
    text-align: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
}
.vip-baro-top .vip-status-tag {
    max-width: 42%;
    white-space: normal;
}
.vip-status-tag.verde { color: #6EE7B7; border-color: #10B981; background: rgba(16,185,129,0.18); box-shadow: 0 0 12px rgba(16,185,129,0.25); }
.vip-status-tag.naranja { color: #FCD34D; border-color: #F59E0B; background: rgba(245,158,11,0.18); box-shadow: 0 0 12px rgba(245,158,11,0.25); }
.vip-status-tag.rojo { color: #FCA5A5; border-color: #EF4444; background: rgba(239,68,68,0.18); box-shadow: 0 0 12px rgba(239,68,68,0.25); }

.vip-baro-card {
    position: relative;
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 16px 14px 14px;
}
.vip-baro-card.active { border: 2px solid #10B981; box-shadow: 0 0 22px rgba(16,185,129,0.28); opacity: 1; }
.vip-baro-card.inactive { opacity: 0.38; filter: grayscale(30%); }
.vip-baro-card.active.rey { border-color: #F59E0B; box-shadow: 0 0 22px rgba(245,158,11,0.3); }
.vip-baro-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.vip-baro-title { font-size: 13px; font-weight: 800; color: #F8FAFC; letter-spacing: 0.4px; }
.vip-baro-sub { font-size: 10px; color: #94A3B8; margin-top: 3px; }
.vip-baro-val { font-family: var(--font-heading); font-size: 38px; font-weight: 900; color: #FFF; margin: 8px 0 6px; line-height: 1; }
.vip-baro-val.rey { color: #F59E0B; }
.vip-baro-rule {
    font-size: 10px; color: #94A3B8; line-height: 1.4;
    background: rgba(15,23,42,0.7); border-left: 3px solid #06B6D4;
    border-radius: 8px; padding: 8px 10px;
}

.vip-conjunto {
    border: 2px solid #F59E0B;
    box-shadow: 0 0 28px rgba(245,158,11,0.18);
    background: linear-gradient(135deg, #151D2A 0%, #1E293B 100%);
}
.vip-tramo { font-size: 11px; color: #22D3EE; font-weight: 700; }
.vip-teo34 {
    display: inline-block; align-self: flex-start;
    font-size: 10px; font-weight: 800; color: #22D3EE;
    background: rgba(6,182,212,0.18); border: 1px solid #06B6D4;
    border-radius: 8px; padding: 4px 8px;
}
.vip-objetivo {
    font-size: 12px; font-weight: 800; color: #FCD34D;
    border: 1px solid #F59E0B; border-radius: 10px; padding: 8px 12px;
    background: rgba(245,158,11,0.16); text-align: center; letter-spacing: 0.3px;
}
.vip-block-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 8px;
    background: rgba(11,15,25,0.65);
    border: 1px solid #334155;
    border-radius: 12px;
}
.vip-block-tabs::-webkit-scrollbar { display: none; }
.vip-block-tab {
    flex: 0 0 auto;
    background: #1E293B;
    color: #F8FAFC;
    border: 1px solid #475569;
    border-radius: 10px;
    padding: 12px 16px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    scroll-snap-align: center;
    white-space: nowrap;
    touch-action: manipulation;
}
.vip-block-tab.active {
    background: #F59E0B;
    color: #000;
    border-color: #FCD34D;
    box-shadow: 0 0 12px rgba(245,158,11,0.45);
}
.vip-block-hint {
    font-size: 13px;
    font-weight: 700;
    color: #F8FAFC;
    text-align: center;
}
.vip-balls { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 4px 0; }
.vip-ball {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 15px; font-weight: 800;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    border: 2px solid #475569; color: #FFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
.vip-ball.gold {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #000; border-color: #FCD34D;
    box-shadow: 0 0 16px rgba(245,158,11,0.55);
}
.vip-ball.emerald {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFF; border-color: #6EE7B7;
    box-shadow: 0 0 16px rgba(16,185,129,0.5);
}
.vip-densidad-row { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.vip-densidad { font-size: 13px; color: #F8FAFC; font-weight: 600; }
.vip-densidad strong { color: #F59E0B; font-size: 15px; }
.vip-modelo { font-size: 13px; color: #F8FAFC; font-weight: 600; }

.vip-mapa-nota { font-size: 13px; color: #F8FAFC; margin: 0; line-height: 1.45; }
.vip-mapa-85 {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 5px;
}
.vip-mapa-ball {
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 800;
    background: #0B1220;
    border: 1px solid #334155;
    color: #E2E8F0;
}
.vip-mapa-ball.in-block {
    color: #FCD34D;
    border: 2px solid #F59E0B;
    background: #0F172A;
    box-shadow: 0 0 10px rgba(245,158,11,0.5);
}

.vip-hist-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.vip-hist-total {
    font-size: 10px; font-weight: 800; color: #38BDF8;
    border: 1px solid #38BDF8; border-radius: 8px; padding: 3px 8px; white-space: nowrap;
}
.history-list { display: flex; flex-direction: column; gap: 10px; }
.history-item {
    background: #0B1220;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.history-item-top {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 8px;
}
.history-item strong { font-size: 12px; color: #F8FAFC; }
.history-meta { font-size: 10px; color: #94A3B8; margin-top: 2px; }
.hist-balls { display: flex; flex-wrap: wrap; gap: 4px; }
.hist-ball {
    width: 26px; height: 26px; border-radius: 50%;
    font-family: var(--font-mono); font-size: 9px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    background: #1E293B; border: 1px solid #334155; color: #E2E8F0;
}
/* Acertadas de lo que predicimos */
.hist-ball.hit {
    background: #059669;
    color: #ECFDF5; border-color: #34D399;
    box-shadow: 0 0 8px rgba(16,185,129,0.45);
}
/* Resultado real ONCE */
.hist-ball.real {
    background: #EA580C;
    color: #FFF7ED; border-color: #FB923C;
    box-shadow: 0 0 6px rgba(234,88,12,0.35);
}
.hist-ball.pred-miss {
    background: #334155;
    color: #94A3B8; border-color: #475569;
    opacity: 0.75;
}

/* Triplex VIP */
.vip-directiva {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(245,158,11,0.14); border: 1px solid #F59E0B;
    border-radius: 14px; padding: 14px;
}
.vip-directiva-icon { font-size: 22px; line-height: 1; }
.vip-directiva-title { font-size: 11px; font-weight: 800; color: #F59E0B; letter-spacing: 0.4px; }
.vip-directiva strong { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 13px; color: #F8FAFC; line-height: 1.45; }
.vip-diag-title { font-size: 12px; font-weight: 800; color: #38BDF8; text-align: center; letter-spacing: 0.4px; }
.vip-diag-pills { display: flex; gap: 6px; }
.vip-diag-pill {
    flex: 1; text-align: center; padding: 8px 2px; border-radius: 8px;
    background: #1E293B; border: 1px solid #334155;
}
.vip-diag-pill .n { font-size: 13px; font-weight: 900; color: #F8FAFC; }
.vip-diag-pill .h { font-size: 9px; font-weight: 800; color: #94A3B8; margin-top: 2px; }
.vip-baro-conf-title { font-size: 13px; font-weight: 800; color: #F59E0B; text-align: center; }
.vip-baro-nivel {
    font-size: 13px; font-weight: 900; padding: 12px; border-radius: 10px;
    background: #1E293B; color: #38BDF8; text-align: center; border: 2px solid #38BDF8;
}
.vip-scale { display: flex; height: 30px; border-radius: 16px; overflow: hidden; border: 1px solid #334155; }
.vip-scale span { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; }
.vip-scale .oro { background: linear-gradient(90deg, #D97706, #F59E0B); color: #000; }
.vip-scale .mora { background: linear-gradient(90deg, #6D28D9, #8B5CF6); color: #FFF; }
.vip-scale .ver { background: linear-gradient(90deg, #059669, #10B981); color: #000; }
.vip-scale .roj { background: linear-gradient(90deg, #DC2626, #EF4444); color: #FFF; }
.vip-flecha-wrap { display: flex; width: 100%; }
.vip-flecha { width: 25%; text-align: center; font-size: 18px; font-weight: 900; color: #F59E0B; }
.vip-baro-estado { padding: 10px; border-radius: 8px; font-size: 12px; font-weight: 900; text-align: center; }
.vip-pred-cards { display: flex; flex-direction: column; gap: 12px; }
.vip-pred-card {
    background: var(--bg-card); border-radius: 16px; padding: 18px 14px;
    text-align: center; border: 1px solid #334155;
}
.vip-pred-card.op1 { border-color: #10B981; box-shadow: 0 8px 28px rgba(16,185,129,0.28); }
.vip-pred-card.op2 { border-color: #F59E0B; box-shadow: 0 8px 28px rgba(245,158,11,0.28); }
.vip-pred-card.op3 { border-color: #3B82F6; background: rgba(59,130,246,0.08); box-shadow: 0 8px 28px rgba(59,130,246,0.22); }
.vip-pred-badge {
    display: inline-block; padding: 6px 12px; border-radius: 99px;
    font-size: 11px; font-weight: 800; letter-spacing: 0.4px; margin-bottom: 12px;
}
.vip-pred-card.op1 .vip-pred-badge { background: rgba(16,185,129,0.2); color: #10B981; border: 1px solid #10B981; }
.vip-pred-card.op2 .vip-pred-badge { background: rgba(245,158,11,0.2); color: #F59E0B; border: 1px solid #F59E0B; }
.vip-pred-card.op3 .vip-pred-badge { background: rgba(59,130,246,0.2); color: #93C5FD; border: 1px solid #3B82F6; }
.vip-lottery {
    width: 118px; height: 118px; border-radius: 50%; margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 34px; font-weight: 800; letter-spacing: 3px;
    box-shadow: inset -8px -8px 16px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.55);
}
.vip-lottery.op1 { background: radial-gradient(circle at 30% 30%, #34D399, #059669); color: #052e22; }
.vip-lottery.op2 { background: radial-gradient(circle at 30% 30%, #FCD34D, #D97706); color: #1c1403; }
.vip-lottery.op3 { background: radial-gradient(circle at 30% 30%, #93C5FD, #1D4ED8); color: #fff; }
.vip-prob { font-size: 12px; color: #94A3B8; }
.vip-prob strong { color: #F8FAFC; }
.vip-box { font-size: 11px; color: #94A3B8; margin-top: 8px; }
.vip-desglose { display: grid; grid-template-columns: 1fr; gap: 10px; }
.vip-desg-col { background: #1E293B; border-radius: 10px; padding: 12px; }
.vip-desg-col.d1 { border: 1px solid #10B981; }
.vip-desg-col.d2 { border: 1px solid #F59E0B; }
.vip-desg-col.d3 { border: 1px solid #3B82F6; }
.vip-desg-col h4 { font-size: 12px; margin: 0 0 8px; }
.vip-desg-col.d1 h4 { color: #10B981; }
.vip-desg-col.d2 h4 { color: #F59E0B; }
.vip-desg-col.d3 h4 { color: #3B82F6; }
.vip-desg-row { display: flex; justify-content: space-between; margin-top: 4px; font-size: 12px; color: #CBD5E1; }
.vip-desg-row span:last-child { color: #10B981; font-weight: 800; }
.history-item.tx { flex-direction: row; justify-content: space-between; align-items: center; }
.vip-tx-num { font-family: var(--font-mono); font-size: 22px; font-weight: 800; color: #C5CDD8; letter-spacing: 3px; }

footer.pie-vip {
    text-align: center;
    padding: 20px 8px;
    color: #64748B;
    font-size: 11px;
    margin-top: auto;
}
footer.pie-vip a { color: #94A3B8; text-decoration: none; }
footer.pie-vip .links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-box {
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px;
    position: relative;
}
.modal-box h2 { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.legal-txt { color: #94A3B8; font-size: 12px; line-height: 1.6; text-align: justify; }
.legal-txt p { margin-bottom: 10px; }
.btn-close-x {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 22px;
    cursor: pointer;
}
.legal-pre {
    white-space: pre-wrap;
    color: #94A3B8;
    font-size: 12px;
    line-height: 1.55;
    font-family: inherit;
    margin: 0;
}
#fab-chat-sat {
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: #1E293B;
    color: #F8FAFC;
    font-size: 22px;
    z-index: 40;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
#panel-chat-sat {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 12px;
    top: 12%;
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 14px;
    z-index: 50;
}
.chat-sat-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #334155;
}
.chat-sat-title { font-weight: 900; color: #F8FAFC; font-size: 13px; }
.chat-sat-sub { font-size: 10px; color: #94A3B8; }
.chat-sat-head button {
    background: #1E293B;
    border: 1px solid #334155;
    color: #F1F5F9;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}
#chat-sat-chips {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 10px;
    border-bottom: 1px solid #1E293B;
}
#chat-sat-chips button {
    flex: 0 0 auto;
    background: #1E293B;
    color: #CBD5E1;
    border: 1px solid #334155;
    border-radius: 99px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}
#chat-sat-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-sat-burbuja {
    max-width: 90%;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.45;
    white-space: pre-wrap;
}
.chat-sat-burbuja.user { align-self: flex-end; background: #1E3A5F; color: #E0F2FE; }
.chat-sat-burbuja.bot { align-self: flex-start; background: #13261f; color: #D1FAE5; border: 1px solid #065F46; }
.chat-sat-input {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #334155;
}
.chat-sat-input input {
    flex: 1;
    background: #1E293B;
    border: 1px solid #334155;
    color: #F8FAFC;
    border-radius: 8px;
    padding: 10px;
}
.chat-sat-input button {
    background: var(--accent);
    color: #0F172A;
    border: none;
    border-radius: 8px;
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
}
