* {
  box-sizing: border-box;
}

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;
}

body {
  font-family: "Play", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

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

.header {
  background-color: #e9541f;
  padding: 36px 0;
}
.header .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.header .header__wrapper .header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.header .header__wrapper .btn {
  font-weight: 700;
  padding: 8px 20px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.header .header__wrapper .btn__outlined:hover {
  background: #ffffff;
  color: #e9541f;
}

@media (max-width: 992px) {
  .header .header__wrapper .btn {
    padding: 6px 16px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header .header__wrapper {
    flex-direction: row;
    justify-content: flex-end;
  }
  .header .header__wrapper .header__logo {
    position: static;
    transform: none;
    margin-right: auto;
  }
}
.hero {
  padding: 60px 0;
  background-color: #ff612f;
  color: #ffffff;
}
.hero .hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 90%;
  margin-left: auto;
}
@media (max-width: 992px) {
  .hero .hero__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.hero .hero__left {
  text-align: center;
  flex: 1;
}
.hero .hero__left .hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .hero .hero__left .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero .hero__left .hero__title {
    font-size: 28px;
  }
}
.hero .hero__left .hero__text {
  font-size: 18px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero .hero__left .hero__text {
    font-size: 16px;
  }
}
.hero .hero__left .hero__img-small {
  width: 100%;
  margin: 20px 0;
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .hero .hero__left .hero__img-small {
    margin-left: 0;
    margin-right: 0;
  }
}
.hero .hero__left .btn__contained {
  background-color: #e9541f;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero .hero__left .btn__contained:hover {
  background-color: #c24113;
}
.hero .hero__right {
  flex: 1;
}
.hero .hero__right .hero__img-big {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.counter {
  padding: 60px 0;
  background-color: #fff;
  color: #000;
  text-align: center;
}
.counter .counter__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2em;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .counter .counter__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .counter .counter__title {
    font-size: 32px;
  }
}
.counter .counter__btn {
  margin-bottom: 40px;
}
.counter .counter__wrapper .counter__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #333;
}
.counter .counter__wrapper .counter__box {
  background-color: #e9541f;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 20px 30px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .counter .counter__wrapper .counter__box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.counter .counter__wrapper .counter__box .counter__item {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px 24px;
  color: #fff;
  min-width: 100px;
  text-align: center;
}
.counter .counter__wrapper .counter__box .counter__item .counter__number {
  font-size: 32px;
  font-weight: 700;
  display: block;
}
.counter .counter__wrapper .counter__box .counter__item .counter__text {
  font-size: 14px;
  opacity: 0.8;
}

.img-section__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rules {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #000;
}
.rules .container {
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .rules .container {
    flex-direction: column;
  }
}
.rules .rules__left {
  flex: 1;
}
.rules .rules__left .rules__img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.rules .rules__right {
  flex: 2;
}
.rules .rules__right .rules__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .rules .rules__right .rules__title {
    font-size: 32px;
  }
}
.rules .rules__right .rules__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}
.rules .rules__right .rules__description {
  margin-bottom: 24px;
}
.rules .rules__right .rules__description .rules__text {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.rules .rules__right .rules__tips {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin: 24px 0 12px;
  color: #e9541f;
}
.rules .rules__right .rules__tips-list {
  list-style: disc inside;
  margin-bottom: 24px;
}
.rules .rules__right .rules__tips-list .rules__tips-item {
  font-size: 16px;
  margin-bottom: 8px;
  opacity: 0.85;
}
.rules .rules__right .rules__text:last-of-type {
  margin-bottom: 32px;
}
.rules .about {
  margin-top: 40px;
  background-color: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.rules .about .about__title {
  font-size: 28px;
  font-weight: 700;
  color: #e9541f;
  margin-bottom: 16px;
}
.rules .about .about__text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.rules .about .about__text .about__text-bold {
  font-weight: 700;
  display: block;
  white-space: pre-line;
}

.testimonials {
  padding: 60px 0;
  background-color: #f0f0f0;
}
.testimonials .testimonials__wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonials .testimonials__item {
  background-image: linear-gradient(180deg, rgba(66, 87, 161, 0.9), rgba(66, 87, 161, 0.9));
  color: #ffffff;
  padding: 24px 32px;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .testimonials .testimonials__item {
    font-size: 16px;
    padding: 20px;
  }
}

.tactics {
  padding: 60px 0;
  background-color: #ffffff;
  color: #000;
}
.tactics .tactics__title {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .tactics .tactics__title {
    font-size: 32px;
  }
}
.tactics .tactics__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .tactics .tactics__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.tactics .tactics__item {
  background-color: #f9f9f9;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.tactics .tactics__item:hover {
  transform: translateY(-4px);
}
.tactics .tactics__item .tactics__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e9541f;
  margin-bottom: 12px;
}
.tactics .tactics__item .tactics__text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.tactics .tactics__btn {
  display: block;
  margin: 0 auto;
  padding: 14px 32px;
  border: 1px solid #e9541f;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
}

.responsible {
  padding: 60px 0;
  background-color: #f8f8f8;
}
.responsible .responsible__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}
.responsible .responsible__item {
  flex: 0 1 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsible .responsible__item .responsible__img {
  max-height: 48px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease;
}
.responsible .responsible__item .responsible__img:hover {
  transform: scale(1.05);
}
.responsible .responsible__description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.responsible .responsible__text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}
.responsible .responsible__text a.responsible__link {
  color: #e9541f;
  text-decoration: underline;
}
.responsible .responsible__text a.responsible__link:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .responsible .responsible__list {
    gap: 16px;
  }
  .responsible .responsible__item {
    flex: 0 1 80px;
  }
  .responsible .responsible__text {
    font-size: 13px;
  }
}

.footer {
  background-color: #e9541f;
  padding: 40px 0;
  color: #ffffff;
}
.footer .footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer .footer__logo {
  display: block;
  max-width: 160px;
}
.footer .footer__logo svg,
.footer .footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer .footer__list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__list .footer__item .footer__link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer__list {
    flex-direction: column;
    gap: 12px;
  }
}

.legal {
  padding: 60px 0;
  font-family: "Arial", sans-serif;
  color: #333;
  background-color: #fff;
}
.legal .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}
.legal__main-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.legal__title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
  color: #444;
  text-align: center;
}
.legal__subtitle {
  font-weight: 700;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}
.legal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}
.legal__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.legal__list > .legal__item {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}
@media (max-width: 768px) {
  .legal {
    padding: 40px 15px;
  }
  .legal__main-title {
    font-size: 32px;
  }
  .legal__title {
    font-size: 24px;
  }
  .legal__subtitle {
    font-size: 18px;
  }
  .legal__text, .legal__list > .legal__item {
    font-size: 15px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #1a1a1a;
}

.popup-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn__primary {
  background-color: #ff612f;
  color: #fff;
}

.btn__secondary {
  background-color: #ccc;
  color: #333;
}

.auth-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ff612f;
  border-radius: 8px;
  font-family: "Play", sans-serif;
  color: #ffffff;
  font-size: 16px;
}
.auth-form h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.auth-form .form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.auth-form .form-group label {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.auth-form .form-group input,
.auth-form .form-group select {
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}
.auth-form .form-group input[type=checkbox] {
  margin-right: 0.5rem;
}
.auth-form .form-group a {
  color: #ffffff;
  text-decoration: underline;
}
.auth-form .checkbox-group {
  flex-direction: row;
  align-items: center;
}
.auth-form .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.auth-form button {
  width: 100%;
  padding: 0.8rem;
  background-color: #e9541f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.auth-form button:hover {
  background-color: #c24113;
}
@media (max-width: 768px) {
  .auth-form {
    padding: 1rem;
  }
  .auth-form h2 {
    font-size: 1.5rem;
  }
}

.auth-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.auth-message .popup-content {
  background: #ff612f;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: #ffffff;
  font-family: "Play", sans-serif;
}
.auth-message .popup-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.auth-message .popup-content button {
  background-color: #e9541f;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.auth-message .popup-content button:hover {
  background-color: #c24113;
}