* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #265c00;
  background-color: #fdffff;
}

.header {
  background: linear-gradient(135deg, #265c00 0%, #68a225 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(38, 92, 0, 0.3);
  position: relative;
}

.header__container__fun {
  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: #fdffff;
  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: #fdffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(179, 222, 129, 0.2);
  border: 2px solid transparent;
}

.header__link:hover {
  color: #265c00;
  background: #b3de81;
  border-color: #fdffff;
  transform: translateY(-2px);
}

.header__burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.burger__line {
  width: 25px;
  height: 3px;
  background: #fdffff;
  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(135deg, #b3de81 0%, #fdffff 50%, #b3de81 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.__hero__::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(104, 162, 37, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, rgba(38, 92, 0, 0.1) 0%, transparent 50%),
    radial-gradient(
      ellipse at 40% 40%,
      rgba(179, 222, 129, 0.2) 0%,
      transparent 60%
    );
  z-index: 1;
}

.__hero__::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: conic-gradient(from 0deg, #68a225, #b3de81, #68a225);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.__hero____container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.__hero____title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #265c00;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #265c00, #68a225);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.__hero____subtitle {
  font-size: 1.3rem;
  color: #265c00;
  text-align: justify;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.__offer__wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.__offer__ {
  background: linear-gradient(135deg, #fdffff 0%, #b3de81 100%);
  border: 3px solid #68a225;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(38, 92, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.__offer__::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(104, 162, 37, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.__offer__:hover::before {
  left: 100%;
}

.__offer__:hover {
  border-color: #265c00;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(38, 92, 0, 0.25);
}

.__offer____logo {
  width: 180px;
  height: 80px;
  border-radius: 15px;
  object-fit: contain;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e4ffc4 0%, #b3de81 100%);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(38, 92, 0, 0.2);
  transition: transform 0.3s ease;
}

.__offer__:hover .__offer____logo {
  transform: scale(1.05) rotate(2deg);
}

.__offer____bonus {
  font-size: 1.6rem;
  font-weight: bold;
  color: #265c00;
  flex: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.__offer____rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: rgba(179, 222, 129, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.rating__stars {
  display: flex;
  gap: 2px;
}

.rating__star {
  width: 18px;
  height: 18px;
  background: linear-gradient(45deg, #68a225, #b3de81);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  transition: transform 0.2s ease;
}

.__offer__:hover .rating__star {
  transform: scale(1.1);
}

.rating__score {
  font-weight: bold;
  color: #265c00;
  font-size: 1.1rem;
}

.__offer____button {
  background: linear-gradient(135deg, #265c00 0%, #68a225 100%);
  color: #fdffff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(38, 92, 0, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.__offer____button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.__offer____button:hover::before {
  left: 100%;
}

.__offer____button:hover {
  background: linear-gradient(135deg, #68a225 0%, #b3de81 100%);
  color: #265c00;
  border-color: #265c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 92, 0, 0.4);
}

.content {
  padding: 4rem 0;
  background: #fdffff;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(179, 222, 129, 0.1) 30%,
      rgba(179, 222, 129, 0.1) 70%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(104, 162, 37, 0.05) 30%,
      rgba(104, 162, 37, 0.05) 70%,
      transparent 70%
    );
  background-size: 60px 60px;
  z-index: 1;
}

.content::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, #b3de81 0%, transparent 70%),
    radial-gradient(circle at 70% 70%, #68a225 0%, transparent 50%);
  border-radius: 50%;
  opacity: 0.1;
  animation: rotate 10s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.content__title {
  font-size: 2.8rem;
  color: #265c00;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #265c00, #68a225);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content__text {
  font-size: 1.2rem;
  color: #265c00;
  max-width: 1000px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
  text-align: justify;
}

.content__subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #265c00;
  background: linear-gradient(45deg, #265c00, #68a225);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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: #68a225;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(179, 222, 129, 0.2);
  display: inline-block;
  border: 2px solid transparent;
}

.content__link:hover {
  color: #fdffff;
  background: #68a225;
  border-color: #265c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(104, 162, 37, 0.3);
}

.__gallery__1 {
  padding: 4rem 0;
  background: linear-gradient(135deg, #b3de81 0%, #68a225 100%);
  position: relative;
}
.__gallery__1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: radial-gradient(
    ellipse 100vw 50px at 50% 100%,
    #fdffff 0%,
    transparent 70%
  );
  z-index: 1;
}

.__gallery__1__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.__gallery__1__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.__gallery__1__item {
  display: block;
  transition: transform 0.3s ease;
}

.__gallery__1__image {
  width: 80%;
  height: 150px;
  object-fit: contain;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(253, 255, 255, 0.1);
  padding: 1rem;
}

.__gallery__1__item:hover {
  transform: scale(1.05);
}

.footer {
  background: linear-gradient(135deg, #265c00 0%, #68a225 100%);
  position: relative;
  color: #fdffff;
  padding: 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: radial-gradient(
    ellipse 100vw 50px at 50% 0%,
    #fdffff 0%,
    transparent 70%
  );
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 30px;
  background: radial-gradient(
    ellipse 80vw 30px at 50% 0%,
    rgba(179, 222, 129, 0.3) 0%,
    transparent 70%
  );
  z-index: 2;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem 2rem;
  position: relative;
  z-index: 3;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section {
  text-align: center;
}

.footer__section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #b3de81;
  position: relative;
}

.footer__section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #b3de81, #fdffff);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__link {
  color: #fdffff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  background: rgba(179, 222, 129, 0.1);
  border: 2px solid transparent;
  display: inline-block;
  min-width: 150px;
  text-align: center;
}

.footer__link:hover {
  color: #265c00;
  background: #b3de81;
  border-color: #fdffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  width: 50px;
  height: 50px;
  background: rgba(179, 222, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdffff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer__social-link:hover {
  background: #b3de81;
  color: #265c00;
  border-color: #fdffff;
  transform: translateY(-3px) scale(1.1);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(179, 222, 129, 0.3);
}

.footer__text {
  font-size: 0.9rem;
  color: #b3de81;
  margin-bottom: 1rem;
}

.footer__decorative {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__decorative-item {
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #b3de81, #fdffff);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.footer__decorative-item:nth-child(2) {
  animation-delay: 0.5s;
}

.footer__decorative-item:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .__hero____title {
    font-size: 2.5rem;
  }

  .__hero____subtitle {
    display: none;
  }

  .__offer__ {
    gap: 1.5rem;
    padding: 2rem;
  }

  .__offer____logo {
    width: 140px;
    height: 70px;
  }

  .__offer____bonus {
    font-size: 1.4rem;
  }

  .__offer____button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .__gallery__1__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #265c00 0%, #68a225 100%);
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px 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(179, 222, 129, 0.3);
  }

  .header__link:last-child {
    border-bottom: none;
  }

  .header__burger {
    display: flex;
  }

  .header {
    position: relative;
  }
  .footer__links {
    flex-wrap: wrap;
  }
}

@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;
    margin-right: -96px;
  }
}

@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;
  }

  .footer__social {
    gap: 1rem;
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
