:root {
  --bg-body:#ffffff;
  --text-body-color:#000000;
  --main-accent-color:#E11919;
  --second-accent-color:#FFFFFF;
  --h_navigation_color:#FFFFFF;
  --h_background_color:#202020;
  --ft_background_color:#202020;
  --ft_text_color:#ffffff;
  --link_color:#E11919;
  --link_hover:#bb4040;
  --color-brand:#9CE800;
  --color-brand-hover:#6fa504;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body-color);
  background-color: var(--bg-body);
}

.layout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

a {
  color: var(--link_color);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

ol, ul {
  list-style-position: inside;
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

section a:not([class]) {
  text-decoration: underline;
}

.header-topbar {
  background-color: var(--h_background_color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-wrapper {
  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;
}

.topbar-logo-img img {
  max-height: 30px;
}

.topbar-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
}

.topbar-navigation ul li:not(:first-child) {
  margin-left: 20px;
}

.topbar-navigation ul li a {
  color: var(--color-brand);
  font-weight: 500;
}

.header__mobile-navbar ul li a.active, .header__mobile-navbar ul li a:hover, .topbar-navigation ul li a.active, .topbar-navigation ul li a:hover {
  color: var(--color-brand-hover);
}

.header__mobile-navbar {
  display: none;
}

.topbar-action-buttons {
  margin-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.call-to-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  background-color: #9ce800;
  color: var(--ft_background_color);
  border-radius: 4px;
  font-weight: 500;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.cta-animated-effect {
  position: relative;
  overflow: hidden;
}

.cta-animated-effect:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -100%;
  width: 74px;
  height: 74px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='74px' viewBox='0 -960 960 960' width='74px' fill-opacity='0.5' fill='%23fff'%3E%3Cpath d='m242-200 200-280-200-280h98l200 280-200 280h-98Zm238 0 200-280-200-280h98l200 280-200 280h-98Z'/%3E%3C/svg%3E");
  -webkit-animation: toRight 2s infinite;
  animation: toRight 2s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

@-webkit-keyframes toRight {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
@keyframes toRight {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
.call-to-action:hover {
  background-color: #6fa504;
}

.intro-content-section {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0.8))), url(../img-data/background-hero.webp);
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url(../img-data/background-hero.webp);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.intro-wrap {
  position: relative;
  z-index: 1;
}

.intro-title {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #9ce800, 1px 2px 1px #9ce800, 1px 3px 1px #9ce800, 1px 10px 5px rgba(16, 16, 16, 0.5), 1px 15px 10px rgba(16, 16, 16, 0.4), 1px 20px 30px rgba(16, 16, 16, 0.3), 1px 25px 50px rgba(16, 16, 16, 0.2);
}

.intro-description {
  max-width: 800px;
  margin: 0 auto;
}

.form-field {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.field-label {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

.field-image {
  margin-bottom: 25px;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

table tr:nth-child(odd) {
  background-color: #f8f8f8;
}

table tr:first-child {
  font-weight: 700;
  background-color: #f0f0f0;
}

.howto-guide {
  margin: 30px 0;
}

.howto-step-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 20px;
  background-color: #f9f9f9;
}

.step-body-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-left: 40px;
}

.step-body-content span {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--main-accent-color);
  color: #fff;
  border-radius: 50%;
  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;
  font-weight: 700;
}

.step-title-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-paragraph {
  margin-bottom: 0;
}

.columns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.column-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.game-content-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.game-content-section h3 {
  color: var(--main-accent-color);
  margin-bottom: 15px;
}

.sport-content-section {
  margin-bottom: 40px;
}

.sport-content-section h3 {
  color: var(--main-accent-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.tips-list-container {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  border-left: 4px solid var(--main-accent-color);
}

.tips-list-container li {
  margin-bottom: 10px;
}

.tips-list-container li:last-child {
  margin-bottom: 0;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

details {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

summary {
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

details[open] summary {
  margin-bottom: 15px;
}

details div {
  padding: 0 15px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-brand);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}

.scroll-top-btn svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  fill: var(--ft_background_color);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--color-brand-hover);
}

.page-footer {
  background-color: var(--ft_background_color);
  color: var(--ft_text_color);
  padding: 30px 0;
  text-align: center;
}

.footer-logo-img img {
  max-height: 30px;
}

.button-list-item {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.button-list-item span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-brand);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.button-list-item span:nth-child(1) {
  top: 0;
}

.button-list-item span:nth-child(2) {
  top: 8px;
}

.button-list-item span:nth-child(3) {
  top: 16px;
}

.button-list-item.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 6.5px);
  -ms-transform: rotate(45deg) translate(5px, 6.5px);
  transform: rotate(45deg) translate(5px, 6.5px);
}

.button-list-item.active span:nth-child(2) {
  opacity: 0;
}

.button-list-item.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -6.5px);
  -ms-transform: rotate(-45deg) translate(5px, -6.5px);
  transform: rotate(-45deg) translate(5px, -6.5px);
}

@media (max-width: 992.98px) {
  .topbar-wrapper {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr auto;
  }
  .topbar-navigation {
    grid-column: span 2;
    grid-row: 2;
  }
}
@media screen and (max-width: 768px) {
  .columns-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .intro-content-section {
    padding: 60px 0;
  }
  .intro-title {
    font-size: 28px;
  }
  .form-field {
    padding: 40px 0;
  }
  .field-label {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .topbar-navigation {
    display: none;
  }
  .topbar-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 8px;
  }
  .topbar-navigation ul li {
    margin: 0 !important;
  }
  .topbar-navigation.active {
    display: block;
  }
  .topbar-action-buttons {
    padding-top: 10px;
    grid-column: span 2;
    margin-left: 0;
  }
  .topbar-action-buttons > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .button-list-item {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .topbar-action-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .step-body-content {
    padding-left: 35px;
  }
  .intro-content-section {
    padding: 40px 0;
  }
  .intro-title {
    font-size: 24px;
  }
  .form-field {
    padding: 30px 0;
  }
  .field-label {
    font-size: 22px;
  }
}