/* ============================================================
   main.css — CSS variables & shared base styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --red-neg: #1a3a5c;
  --red-neg: #122840;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --red-neg: #880e00;
  --red-neg-light: #ff1a01;
  --bg: #f0f4f8;
  --bg-card: #ffffff;
  --text: #1e2d3d;
  --text-muted: #6b7f93;
  --border: #d8e2ec;
  --shadow: 0 2px 12px rgba(26, 58, 92, 0.10);
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--red-neg);
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Utility */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.neg {
  color: var(--red-neg);
}

.neg-light {
  color: var(--red-neg-light);
}