/*
  Core stylesheet for the Black Sam landing page.

  The design follows a minimal aesthetic with a deep black backdrop,
  subtle neutral text and bold red accents. The highlight class is
  applied to the initial letters of the tagline to emphasise the DDR/CIA
  acronyms without forcing unnatural spaces or line breaks. Buttons
  are styled consistently with rounded corners and a red border that
  inverts on hover.

  Feel free to adjust colours, fonts or sizes to suit your personal
  taste, but keep legibility in mind.
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #000;
  color: #e6e6e6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.25rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: #b5b5b5;
  margin-bottom: 2rem;
  max-width: 90vw;
}

.highlight {
  font-weight: 700;
  color: #e30013; /* deep red accent */
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button {
  padding: 0.75rem 1.25rem;
  border: 2px solid #e30013;
  border-radius: 8px;
  color: #e6e6e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
  background-color: #e30013;
  color: #fff;
}

footer {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  font-size: 0.8rem;
  color: #666;
}