@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title--light {
  color: #FFFFFF;
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: #E31E24;
  margin: 1rem auto 1.5rem;
}

.section-subtitle {
  text-align: center;
  color: #CCCCCC;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.section-subtitle--light {
  color: #E5E5E5;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  padding: 14px 40px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: #E31E24;
  color: #FFFFFF;
  -webkit-box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
          box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
}

.btn--primary:hover {
  background-color: #C41A1F;
  -webkit-box-shadow: 0 6px 30px rgba(227, 30, 36, 0.6);
          box-shadow: 0 6px 30px rgba(227, 30, 36, 0.6);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn--primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #1A1A1A;
  border-top: 1px solid #333333;
  padding: 1.5rem 1.25rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cookie-popup.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup__content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .cookie-popup__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.cookie-popup__content p {
  font-size: 0.875rem;
  color: #CCCCCC;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-popup__content p {
    text-align: left;
  }
}

.cookie-popup__content p a {
  color: #E31E24;
  text-decoration: underline;
}

.cookie-popup__content p a:hover {
  color: #FF3B42;
}

.cookie-popup__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cookie-popup__btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.cookie-popup__btn--accept {
  background-color: #E31E24;
  color: #FFFFFF;
}

.cookie-popup__btn--accept:hover {
  background-color: #C41A1F;
}

.cookie-popup__btn--decline {
  background-color: #333333;
  color: #CCCCCC;
}

.cookie-popup__btn--decline:hover {
  background-color: #444444;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .header {
    height: 80px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__logo img {
  width: 120px;
  height: auto;
}

@media (min-width: 992px) {
  .header__logo img {
    width: 160px;
  }
}

.header__nav {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  padding: 0.25rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E31E24;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: #E31E24;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: none;
}

@media (min-width: 992px) {
  .header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.header__cta {
  padding: 10px 28px;
  font-size: 0.875rem;
}

.header__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.header__user-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.header__user-tickets {
  background: #E31E24;
  color: #FFFFFF;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__burger.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mobile-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 1.25rem;
  background: #111111;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFFFFF;
}

.mobile-menu__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #111111;
}

.mobile-menu__list {
  text-align: center;
}

.mobile-menu__link {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.5rem 0;
  color: #FFFFFF;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: #E31E24;
}

.mobile-menu__footer {
  padding: 2rem 1.25rem 4rem;
  background: #111111;
}

.mobile-menu__footer .mobile-menu__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.125rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero {
    padding-top: 80px;
    min-height: 600px;
    height: auto;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .hero__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero__content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero__content {
    text-align: left;
    max-width: 55%;
  }
}

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .hero__title {
    font-size: 3rem;
  }
}

.hero__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  margin-bottom: 3rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero__text {
    font-size: 1rem;
  }
}

.hero__image {
  max-width: 300px;
}

@media (min-width: 992px) {
  .hero__image {
    max-width: 400px;
  }
}

.steps {
  padding: 6rem 0;
  background-image: url(/wp-content/themes/site/assets/images/bg2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.steps__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .steps__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.steps__card {
  background: rgba(51, 51, 51, 0.3);
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.steps__card:hover {
  border-color: #E31E24;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 40px rgba(227, 30, 36, 0.15);
          box-shadow: 0 10px 40px rgba(227, 30, 36, 0.15);
}

.steps__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps__card-text {
  font-size: 0.875rem;
  color: #AAAAAA;
  line-height: 1.7;
}

.steps__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(227, 30, 36, 0.15);
  border-radius: 8px;
}

.steps__icon img {
  width: 36px;
  height: 36px;
}

.steps__action {
  text-align: center;
}

.prizes {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.prizes__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.prizes__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prizes__container {
  position: relative;
}

.prizes__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .prizes__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.prizes__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.prizes__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 50px rgba(227, 30, 36, 0.2);
          box-shadow: 0 15px 50px rgba(227, 30, 36, 0.2);
}

.prizes__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  z-index: 2;
}

.prizes__card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.prizes__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.prizes__card:hover .prizes__card-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.prizes__card-title {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.countdown {
  padding: 6rem 0;
  background: #111111;
  text-align: center;
  background-image: url(/wp-content/themes/site/assets/images/bg4.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.countdown__timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: #E31E24;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .countdown__timer {
    gap: 1rem;
    padding: 2rem 3rem;
  }
}

.countdown__item {
  text-align: center;
  min-width: 55px;
}

@media (min-width: 768px) {
  .countdown__item {
    min-width: 70px;
  }
}

.countdown__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 768px) {
  .countdown__number {
    font-size: 3rem;
  }
}

.countdown__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .countdown__label {
    font-size: 0.875rem;
  }
}

.countdown__separator {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .countdown__separator {
    font-size: 3rem;
  }
}

.countdown__action {
  text-align: center;
  margin-top: 3rem;
}

.challenge {
  padding: 6rem 0;
  background: #000000;
}

.challenge__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .challenge__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .challenge__grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.challenge__card {
  background: rgba(51, 51, 51, 0.3);
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.challenge__card:hover {
  border-color: #E31E24;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.challenge__card-number {
  width: 40px;
  height: 40px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.challenge__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.challenge__card-text {
  font-size: 0.875rem;
  color: #AAAAAA;
  line-height: 1.7;
}

.challenge__image {
  text-align: center;
}

.challenge__image img {
  max-width: 250px;
  margin: 0 auto;
}

.clubhuis {
  padding: 6rem 0;
  background-image: url(/wp-content/themes/site/assets/images/bg5.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0 center;
}

.clubhuis__content {
  text-align: center;
  margin-bottom: 3rem;
}

.clubhuis__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .clubhuis__text {
    font-size: 1rem;
  }
}

.clubhuis__image {
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.clubhuis__image img {
  width: 100%;
  height: auto;
}

.final-cta {
  padding: 6rem 0;
  text-align: center;
  background: #000000;
}

.registration {
  min-height: 100vh;
  padding-top: calc(64px + 4rem);
  padding-bottom: 6rem;
  position: relative;
}

@media (min-width: 992px) {
  .registration {
    padding-top: calc(80px + 4rem);
  }
}

.registration__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(/wp-content/themes/site/assets/images/bg2.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.registration__step {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.registration__step--hidden {
  display: none;
}

.registration__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .registration__title {
    font-size: 3rem;
  }
}

.registration__stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem 0;
}

.registration__stepper-item {
  width: 48px;
  height: 48px;
  border: 2px solid #666666;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #666666;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.registration__stepper-item--active {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.registration__stepper-item--done {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.registration__stepper-line {
  width: 80px;
  height: 2px;
  background: #666666;
}

@media (min-width: 768px) {
  .registration__stepper-line {
    width: 120px;
  }
}

.registration__stepper-line--done {
  background: #FFFFFF;
}

.registration__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.registration__field {
  position: relative;
}

.registration__field input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(51, 51, 51, 0.5);
  border: 1px solid #444444;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.registration__field input::-webkit-input-placeholder {
  color: #888888;
}

.registration__field input:-ms-input-placeholder {
  color: #888888;
}

.registration__field input::-ms-input-placeholder {
  color: #888888;
}

.registration__field input::placeholder {
  color: #888888;
}

.registration__field input:focus {
  border-color: #E31E24;
  background: rgba(51, 51, 51, 0.7);
}

.registration__field input.is-invalid {
  border-color: #E31E24;
}

.registration__error {
  display: block;
  text-align: left;
  font-size: 0.75rem;
  color: #E31E24;
  margin-top: 4px;
  min-height: 0;
}

.registration__submit {
  margin-top: 1rem;
  width: 100%;
  max-width: 280px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.registration__info {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.registration__mail-icon {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.registration__mail-icon img {
  -webkit-animation: mailBounce 1.5s ease-in-out infinite;
          animation: mailBounce 1.5s ease-in-out infinite;
}

.registration__success-icon {
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
}

@-webkit-keyframes mailBounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes mailBounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.footer {
  background: #111111;
  padding-top: 4rem;
  border-top: 1px solid #333333;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__logo img {
  width: 160px;
  height: auto;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}

.footer__nav-list a {
  font-size: 0.875rem;
  color: #CCCCCC;
}

.footer__nav-list a:hover {
  color: #FFFFFF;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media (min-width: 992px) {
  .footer__right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #666666;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  border-color: #E31E24;
  color: #E31E24;
  background: rgba(227, 30, 36, 0.1);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__address {
  font-size: 0.875rem;
  color: #AAAAAA;
  line-height: 1.6;
}

.footer__address a {
  color: #CCCCCC;
}

.footer__address a:hover {
  color: #FFFFFF;
}

.footer__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid #333333;
}

.footer__payment img {
  height: 30px;
  width: auto;
  border-radius: 4px;
  background: #FFFFFF;
  padding: 4px 8px;
}

.footer__bottom {
  padding: 1.5rem 0 3rem;
  border-top: 1px solid #333333;
}

.footer__info {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 1rem;
}

.footer__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media (min-width: 992px) {
  .footer__bottom-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: #888888;
}

.footer__legal a:hover {
  color: #FFFFFF;
}

.footer__copyright {
  font-size: 0.75rem;
  color: #888888;
}

.footer__kansspel img {
  height: 32px;
  width: auto;
}

body {
  padding-top: 0;
}

.header__nav-link--active {
  color: #E31E24;
}

.header__nav-link--active::after {
  width: 100%;
}

.section-divider--left {
  margin-left: 0;
  margin-right: auto;
}

.prijzen-hero {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .prijzen-hero {
    padding-top: 80px;
  }
}

.prijzen-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.prijzen-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prijzen-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .prijzen-hero__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .prijzen-hero__content {
    max-width: 50%;
  }
}

.prijzen-hero__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .prijzen-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .prijzen-hero__title {
    font-size: 3rem;
  }
}

.prijzen-hero__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .prijzen-hero__text {
    font-size: 1rem;
  }
}

.prijzen-hero__image {
  max-width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 992px) {
  .prijzen-hero__image {
    max-width: 400px;
  }
}

.prijzen-hero__image img {
  width: 100%;
  height: auto;
}

.prijzen-main {
  padding: 6rem 0;
  background: #111111;
}

.prize-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(135deg, #C41A1F, #a01519);
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .prize-feature {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.prize-feature__content {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .prize-feature__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 4rem;
  }
}

.prize-feature__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .prize-feature__title {
    font-size: 2rem;
  }
}

.prize-feature__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .prize-feature__text {
    font-size: 1rem;
  }
}

.prize-feature__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.prize-feature__link:hover {
  opacity: 0.8;
}

.prize-feature__image {
  position: relative;
}

@media (min-width: 992px) {
  .prize-feature__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: 45%;
  }
}

.prize-feature__image-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.prize-feature__image-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 250px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.prize-feature__image-link:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.prize-feature__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 2;
}

.prize-feature__label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #E31E24;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.prijzen-secondary {
  padding: 0 0 6rem;
  background: #111111;
}

.prijzen-secondary__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .prijzen-secondary__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.prize-card {
  background: linear-gradient(135deg, #C41A1F, #a01519);
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.prize-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 40px rgba(227, 30, 36, 0.25);
          box-shadow: 0 15px 40px rgba(227, 30, 36, 0.25);
}

.prize-card__link {
  display: block;
}

.prize-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .prize-card__title {
    font-size: 1.25rem;
  }
}

.prize-card__image {
  position: relative;
  overflow: hidden;
}

.prize-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.prize-card:hover .prize-card__image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.prize-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

.prize-card__label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #E31E24;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

.breadcrumb {
  padding-top: calc(64px + 1.5rem);
  padding-bottom: 1rem;
  background: #111111;
}

@media (min-width: 992px) {
  .breadcrumb {
    padding-top: calc(80px + 1.5rem);
  }
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb__item {
  font-size: 0.875rem;
  color: #AAAAAA;
}

.breadcrumb__item a {
  color: #AAAAAA;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: #FFFFFF;
}

.breadcrumb__item:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: #666666;
}

.breadcrumb__item--active {
  color: #FFFFFF;
}

.prize-detail {
  padding: 3rem 0 6rem;
  background: #111111;
}

.prize-detail__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .prize-detail__hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .prize-detail__gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    position: -webkit-sticky;
    position: sticky;
    top: calc(80px + 1.5rem);
  }
}

.prize-detail__main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.prize-detail__main-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
}

.prize-detail__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 44px;
  height: 44px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 2;
}

.prize-detail__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.prize-detail__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.prize-detail__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
}

.prize-detail__thumb--active, .prize-detail__thumb:hover {
  border-color: #E31E24;
}

@media (min-width: 992px) {
  .prize-detail__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.prize-detail__rank {
  display: inline-block;
  background: #E31E24;
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.prize-detail__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .prize-detail__title {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .prize-detail__title {
    font-size: 2.5rem;
  }
}

.prize-detail__value {
  font-size: 1.125rem;
  color: #CCCCCC;
  margin-bottom: 1.5rem;
}

.prize-detail__value strong {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.prize-detail__desc {
  margin-bottom: 2rem;
}

.prize-detail__desc p {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .prize-detail__desc p {
    font-size: 1rem;
  }
}

.prize-detail__desc p:last-child {
  margin-bottom: 0;
}

.prize-detail__highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.prize-detail__highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.prize-detail__highlight svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.prize-detail__highlight span {
  font-size: 0.875rem;
  color: #E5E5E5;
}

@media (min-width: 768px) {
  .prize-detail__highlight span {
    font-size: 1rem;
  }
}

.prize-others {
  padding: 6rem 0;
  background: #000000;
}

.prize-others__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .prize-others__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.prize-others__card {
  border-radius: 12px;
  overflow: hidden;
  background: #1A1A1A;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.prize-others__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15);
          box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15);
}

.prize-others__card a {
  display: block;
}

.prize-others__image {
  position: relative;
  overflow: hidden;
}

.prize-others__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.prize-others__card:hover .prize-others__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.prize-others__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

.prize-others__title {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.about-hero {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .about-hero {
    padding-top: 80px;
  }
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .about-hero__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .about-hero__content {
    max-width: 50%;
  }
}

.about-hero__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .about-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .about-hero__title {
    font-size: 3rem;
  }
}

.about-hero__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-hero__text {
    font-size: 1rem;
  }
}

.about-hero__image {
  max-width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 992px) {
  .about-hero__image {
    max-width: 400px;
  }
}

.about-hero__image img {
  width: 100%;
  height: auto;
}

.about-blocks {
  padding: 4rem 0 6rem;
  background: #111111;
}

.about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(135deg, #C41A1F, #a01519);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .about-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block__content {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .about-block__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 3rem 4rem;
  }
}

.about-block__content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-block__content p {
    font-size: 1rem;
  }
}

.about-block__content p:last-child {
  margin-bottom: 0;
}

.about-block__title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .about-block__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .about-block__title {
    font-size: 2rem;
  }
}

.about-block__image {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media (min-width: 992px) {
  .about-block__image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
}

.about-block__image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  .about-block__image img {
    min-height: 100%;
  }
}

.nieuws-hero {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .nieuws-hero {
    padding-top: 80px;
  }
}

.nieuws-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.nieuws-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nieuws-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .nieuws-hero__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .nieuws-hero__content {
    max-width: 50%;
  }
}

.nieuws-hero__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .nieuws-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .nieuws-hero__title {
    font-size: 3rem;
  }
}

.nieuws-hero__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .nieuws-hero__text {
    font-size: 1rem;
  }
}

.nieuws-hero__image {
  max-width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 992px) {
  .nieuws-hero__image {
    max-width: 400px;
  }
}

.nieuws-hero__image img {
  width: 100%;
  height: auto;
}

.nieuws-grid-section {
  padding: 6rem 0;
  background: #000000;
}

.nieuws-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nieuws-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .nieuws-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.nieuws-card {
  background: linear-gradient(135deg, #C41A1F, #a01519);
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.nieuws-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 40px rgba(227, 30, 36, 0.25);
          box-shadow: 0 15px 40px rgba(227, 30, 36, 0.25);
}

.nieuws-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.nieuws-card__image {
  overflow: hidden;
}

.nieuws-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.nieuws-card:hover .nieuws-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.nieuws-card__body {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.nieuws-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .nieuws-card__title {
    font-size: 1.125rem;
  }
}

.nieuws-card__excerpt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.nieuws-card__btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 10px 32px;
  font-size: 0.875rem;
}

.news-article {
  padding: 3rem 0 6rem;
  background: #111111;
}

.news-article__header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.news-article__date {
  display: inline-block;
  font-size: 0.875rem;
  color: #E31E24;
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-article__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .news-article__title {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .news-article__title {
    font-size: 2.5rem;
  }
}

.news-article__featured {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  max-width: 760px;
}

.news-article__featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-article__content {
  max-width: 760px;
  margin-bottom: 4rem;
}

.news-article__content p {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .news-article__content p {
    font-size: 1rem;
  }
}

.news-article__content p:last-child {
  margin-bottom: 0;
}

.news-article__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .news-article__content h2 {
    font-size: 1.5rem;
  }
}

.news-article__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.news-article__related {
  border-top: 1px solid #333333;
  padding-top: 3rem;
  max-width: 760px;
}

.news-article__related-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.news-article__related-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .news-article__related-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.news-article__related-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #1A1A1A;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.news-article__related-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
          box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
}

.news-article__related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-article__related-card span {
  display: block;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-hero,
.contact-hero {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .faq-hero,
  .contact-hero {
    padding-top: 80px;
  }
}

.faq-hero__bg,
.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.faq-hero__bg-img,
.contact-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq-hero__container,
.contact-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .faq-hero__container,
  .contact-hero__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .faq-hero__content,
  .contact-hero__content {
    max-width: 50%;
  }
}

.faq-hero__title,
.contact-hero__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .faq-hero__title,
  .contact-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .faq-hero__title,
  .contact-hero__title {
    font-size: 3rem;
  }
}

.faq-hero__image,
.contact-hero__image {
  max-width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 992px) {
  .faq-hero__image,
  .contact-hero__image {
    max-width: 400px;
  }
}

.faq-hero__image img,
.contact-hero__image img {
  width: 100%;
  height: auto;
}

.faq-section {
  padding: 6rem 0;
  background: #111111;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(196, 26, 31, 0.5), rgba(196, 26, 31, 0.25));
  border: 1px solid rgba(227, 30, 36, 0.25);
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.faq-item:hover, .faq-item[open] {
  border-color: rgba(227, 30, 36, 0.5);
}

.faq-item__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::marker {
  display: none;
  content: '';
}

@media (min-width: 768px) {
  .faq-item__question {
    font-size: 1.125rem;
  }
}

.faq-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #FFFFFF;
}

.faq-item[open] .faq-item__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 2rem 1.5rem;
}

.faq-item__answer p {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .faq-item__answer p {
    font-size: 1rem;
  }
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer ul {
  padding-left: 2rem;
  margin-top: 0.5rem;
}

.faq-item__answer ul li {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.8;
  position: relative;
  padding-left: 0.5rem;
  list-style: disc;
}

@media (min-width: 768px) {
  .faq-item__answer ul li {
    font-size: 1rem;
  }
}

.contact-form-section {
  padding: 6rem 0;
  background: #111111;
}

.contact-form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-wrapper__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper__title {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .contact-form-wrapper__title {
    font-size: 2.5rem;
  }
}

.contact-form-wrapper__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper__text {
    font-size: 1rem;
  }
}

.contact-form-wrapper__text a {
  color: #E31E24;
  text-decoration: underline;
}

.contact-form-wrapper__text a:hover {
  color: #FF3B42;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form__field {
  position: relative;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(51, 51, 51, 0.5);
  border: 1px solid #444444;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.contact-form__field input::-webkit-input-placeholder,
.contact-form__field textarea::-webkit-input-placeholder {
  color: #888888;
}

.contact-form__field input:-ms-input-placeholder,
.contact-form__field textarea:-ms-input-placeholder {
  color: #888888;
}

.contact-form__field input::-ms-input-placeholder,
.contact-form__field textarea::-ms-input-placeholder {
  color: #888888;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #888888;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #E31E24;
  background: rgba(51, 51, 51, 0.7);
  outline: none;
}

.contact-form__field input.is-invalid,
.contact-form__field textarea.is-invalid {
  border-color: #E31E24;
}

.contact-form__field textarea {
  min-height: 120px;
}

.contact-form__error {
  display: block;
  text-align: left;
  font-size: 0.75rem;
  color: #E31E24;
  margin-top: 4px;
  min-height: 0;
}

.contact-form__submit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  min-width: 200px;
  margin-top: 1rem;
}

.challenge-hero {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .challenge-hero {
    padding-top: 80px;
  }
}

.challenge-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.challenge-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.challenge-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .challenge-hero__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .challenge-hero__content {
    max-width: 55%;
  }
}

.challenge-hero__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .challenge-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .challenge-hero__title {
    font-size: 3rem;
  }
}

.challenge-hero__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .challenge-hero__text {
    font-size: 1rem;
  }
}

.challenge-hero__image {
  max-width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 992px) {
  .challenge-hero__image {
    max-width: 380px;
  }
}

.challenge-hero__image img {
  width: 100%;
  height: auto;
}

.challenge-steps {
  padding: 6rem 0;
  background: #111111;
}

.challenge-steps__heading {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .challenge-steps__heading {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .challenge-steps__heading {
    font-size: 2.5rem;
  }
}

.challenge-steps__divider {
  width: 80px;
  height: 3px;
  background-color: #E31E24;
  margin: 1rem 0 1.5rem;
}

.challenge-steps__sub {
  font-size: 0.875rem;
  color: #CCCCCC;
  margin-bottom: 3rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .challenge-steps__sub {
    font-size: 1rem;
  }
}

.challenge-steps__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .challenge-steps__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.challenge-steps__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 576px) {
  .challenge-steps__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.challenge-steps__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .challenge-steps__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 280px;
            flex: 0 0 280px;
    max-width: 280px;
  }
}

.challenge-steps__logo img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .challenge-steps__logo img {
    max-width: 100%;
  }
}

.challenge-step-card {
  background: linear-gradient(135deg, rgba(196, 26, 31, 0.6), rgba(196, 26, 31, 0.3));
  border: 1px solid rgba(227, 30, 36, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.challenge-step-card:hover {
  border-color: #E31E24;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
          box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
}

.challenge-step-card__number {
  width: 40px;
  height: 40px;
  background: #E31E24;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.challenge-step-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.challenge-step-card__text {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.7;
}

.challenge-info {
  padding: 0 0 6rem;
  background: #111111;
}

.challenge-info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(135deg, #C41A1F, #a01519);
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .challenge-info__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.challenge-info__content {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .challenge-info__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 3rem 4rem;
  }
}

.challenge-info__content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .challenge-info__content p {
    font-size: 1rem;
  }
}

.challenge-info__title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .challenge-info__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .challenge-info__title {
    font-size: 2rem;
  }
}

.challenge-info__image {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media (min-width: 992px) {
  .challenge-info__image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
}

.challenge-info__image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  .challenge-info__image img {
    min-height: 100%;
  }
}

.challenge-club-image {
  padding: 0 0 6rem;
  background: #000000;
}

.challenge-club-image__wrapper {
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.challenge-club-image__wrapper img {
  width: 100%;
  height: auto;
}

.legal-page {
  padding-top: calc(64px + 4rem);
  padding-bottom: 6rem;
  background: #111111;
  min-height: 100vh;
}

@media (min-width: 992px) {
  .legal-page {
    padding-top: calc(80px + 4rem);
  }
}

.legal-page__header {
  margin-bottom: 3rem;
}

.legal-page__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .legal-page__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .legal-page__title {
    font-size: 3rem;
  }
}

.legal-page__content {
  max-width: 860px;
}

.legal-page__section {
  margin-bottom: 3rem;
}

.legal-page__section:last-child {
  margin-bottom: 0;
}

.legal-page__section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .legal-page__section h2 {
    font-size: 1.125rem;
  }
}

.legal-page__section p {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.9;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .legal-page__section p {
    font-size: 1rem;
  }
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__section ul,
.legal-page__section ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page__section ul li,
.legal-page__section ol li {
  font-size: 0.875rem;
  color: #CCCCCC;
  line-height: 1.9;
  list-style: disc;
}

@media (min-width: 768px) {
  .legal-page__section ul li,
  .legal-page__section ol li {
    font-size: 1rem;
  }
}

.legal-page__section a {
  color: #E31E24;
  text-decoration: underline;
}

.legal-page__section a:hover {
  color: #FF3B42;
}

.success-page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 64px;
  padding-bottom: 6rem;
  position: relative;
}

@media (min-width: 992px) {
  .success-page {
    padding-top: 80px;
  }
}

.success-page__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 30%, rgba(227, 30, 36, 0.12) 0%, transparent 60%), #000000;
}

.success-page__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 0;
}

.success-page__icon {
  margin-bottom: 3rem;
}

.success-page__icon svg {
  -webkit-animation: successPulse 2s ease-in-out infinite;
          animation: successPulse 2s ease-in-out infinite;
}

.success-page__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .success-page__title {
    font-size: 3rem;
  }
}

.success-page__text {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.7;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .success-page__text {
    font-size: 1.125rem;
  }
}

.success-page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

@-webkit-keyframes successPulse {
  0%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.85;
  }
}

@keyframes successPulse {
  0%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.85;
  }
}
