* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #34675c;
  background-color: #f8f9fa;
}

.header {
  background: linear-gradient(135deg, #4cb5f5 0%, #34675c 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(76, 181, 245, 0.3);
}

.header__container__cont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header__link:hover {
  color: #b3c100;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.header__burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.burger__line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.header__burger.active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  background: linear-gradient(45deg, #f8f9fa 0%, #b7b8b6 50%, #4cb5f5 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(76, 181, 245, 0.1),
    rgba(179, 193, 0, 0.1)
  );
  opacity: 0.7;
}

.hero__container__n {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #34675c;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
  font-size: 1.3rem;
  color: #34675c;
  text-align: justify;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.__offer__wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.__offer__ {
  background: #ffffff;
  border: 2px solid #b7b8b6;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(76, 181, 245, 0.1);
}

.__offer__:hover {
  border-color: #4cb5f5;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(76, 181, 245, 0.2);
}

.__offer____logo {
  width: 180px;
  height: 80px;
  border-radius: 15px;
  object-fit: contain;
  flex-shrink: 0;
  background: linear-gradient(135deg, #4cb5f5, #b7b8b6);
  padding: 10px;
}

.__offer____left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.__offer____right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.__offer____bonus {
  font-size: 1.5rem;
  font-weight: bold;
  color: #34675c;
  flex: 1;
}

.__offer____rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #4cb5f5, #b3c100);
  padding: 1rem;
  border-radius: 20px;
  min-width: 80px;
  color: white;
  text-align: center;
  position: relative;
}

.rating__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #b3c100 0%,
    #b3c100 98%,
    #34675c 98%,
    #34675c 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rating__circle::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
}

.rating__score {
  font-weight: bold;
  color: #34675c;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.rating__label {
  font-size: 0.7rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.__offer____button {
  background: linear-gradient(135deg, #4cb5f5, #34675c);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(76, 181, 245, 0.3);
}

.__offer____button:hover {
  background: linear-gradient(135deg, #b3c100, #4cb5f5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(179, 193, 0, 0.4);
}

.content {
  padding: 4rem 0;
  background: #ffffff;
}

.content__container__n {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.content__title {
  font-size: 2.5rem;
  color: #34675c;
  margin-bottom: 2rem;
}

.content__text__n {
  font-size: 1.2rem;
  color: #34675c;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: justify;
}

.content__subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #4cb5f5;
}

.content__links {
  margin-bottom: 20px;
}

.content__links ul {
  list-style-type: none;
  padding-left: 0;
}

.content__links ul li {
  margin-bottom: 10px;
}

.content__link {
  text-decoration: none;
  font-size: 1.1rem;
  color: #4cb5f5;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  display: inline-block;
}

.content__link:hover {
  color: #34675c;
  background: rgba(76, 181, 245, 0.1);
  transform: translateX(5px);
}

.__gallery__ {
  padding: 4rem 0;
  background: linear-gradient(135deg, #b7b8b6 0%, #4cb5f5 100%);
}

.__gallery____container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.__gallery____grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.__gallery____item {
  display: block;
  transition: transform 0.3s ease;
}

.__gallery____image {
  width: 80%;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.__gallery____item:hover .__gallery____image {
  transform: scale(1.05);
}

.footer {
  background: linear-gradient(135deg, #34675c 0%, #4cb5f5 100%);
  padding: 3rem 0 2rem;
  color: #ffffff;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.footer__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer__link:hover {
  color: #b3c100;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer__additional {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__additional .footer__link {
  background: rgba(179, 193, 0, 0.2);
}

.footer__text {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .__offer__ {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .__offer____logo {
    width: 70px;
    height: 70px;
  }

  .__offer____bonus {
    font-size: 1.3rem;
  }

  .__offer____button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .__gallery____grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__links {
    align-items: center;
  }

  .hero__subtitle {
    display: none;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4cb5f5 0%, #34675c 100%);
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }

  .header__link {
    padding: 1rem 2rem;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__link:last-child {
    border-bottom: none;
  }

  .header__burger {
    display: flex;
  }

  .header {
    position: relative;
  }
}

@media (max-width: 640px) {
  .__offer__ {
    flex-wrap: wrap;
  }

  .__offer____left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .__offer____right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .__offer____bonus {
    font-size: 1.2rem;
    text-align: left;
  }

  .__offer____rating {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .header__logo {
    font-size: 2rem;
  }

  .__offer__ {
    padding: 1.2rem;
  }

  .__offer____logo {
    width: 145px;
    height: 60px;
  }

  .__offer____bonus {
    font-size: 1.1rem;
  }

  .__offer____button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
