* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}

.header {
  background-color: #0a1128;
  padding: 15px 0;
  border-bottom: 1px solid #142251;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__menu-item {
  margin-left: 30px;
}
.header__menu-link {
  text-decoration: none;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #ffd700;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  color: #ffd700;
  margin-bottom: 15px;
}

h1 {
  font-size: 32px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 64px;
  }
}

h2 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 38px;
  }
}
@media (min-width: 1440px) {
  h2 {
    font-size: 48px;
  }
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}
@media (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffd700;
  color: #0a1128;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #ccac00;
  color: #ffffff;
}



.platforms {
  padding: 40px 0;
  background-color: #0f1a3c;
}
.platforms__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.platforms__item {
  display: flex;
  flex-direction: column;
  background-color: #0a1128;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .platforms__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.platforms__item-block {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .platforms__item-block {
    flex: 1;
    padding: 30px;
  }
}
.platforms__item-block-bg {
  padding: 80px 30px;
  background-color: #142251;
}
.platforms__item-number-bg-absolute {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffd700;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.platforms__item-number {
  color: #0a1128;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
}
.platforms__item-img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .platforms__item-img {
    max-width: 120px;
  }
}
.platforms__item-rating {
  height: 20px;
  color: #ffd700;
  margin-bottom: 5px;
}
.platforms__item-rating-icon {
  font-size: 18px;
}
.platforms__item-text {
  color: #cccccc;
  font-size: 14px;
}
@media (min-width: 768px) {
  .platforms__item-block-2 {
    border-left: 1px solid #192b65;
    border-right: 1px solid #192b65;
  }
}
.platforms__item-title {
  font-family: "Oswald", sans-serif;
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 5px;
}
.platforms__item-title p {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .platforms__item-title p {
    font-size: 28px;
  }
}
.platforms__item-title span {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
}
.platforms__item-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.platforms__item-score-text {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 5px;
}
.platforms__item-score-number-border {
  border: 2px solid #ffd700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.platforms__item-score-number-text {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  color: #ffd700;
}
.platforms__item-block-3 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .platforms__item-block-3 {
    padding: 20px;
  }
}
.platforms__item-btn {
  width: 100%;
}
.platforms__item-link-underline {
  color: #ffffff;
  text-decoration: underline;
  font-size: 16px;
  transition: color 0.3s ease;
}
.platforms__item-link-underline:hover {
  color: #ffd700;
}

.content {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .content {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .content {
    padding: 80px 0;
  }
}
.content__block {
  margin-bottom: 40px;
}
.content__block:last-child {
  margin-bottom: 0;
}
.content__title {
  margin-bottom: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .content__title {
    text-align: left;
  }
}
.content__description {
  margin-bottom: 20px;
}
.content__description:last-child {
  margin-bottom: 0;
}
.content__subtitle {
  margin-bottom: 10px;
  color: #ffd700;
  font-size: 24px;
}
@media (min-width: 768px) {
  .content__subtitle {
    font-size: 28px;
  }
}
.content__text {
  margin-bottom: 15px;
}
.content__text:last-child {
  margin-bottom: 0;
}

.guidas {
  padding: 40px 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .guidas {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .guidas {
    padding: 80px 0;
  }
}
.guidas__title {
  font-family: "Oswald", sans-serif;
  color: #ffd700;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}
@media (min-width: 768px) {
  .guidas__title {
    font-size: 48px;
  }
}
.guidas__block {
  margin-bottom: 30px;
}
.guidas__block:last-child {
  margin-bottom: 0;
}
.guidas__subtitle {
  font-family: "Oswald", sans-serif;
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .guidas__subtitle {
    font-size: 28px;
  }
}
.guidas__text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}
.guidas__text:last-child {
  margin-bottom: 0;
}
.guidas__text strong {
  color: #ffffff;
}
.guidas__text a {
  color: #ffd700;
  text-decoration: underline;
}
.guidas__text a:hover {
  color: #ccac00;
}
.guidas__list {
  padding-left: 20px;
  margin-bottom: 15px;
}
.guidas__list-item {
  list-style: disc;
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 5px;
}
.guidas__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
}

.legal {
  padding: 40px 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .legal {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__title {
  font-family: "Oswald", sans-serif;
  color: #ffd700;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 48px;
  }
}
.legal__block {
  margin-bottom: 30px;
}
.legal__block:last-child {
  margin-bottom: 0;
}
.legal__subtitle {
  font-family: "Oswald", sans-serif;
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal__subtitle {
    font-size: 28px;
  }
}
.legal__text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}
.legal__text:last-child {
  margin-bottom: 0;
}
.legal__text strong {
  color: #ffffff;
}
.legal__text a {
  color: #ffd700;
  text-decoration: underline;
}
.legal__text a:hover {
  color: #ccac00;
}
.legal__list {
  padding-left: 20px;
  margin-bottom: 15px;
}
.legal__list-item {
  list-style: disc;
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 5px;
}

.footer {
  background-color: #0a1128;
  padding: 30px 0;
  border-top: 1px solid #142251;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
@media (min-width: 1440px) {
  .footer {
    padding: 50px 0;
  }
}
.footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
@media (min-width: 768px) {
  .footer__partners {
    justify-content: space-between;
    margin-bottom: 40px;
  }
}
.footer__partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__partners-item {
    flex-basis: calc((100% - 100px) / 6);
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__block {
    align-items: flex-start;
    flex: 1;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 15px;
}
.footer__copy {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 10px;
}
.footer__text {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer__text {
    max-width: 90%;
  }
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__menu {
    align-items: flex-start;
  }
}
.footer__menu-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #ffd700;
}