:root {
  --brand-blue: #121055;
  --brand-red: #9F1619;

  --bg: #f6f7f9;
  --card: #ffffff;
  --border: #e6e8ee;
  --text: #121055;
  --muted: #6b7280;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: var(--brand-blue); }
a:hover { color: var(--brand-red); }

.topbar {
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.topbar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img {
  height: 44px;
  width: auto;
  display: block;
}

.brand .title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .title strong { font-size: 15px; }
.brand .title span { font-size: 12px; opacity: .85; }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nav a { text-decoration: none; }

.wrap {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

h1, h2, h3 {
  color: var(--brand-blue);
  margin: 0 0 12px 0;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--brand-red);
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(159,22,25,.25);
}

.btn:hover { filter: brightness(1.05); }

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: none;
}

.btn.light {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  box-shadow: none;
}

label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(18,16,85,.12);
}

table { width: 100%; border-collapse: collapse; }

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #444;
  border-bottom: 2px solid var(--border);
  padding: 10px;
  text-align: left;
}

td {
  padding: 10px;
  border-bottom: 1px solid #eef0f5;
  font-size: 14px;
}

.muted { color: var(--muted); font-size: 12px; }

.footer {
  max-width: 1100px;
  margin: 18px auto 28px;
  padding: 0 16px;
}
