:root {
  --primary-color: #009bae;
  --attention-color: #ff6600;
  --background-dark: #111;
  --background-blue: #013236;
  --muted-foreground: #64748b;
  --card: #222;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  width: 100%;
  color: #fff;
  font-family: "Montserrat";
  background-color: var(--background-dark);
  font-family: "MontserratLocal", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  padding: 5px;
}

.btn-attention {
  background-color: var(--attention-color) !important;
  font-weight: bold;
}

.container {
  max-width: 350px;
  margin: 0 auto;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.subtitle {
  text-align: center;
  line-height: 1.8rem;
  font-size: 1.8rem;
  font-weight: bold !important;
}

/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 1000;
  border-radius: 4px;
  transition: top 0.2s ease-in-out;
}
.skip-link:focus {
  top: 8px;
}

/* Visible focus outline for keyboard users */
:focus {
  outline: 3px solid #ffd166;
  outline-offset: 2px;
}

@media (min-width: 2560px) and (min-height: 1440px) {
  .subtitle {
    line-height: 3rem;
    font-size: 3rem;
  }
}

@media (min-width: 500px) {
  .container {
    width: 80%;
    max-width: 728px;
  }
}

@media (min-width: 1000px) {
  .container {
    width: 80%;
    max-width: 1500px;
  }
}

@media (min-width: 2560px) and (min-height: 1440px) {
  .container {
    max-width: 3000px;
  }
}
