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

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

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

a {
  text-decoration: none;
}

button {
  border: transparent;
  cursor: pointer;
}

html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #ffffff;
  line-height: 1.4;
  min-height: 100vh;
  background-color: #1c2526;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

.banner {
  background: #ff4500;
  padding: 0.5rem 0;
  text-align: center;
}
.banner__container {
  max-width: 76rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
.banner__text {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.terms-info__container,
.site-footer__container {
  max-width: 76rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

main {
  position: relative;
}

.terms-info {
  padding: 3rem 0;
  background: linear-gradient(
      180deg,
      rgba(28, 37, 38, 0.8) 0%,
      rgba(46, 66, 78, 0.8) 100%
    ),
    url("../img/bg1.webp") no-repeat center/cover;
}
@media (max-width: 767.98px) {
  .terms-info {
    padding: 1.5rem 0;
  }
}

.terms-info__main-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  animation: glow-effect 1.5s infinite;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .terms-info__main-heading {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .terms-info__main-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}

.terms-info__block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #2e424e;
  border-radius: 12px;
  border: 1px solid #1e90ff;
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .terms-info__block:hover {
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
    transform: scale(1.01);
  }
}
@media (max-width: 767.98px) {
  .terms-info__block {
    padding: 1rem;
  }
}

.terms-info__heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffd700;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .terms-info__heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .terms-info__heading {
    font-size: 1.25rem;
  }
}

.terms-info__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
@media (max-width: 767.98px) {
  .terms-info__text {
    font-size: 0.9rem;
  }
}

.terms-info__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.terms-info__list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.terms-info__list li::marker {
  color: #ffd700;
}
@media (max-width: 767.98px) {
  .terms-info__list li {
    font-size: 0.9rem;
  }
}

.terms-info__link {
  font-weight: 700;
  color: #ffd700;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .terms-info__link:hover {
    color: #1e90ff;
    text-shadow: 0 0 8px rgba(30, 144, 255, 0.5);
  }
}

@keyframes glow-effect {
  0% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5),
      0 0 10px rgba(30, 144, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
      0 0 15px rgba(30, 144, 255, 0.8);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5),
      0 0 10px rgba(30, 144, 255, 0.5);
  }
}

.site-footer {
  padding: 2rem 0;
  border-top: 5px solid #2e424e;
  background: #1c2526;
}
.site-footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2rem;
}

.badges {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.badges__link {
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .badges__link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  }
}
.badges__link:nth-child(1) {
  width: 100px;
  height: 100px;
}
.badges__link:nth-child(2),
.badges__link:nth-child(3),
.badges__link:nth-child(4),
.badges__link:nth-child(5) {
  width: 150px;
  height: 50px;
  background-color: #ffd700;
}
.badges__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
}

.nav-links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.nav-links__item {
  color: #ffd700;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .nav-links__item:hover {
    color: #1e90ff;
    text-shadow: 0 0 8px rgba(30, 144, 255, 0.5);
  }
}

.notice__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .notice__text {
    font-size: 0.8rem;
  }
}
