/* base.css */

/* ─────────── Reset & Box-Sizing ─────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─────────── Tipografía y Fondo ─────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(ellipse at center, var(--black-light) 0%, var(--black) 70%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--gold);
}

/* ─────────── Contenedor Principal ─────────── */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  gap: 2rem;
}

/* ─────────── Versión & Meta ─────────── */
.version {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 215, 0, 0.6);
  padding: 1rem;
  font-weight: 300;
}

/* ─────────── Impresión ─────────── */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .voice-indicator,
  .toolbar,
  .drawer,
  .voice-controls,
  .transaction-info,
  .overlay,
  .modal {
    display: none !important;
  }
}
