@font-face {
  font-family: "Futura";
  src: url("../font/futura.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Futura", sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

a {
  color: #1c79dd;
  text-decoration: underline;
}

a:focus,
a:hover {
  outline: 2px solid #1c79dd;
  outline-offset: 2px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.site-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.site-header img {
  max-height: 64px;
  width: auto;
}

.banner {
  width: 100%;
  height: 360px;
  background-image: url("https://rsc-interim-site.s3.eu-north-1.amazonaws.com/assets/images/2026/10091_FEB26_SeasonHomepageBanner_1640x722_EK.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  width: 100%;
  animation: fadeIn 0.6s ease-in-out;
}

.content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

.content strong {
  color: #000;
}

.content .thanks {
  font-style: italic;
  margin-top: 2rem;
  font-weight: 600;
}
.thanks {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  background: #fffbe6;
  border-left: 6px solid #f7d600;
  border-radius: 0;
  color: rgb(59, 59, 59);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.thanks a {
  color: inherit;
  text-decoration: underline;
}

.content p {
  max-width: 640px;
  margin: 1rem auto;
  font-size: 1.1rem;
}

.button-container {
  margin-top: 2.5rem;
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: #f7d600;
  color: #222;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
  border: 2px solid transparent;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  box-shadow: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.btn:active {
  box-shadow: none;
}

.btn-primary {
  background-color: #f7d600;
  color: #000;
  border-color: transparent;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #f7d600;
  color: #000;
  border-color: #000;
  box-shadow: none;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2.75rem;
  letter-spacing: 0.02em;
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
}

.btn.btn-outline {
  background: transparent;
  color: #000;
  border-color: #222;
  box-shadow: none;
}

.btn-muted {
  border-color: #b5b5b5;
  color: #333;
}

.btn.btn-outline:hover,
.btn.btn-outline:focus {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: none;
}

.btn.btn-outline:active {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: none;
}

.button-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.button-row--compact {
  gap: 8px;
}

@media (max-width: 480px) {
  .btn-lg {
    display: inline-block;
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
