@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Inter", sans-serif;
  background: #0F0000;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #0F0000;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.h1 {
  color: #FFF;
  font-size: clamp(22px, 6vw, 60px);
  font-weight: 600;
  line-height: 100%;
}
.h1 span {
  background: linear-gradient(90deg, #FF140C 0%, #FE8B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.h2 {
  color: #FFF;
  font-size: clamp(20px, 5vw, 46px);
  font-weight: 600;
  line-height: 100%;
}

.h3 {
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  background: linear-gradient(90deg, #FF140C 0%, #FE8B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

[class*=__text] {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

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

section {
  scroll-margin-top: 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  background: #0F0000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .header__content {
    padding: 10px 0;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #0F0000;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body_privacy {
    background: #fff;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 30px;
  }
}
.menu__link {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  background: rgba(255, 255, 255, 0.07);
  padding: 30px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 257px;
}
.footer__partners {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .footer__partners {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
.footer__info {
  border-radius: 15px;
  border: 2px solid #FF140C;
  background: linear-gradient(135deg, rgba(255, 20, 12, 0.15) 0%, rgba(254, 139, 0, 0.15) 100%);
  padding: 20px;
  display: flex;
  gap: 10px;
}
.footer__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  border-radius: 26px;
  border: 2px solid rgba(254, 139, 0, 0.3);
  background: #201212;
  box-shadow: 0 0 30px 0 rgba(254, 139, 0, 0.27);
}
@media (max-width: 767px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookies__title {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 767px) {
  .cookies__title {
    font-size: 14px;
  }
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 575px) {
  .cookies__btns {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cookies__btn {
  border-radius: 60px;
  background: linear-gradient(135deg, #FF140C 0%, #FE8B00 100%);
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 20px 0;
  border: 1px solid transparent;
}
.cookies__btn_sub {
  color: #FE8B00;
  border-radius: 60px;
  border: 1px solid #FE8B00;
  background: transparent;
}

.hero {
  margin: 85px 0 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.hero__row {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__column_top {
  max-width: 680px;
  width: 100%;
}
.hero__label {
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.07);
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 110%;
  padding: 15px;
  width: -moz-fit-content;
  width: fit-content;
}
.hero__label_sub {
  border-radius: 10px;
  white-space: nowrap;
}
.hero__info {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .hero__info {
    flex-wrap: wrap;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .hero__img {
    display: none;
  }
}
.hero__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 26px;
  border: 2px solid #FF140C;
  background: linear-gradient(135deg, rgba(255, 20, 12, 0.15) 0%, rgba(254, 139, 0, 0.15) 100%);
  box-shadow: 0 0 30px 0 rgba(254, 139, 0, 0.27);
  padding: 15px 15px 15px 0;
  gap: 10px;
}
@media (max-width: 991px) {
  .hero__card {
    flex-direction: column;
  }
}
.hero__card-label {
  border-radius: 0 20px 20px 0;
  background: linear-gradient(135deg, #FF140C 0%, #FE8B00 100%);
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .hero__card-label {
    margin-left: 0;
    margin-right: auto;
  }
}
.hero__card-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 316px;
}
.hero__card-info h3 {
  color: #FFF;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__rating p {
  color: #FFF;
  font-size: 38px;
  font-weight: 700;
  line-height: 110%;
}
.hero__rating-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero__rating-body p {
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}
.hero__card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__card-btn p {
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
  max-width: 157px;
}
.hero__link {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  border-radius: 60px;
  background: linear-gradient(135deg, #FF140C 0%, #FE8B00 100%);
  box-shadow: 0 0 12px 0 rgba(254, 139, 0, 0.5);
  padding: 24px 70px;
}

.choose {
  background: rgba(255, 255, 255, 0.07);
  padding: 50px 0;
  margin: 60px 0 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .choose {
    padding: 30px 0;
    margin: 30px 0 0;
  }
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 880px;
}
@media (max-width: 991px) {
  .choose__content {
    max-width: 100%;
  }
}
.choose__content_about {
  max-width: 100%;
}
.choose__grig {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 575px) {
  .choose__grig {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__grig_about {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .choose__grig_about {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .choose__grig_about {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 26px;
  border: 2px solid #FF140C;
  background: #170000;
  padding: 20px;
}
.choose__img {
  position: absolute;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .choose__img {
    display: none;
  }
}
.choose__text a {
  color: #FE8B00;
  text-decoration: underline;
}

.faq {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 30px 0;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__card {
  border-radius: 22px;
  border: 2px solid #FF140C;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq__text {
  max-width: 916px;
}

.players {
  background: rgba(255, 255, 255, 0.07);
  padding: 50px 0;
}
@media (max-width: 767px) {
  .players {
    padding: 30px 0;
  }
}
.players__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.players__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .players__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.info {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .info {
    padding: 30px 0;
  }
}
.info__content {
  border-radius: 15px;
  border: 2px solid #FF140C;
  background: linear-gradient(135deg, rgba(255, 20, 12, 0.15) 0%, rgba(254, 139, 0, 0.15) 100%);
  padding: 20px;
}

.contact {
  margin: 100px 0 80px;
}
@media (max-width: 767px) {
  .contact {
    margin: 80px 0 30px;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact__txt {
  background: linear-gradient(90deg, #FF140C 0%, #FE8B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
}
.contact__form {
  border-radius: 30px;
  border: 2px solid #FF140C;
  background: #170000;
  padding: 30px 37px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 795px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact__form {
    padding: 20px;
  }
}
.contact__title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__inp {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  padding: 17px 20px;
}
.contact__inp_msg {
  height: 120px;
  resize: none;
  border-radius: 24px;
}
.contact__btn {
  border-radius: 60px;
  background: linear-gradient(135deg, #FF140C 0%, #FE8B00 100%);
  box-shadow: 0 0 12px 0 rgba(254, 139, 0, 0.5);
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 70px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.privacy {
  margin: 100px 0 80px;
}
@media (max-width: 767px) {
  .privacy {
    margin: 80px 0 30px;
  }
}