/* CSS Custom Properties */
:root {
  --green: #37A532;
  --gold: #FFB900;
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #ededed;
  --gray-mid: #cccccc;
  --font-family: Arial, Helvetica, sans-serif;
  --font-size: 14px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size);
  color: var(--black);
  background: var(--white);
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4 {
  margin-top: 0;
}

p {
  line-height: 1.5;
}

/* Links — match original green, no underline */
a {
  color: var(--green);
  text-decoration: none;
}

a:visited {
  color: var(--green);
}

a:hover {
  text-decoration: none;
}

a:active {
  color: var(--gold);
}

/* Utility classes matching legacy */
.bold, .leader {
  font-weight: bold;
}

.toptext {
  font-size: 18px;
}

.check, .dedd {
  text-align: center;
  color: var(--gold);
}
