: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-wrapper {
  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-alt {
  background-color: var(--h_background_color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-wrap-main {
  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-icon img {
  max-height: 30px;
}

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

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

.topbar-nav-menu 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-nav-menu ul li a.active, .topbar-nav-menu ul li a:hover {
  color: var(--color-brand-hover);
}

.header__mobile-navbar {
  display: none;
}

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

.cta-button {
  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-anim-highlight {
  position: relative;
  overflow: hidden;
}

.cta-anim-highlight: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%;
  }
}
.cta-button:hover {
  background-color: #6fa504;
}

.intro-main-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(../jpeg-img/site-bg-pattern.webp);
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url(../jpeg-img/site-bg-pattern.webp);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

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

.intro-header {
  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-text {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.table-container-main {
  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-tutorial {
  margin: 30px 0;
}

.howto-content-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;
}

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

.step-body-text {
  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-text 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-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-text-content {
  margin-bottom: 0;
}

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

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

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

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

.sport-main-area {
  margin-bottom: 40px;
}

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

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

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

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

.customer-faq {
  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;
}

.backtop-button {
  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;
}

.backtop-button svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  fill: var(--ft_background_color);
}

.backtop-button.show {
  opacity: 1;
  visibility: visible;
}

.backtop-button:hover {
  background-color: var(--color-brand-hover);
}

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

.footer-logo-icon img {
  max-height: 30px;
  margin-bottom: 10px;
}

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

.btn-list-element 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;
}

.btn-list-element span:nth-child(1) {
  top: 0;
}

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

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

.btn-list-element.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);
}

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

.btn-list-element.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-wrap-main {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr auto;
  }
  .topbar-nav-menu {
    grid-column: span 2;
    grid-row: 2;
  }
}
@media screen and (max-width: 768px) {
  .columns-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .intro-main-section {
    padding: 60px 0;
  }
  .intro-header {
    font-size: 28px;
  }
  .input-field {
    padding: 40px 0;
  }
  .field-title-text {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .topbar-nav-menu {
    display: none;
  }
  .topbar-nav-menu 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-nav-menu ul li {
    margin: 0 !important;
  }
  .topbar-nav-menu.active {
    display: block;
  }
  .topbar-buttons-group {
    padding-top: 10px;
    grid-column: span 2;
    margin-left: 0;
  }
  .topbar-buttons-group > * {
    -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;
  }
  .btn-list-element {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .topbar-buttons-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .step-body-text {
    padding-left: 35px;
  }
  .intro-main-section {
    padding: 40px 0;
  }
  .intro-header {
    font-size: 24px;
  }
  .input-field {
    padding: 30px 0;
  }
  .field-title-text {
    font-size: 22px;
  }
}