* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f2f6f5;
  color: #0b4e31;
  line-height: 1.6;
}


.header-green {
  background: linear-gradient(180deg, #0b4e31, #083e28);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  position: fixed;
  top: 0; width: 100%; z-index: 1000;
}
.header-green__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-green__logo img {
  height: 40px;
}

.header-green__nav {
  flex-grow: 1;
  margin: 0 30px;
}
.header-green__list {
  list-style: none;
  display: flex;
  gap: 24px;
}
.header-green__list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.header-green__list a:hover {
  color: #ffd900;
}

/* Иконки и кнопки в хедере */
.header-green__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-green__icon {
  width: 40px;
  height: 40px;
  background-color: #f2f6f5;
  color: #0b4e31;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
}
.header-green__btn {
  height: 40px;
  padding: 0 16px;
  background-color: #ffd900;
  color: #0b4e31;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-green__btn.login {
  background-color: #30b24a;
  color: #ffffff;
}

.header-green__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.header-green__burger span {
  width: 24px; height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header-green__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.header-green__burger.open span:nth-child(2) {
  opacity: 0;
}
.header-green__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.header-green__mobile {
  display: none;
  background: #0b4e31;
}
.header-green__mobile.open {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-green__mobile-nav {
  list-style: none;
  padding: 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.header-green__mobile-nav a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
}
.header-green__mobile-icons {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
}
.header-green__mobile-icons .header-green__icon {
  background-color: #f2f6f5;
}
.header-green__mobile-icons .header-green__btn {
  width: auto;
}

.header-icon {
  background-color: #1f7a52;
  padding: 8px;
  border-radius: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.header-icon .gift-notice,
.header-icon .dollar-notice {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ffd900;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #0b4e31;
}

@media (max-width: 768px) {
  .header-icon {
    display: none;
  }

  .header-green__mobile-icons .header-icon {
    display: inline-flex;
  }

  .header-green__nav {
    display: none;
  }
  .header-green__actions .header-green__btn {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header-green__burger {
    display: flex;
  }
  .header-green__container {
    padding: 14px 16px;
  }
}

.slider-green {
  max-width: 1300px;
  margin: 70px auto 40px;
  overflow: hidden;
  border-radius: 1px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slider-green__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-green__slide {
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.slider-green__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.slider-green__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  padding-left: 60px;
  z-index: 1;
}

.slider-green__content {
  color: #ffffff;
  max-width: 400px;
  z-index: 2;
}

.slider-green__content span {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
  color: #ffd900;
}

.slider-green__content p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #f2f6f5;
}

.slider-green__btn {
  display: inline-block;
  background-color: #30b24a;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.slider-green__btn:hover {
  background-color: #26953c;
}

@media (max-width: 768px) {
  .slider-green__slide {
    height: 240px;
  }

  .slider-green__overlay {
    padding-left: 20px;
    justify-content: flex-start;
    text-align: left;
  }

  .slider-green__content {
    max-width: 90%;
  }

  .slider-green__content span {
    font-size: 22px;
  }

  .slider-green__content p {
    font-size: 14px;
  }

  .slider-green__btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.topgames-green {
  max-width: 1300px;
  margin: -40px auto;
  padding: 24px;
  background: #0b4e31;
  border-radius: 1px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid #30b24a;
}

.topgames-green__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.topgames-green__title {
  font-size: 22px;
  font-weight: 800;
  color: #ffd900;
  text-transform: uppercase;
}

.topgames-green__more {
  color: #30b24a;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.3s;
}

.topgames-green__more:hover {
  color: #ffffff;
}

.topgames-green__wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-color: #30b24a #0b4e31;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.topgames-green__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  min-width: max-content;
}

.topgames-green__item {
  width: 100px;
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.topgames-green__item:hover {
  transform: translateY(-4px);
}

.topgames-green__item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #f2f6f5;
}

.topgames-green__actions {
  background: transparent;
  padding-top: 2px;
  margin-top: -4px;
  display: none;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.topgames-green__actions a {
  flex: 1;
  text-align: center;
  background-color: #30b24a;
  color: #fff;
  font-weight: 600;
  padding: 4px 0;
  text-decoration: none;
  font-size: 11px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s;
}

.topgames-green__actions a:hover {
  background-color: #27963f;
}

@media (hover: hover) {
  .topgames-green__item:hover .topgames-green__actions {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 78, 49, 0.85);
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .topgames-green__actions {
    display: flex;
    position: static;
    background: none;
    padding-top: 2px;
    background: #000;
  }
}

.content-section-green {
  max-width: 1300px;
  margin: 40px auto;
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 1px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  color: #0b4e31;
  font-family: "Lato", sans-serif;
  line-height: 1.6;
}

.content-section-green h1,
.content-section-green h2,
.content-section-green h3 {
  margin-bottom: 20px;
  color: #0b4e31;
}

.content-section-green h1 {
  font-size: 28px;
  font-weight: 700;
}

.content-section-green h2 {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #f2f6f5;
  padding-bottom: 8px;
}

.content-section-green h3 {
  font-size: 20px;
  font-weight: 500;
}

.content-section-green p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333;
}

.content-section-green img {
  max-width: 100%;
  border-radius: 6px;
  margin: 20px auto;
  display: block;
}

.content-section-green ul,
.content-section-green ol {
  margin: 16px 0;
  padding-left: 20px;
}

.content-section-green li {
  margin-bottom: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .content-section-green {
    padding: 20px 16px;
  }
  .content-section-green h1 {
    font-size: 24px;
  }
  .content-section-green h2 {
    font-size: 20px;
  }
  .content-section-green h3 {
    font-size: 18px;
  }
  .content-section-green p,
  .content-section-green li {
    font-size: 15px;
  }
}

main.content-section-green table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 2px solid #30b24a;
  border-radius: 6px;
  overflow: h   idden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

main.content-section-green td {
  padding: 14px 20px;
  border-bottom: 1px solid #f2f6f5;
  font-size: 16px;
  color: #0b4e31;
}

main.content-section-green tr:nth-child(odd) {
  background: #f2f6f5;
}

main.content-section-green tr:last-child td {
  border-bottom: none;
}

main.content-section-green h2 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #ffd900;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  main.content-section-green table {
    font-size: 15px;
    overflow-x: auto;
    display: block;
  }

  main.content-section-green td {
    padding: 12px 16px;
  }
}

main.content-section-green section {
  background: #ffffff;
  border: 2px solid #30b24a;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

main.content-section-green h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ffd900;
  font-weight: 700;
  text-transform: uppercase;
}

main.content-section-green section > div {
  border-bottom: 1px solid #f2f6f5;
  padding: 14px 0;
  cursor: pointer;
  position: relative;
}

main.content-section-green section > div > p:first-of-type {
  font-weight: 700;
  color: #0b4e31;
  margin-bottom: 6px;
  position: relative;
  padding-right: 24px;
}

main.content-section-green section > div > p:first-of-type::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #30b24a;
  transition: transform 0.3s;
}

main.content-section-green section > div.active > p:first-of-type::after {
  content: '−';
  transform: rotate(180deg);
}

main.content-section-green section > div > p:last-of-type {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #0b4e31;
}

main.content-section-green section > div.active > p:last-of-type {
  max-height: 300px;
  margin-top: 8px;
}

.footer-green {
  background: #0b4e31;
  color: #fff;
  padding: 60px 20px 30px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.footer-green__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-green__brand img {
  height: 50px;
  margin-bottom: 12px;
}

.footer-green__brand p {
  font-size: 14px;
  color: #f2f6f5;
  line-height: 1.6;
}

.footer-green__nav span,
.footer-green__contact span,
.footer-green__social span {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #ffd900;
}

.footer-green__nav ul,
.footer-green__contact ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #f2f6f5;
}

.footer-green__nav li,
.footer-green__contact li {
  margin-bottom: 8px;
}

.footer-green__nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-green__nav a:hover {
  color: #ffd900;
}

.footer-green__icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-green__icons svg {
  display: block;
  width: 28px;
  height: 28px;
  transition: opacity 0.3s;
}
.footer-green__icons svg:hover {
  opacity: 0.8;
}

.footer-green__bottom {
  border-top: 1px solid #30b24a;
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #f2f6f5;
}

@media (max-width: 768px) {
  .footer-green {
    padding: 40px 16px 20px;
  }
  .footer-green__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-green__brand p,
  .footer-green__nav li,
  .footer-green__contact li {
    font-size: 14px;
  }
  .footer-green__icons {
    justify-content: center;
  }
  .footer-green__bottom {
    font-size: 12px;
    margin-top: 30px;
    padding-top: 15px;
  }
}

