#body {
  background-color: #092328;
}

.header-1 {
  width: 95%;
  height: 100px;
  margin: 2.5%;
  border-radius: 100px;
  background-color: #12544e98;
  box-shadow: 0px 0px 20px 2px #12544e98;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9999999;
  flex-direction: column;
}

.header-logo {
  width: 100px;
  margin-right: 20px;
  border-radius: 100px;
}

.btn-menu-1 {
  width: 150px;
  height: 50px;
  border-radius: 100px;
  border: none;
  outline: none;
  background-color: #2A835F;
  box-shadow: 0px 0px 10px 2px #2A835F;
  transition: all ease 0.3s;
  color: white;
}

.btn-menu-1:hover {
  background-color: white;
  box-shadow: 0px 0px 10px 2px white;
  color: #2A835F;
}

.vertical-center-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* =========================
   HEADER NAV / HAMBURGER
========================= */

.header-nav-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
}

.nav-menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;

  width: 48px;
  height: 48px;

  border: none;
  outline: none;
  cursor: pointer;

  background-color: #2A835F;
  box-shadow: 0px 0px 10px 2px #2A835F;
  border-radius: 50%;

  transition: all ease 0.3s;
  z-index: 10;
}

.btn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: white;
  border-radius: 5px;
  transition: all ease 0.3s;
}

.btn-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.btn-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {

  .btn-hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;

    padding: 20px;

    background-color: #12544ee6;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    border-radius: 30px;
    box-shadow: 0px 15px 35px rgba(9, 35, 40, 0.5);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition: all ease 0.3s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu .row {
    flex-direction: column;
    gap: 12px;
  }

  .nav-menu .row>div {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .btn-menu-1 {
    width: 100%;
  }
}

.sec-main {
  width: 95%;
  height: 90vh;
  margin: 2.5% auto;

  background: linear-gradient(135deg,
      #2A835F 0%,
      #226b4e 100%);

  border-radius: 70px;
  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(9, 35, 40, 0.25);
}


/* =========================
   MAIN ROW
========================= */

.main-row {
  height: 100%;
}


/* =========================
   LEFT BOX
========================= */

.box-latest {
  width: 90%;
  height: 81vh;
  margin: 4.5%;

  position: relative;
  overflow: hidden;

  border-radius: 55px;

  background-image:
    linear-gradient(180deg,
      rgba(9, 35, 40, 0.05),
      rgba(9, 35, 40, 0.75)),
    url("../../media/img/nati_games_logo.png");

  background-size: cover;
  background-position: center;

  box-shadow:
    0 20px 50px rgba(9, 35, 40, 0.3);

  transition: 0.4s ease;
}


.box-latest:hover {
  transform: scale(1.015);

  box-shadow:
    0 25px 60px rgba(9, 35, 40, 0.45);
}


/* =========================
   IMAGE OVERLAY
========================= */

.latest-overlay {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: flex-end;

  padding: 45px;

  background: linear-gradient(to top,
      rgba(9, 35, 40, 0.85),
      rgba(9, 35, 40, 0.05) 70%);
}


.latest-badge {
  width: fit-content;

  padding: 8px 18px;

  margin-bottom: 15px;

  border-radius: 50px;

  background-color: #2A835F;
  color: white;

  font-size: 13px;
  letter-spacing: 2px;
}


.latest-overlay h3 {
  color: white;

  font-size: 42px;
  line-height: 1.05;

  margin: 0 0 25px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================
   BUTTON
========================= */

.btn-main {
  width: fit-content;

  border: none;
  outline: none;

  padding: 14px 24px;

  border-radius: 15px;

  background-color: white;
  color: #092328;

  letter-spacing: 1px;

  cursor: pointer;

  transition: 0.3s ease;
}


.btn-main i {
  margin-left: 10px;
  transition: 0.3s ease;
}


.btn-main:hover {
  background-color: #2A835F;
  color: white;

  transform: translateY(-3px);
}


.btn-main:hover i {
  transform: translateX(5px);
}


/* =========================
   RIGHT SIDE
========================= */

.box-main-left-side {
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  direction: ltr !important;

  padding: 40px;
}


.main-content {
  width: 90%;
}


/* small title */

.small-title {
  display: block;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  letter-spacing: 4px;

  text-align: center;

  margin-bottom: 20px;
}


/* =========================
   MAIN TITLE
========================= */

.h1-main {
  font-size: clamp(40px, 4vw, 65px);

  line-height: 1.05;

  color: white;

  background-color: #092328;

  padding: 25px 30px;

  border-radius: 35px;

  text-align: center;

  margin: 0;

  box-shadow:
    0 15px 35px rgba(9, 35, 40, 0.35);

  font-weight: 800;

  letter-spacing: -2px;
}


.h1-main span {
  color: #2A835F;
}


/* =========================
   EST 2021
========================= */

.est-line {
  display: flex;

  align-items: center;
  gap: 15px;

  margin: 30px 20px;
}


.est-line div {
  height: 2px;

  flex: 1;

  background-color: rgba(255, 255, 255, 0.4);
}


.h2-main {
  margin: 0;

  white-space: nowrap;

  background-color: #092328;

  color: #2A835F;

  padding: 10px 22px;

  border-radius: 15px;

  text-align: center;

  font-size: 18px;

  letter-spacing: 3px;

  box-shadow:
    0 10px 25px rgba(9, 35, 40, 0.3);
}


/* =========================
   DESCRIPTION
========================= */

.main-description {
  max-width: 500px;

  margin: 0 auto;

  text-align: center;

  color: rgba(255, 255, 255, 0.85);

  font-size: 17px;

  line-height: 1.8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .header-1 {
    height: 85px;
    padding: 0 15px;
  }

  .header-logo {
    width: 70px;
    margin-right: 10px;
  }

  .sec-main {
    height: auto;
    top: 100px;

    border-radius: 45px;
  }

  .box-latest {
    height: 60vh;
    margin: 5%;
  }

  .box-main-left-side {
    padding: 40px 20px;
  }

}


@media (max-width: 576px) {

  .header-1 {
    height: 70px;
    width: 94%;
    margin: 3% auto;
    padding: 0 10px;
    border-radius: 60px;
  }

  .header-logo {
    width: 50px;
    margin-right: 5px;
  }

  .btn-hamburger {
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    top: 65px;
  }

  .sec-main {
    width: 92%;
    margin: auto;

    top: 70px;

    border-radius: 30px;
  }

  .box-latest {
    height: 45vh;

    margin: 4%;

    width: 92%;

    border-radius: 30px;
  }

  .latest-overlay {
    padding: 25px;
  }

  .latest-overlay h3 {
    font-size: 30px;
  }

  .h1-main {
    font-size: 34px;

    padding: 20px;

    border-radius: 25px;
  }

  .main-content {
    width: 100%;
  }

  .est-line {
    margin: 25px 0;
  }

}

/* =========================
   ABOUT US
========================= */

.sec-about-us {

  width: 95%;
  min-height: 100vh;

  margin: 280px auto 100px;

  padding: 100px 5%;

  position: relative;

  background-color: #12343a;

  border-radius: 80px;

  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(9, 35, 40, 0.3);

}


/* Decorative circle */

.sec-about-us::before {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -250px;
  right: -150px;

  border-radius: 50%;

  border: 80px solid rgba(42, 131, 95, 0.08);

}


/* =========================
   HEADER
========================= */

.about-header {

  position: relative;

  z-index: 2;

  max-width: 750px;

  margin: 0 auto 80px;

  text-align: center;

}


.about-label {

  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background-color: #2A835F;

  color: white;

  font-size: 12px;

  font-weight: bold;

  letter-spacing: 4px;

  margin-bottom: 20px;
}


.about-header h2 {

  margin: 0;

  color: white;

  font-size: clamp(55px, 7vw, 100px);

  font-weight: 900;

  line-height: 0.9;

  letter-spacing: -5px;

}


.about-header h2 span {

  color: #2A835F;

}


.about-header p {

  max-width: 600px;

  margin: 30px auto 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 16px;

  line-height: 1.8;

}


/* =========================
   TEAM
========================= */

.team-container {

  position: relative;

  z-index: 2;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 30px;

}


/* =========================
   TEAM CARD
========================= */

.team-card {

  width: 31%;

  min-height: 500px;

  position: relative;

  overflow: hidden;

  background-color: #12343a;

  border-radius: 40px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.2);

  transition: 0.4s ease;

}


.team-card:hover {

  transform: translateY(-15px);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35);

}


/* Middle card */

.team-card-main {

  min-height: 550px;

  transform: translateY(-25px);

  border: 2px solid #2A835F;

}


.team-card-main:hover {

  transform: translateY(-40px);

}


/* =========================
   MEMBER IMAGE
========================= */

.member-image {

  width: 100%;

  height: 340px;

  overflow: hidden;

  position: relative;

  background-color: #2A835F;

}


.member-image::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      #12343a,
      transparent 45%);

}


.member-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter: grayscale(100%);

  transition: 0.5s ease;

}


.team-card:hover .member-image img {

  filter: grayscale(0%);

  transform: scale(1.06);

}


/* =========================
   MEMBER INFO
========================= */

.member-info {

  padding: 10px 30px 30px;

  position: relative;

  z-index: 3;

}


.member-info h3 {

  margin: 0;

  color: white;

  font-size: 28px;

  font-weight: 900;

  letter-spacing: 2px;

}


.member-info span {

  display: block;

  margin-top: 5px;

  color: #2A835F;

  font-size: 12px;

  font-weight: bold;

  letter-spacing: 2px;

}


.member-line {

  width: 50px;

  height: 3px;

  margin: 15px 0;

  background-color: #2A835F;

  border-radius: 10px;

}


.member-info p {

  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 14px;

  line-height: 1.7;

}


/* =========================
   BOTTOM
========================= */

.about-bottom {

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 70px;

}


.about-bottom span {

  color: rgba(255, 255, 255, 0.35);

  font-size: 11px;

  font-weight: bold;

  letter-spacing: 3px;

}


.about-bottom div {

  height: 1px;

  flex: 1;

  background-color: rgba(255, 255, 255, 0.1);

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .sec-about-us {

    padding: 80px 4%;

    border-radius: 50px;

  }

  .team-container {

    flex-wrap: wrap;

  }

  .team-card {

    width: 45%;

  }

  .team-card-main {

    transform: none;

  }

  .team-card-main:hover {

    transform: translateY(-15px);

  }

}


@media (max-width: 600px) {

  .sec-about-us {

    width: 92%;

    margin-top: 180px;

    padding: 70px 20px;

    border-radius: 35px;

  }

  .about-header {

    margin-bottom: 50px;

  }

  .about-header h2 {

    font-size: 60px;

  }

  .team-container {

    flex-direction: column;

  }

  .team-card,
  .team-card-main {

    width: 100%;

    min-height: auto;

    transform: none;

  }

  .team-card-main:hover {

    transform: translateY(-10px);

  }

  .member-image {

    height: 320px;

  }

}

.store {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-btn {
  width: min(700px, 100%);
  min-height: 180px;

  display: flex;
  align-items: center;
  gap: 25px;

  padding: 30px 40px;

  text-decoration: none;
  color: #fff;
  background-color: #12343a;

  border: 2px solid #2A835F;
  border-radius: 20px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* خط نور بالای دکمه */
.store-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: #2A835F;

  box-shadow: 0 0 15px #2A835F;
}

/* افکت هاور */
.store-btn:hover {
  color: #fff;
  transform: translateY(-8px) scale(1.02);
}

/* آیکون */
.store-btn-icon {
  width: 85px;
  height: 85px;

  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #2A835F;
  border-radius: 16px;

  font-size: 38px;
}

/* متن */
.store-btn-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.store-btn-text strong {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 3px;
}

.store-btn-text small {
  font-size: 16px;
  color: #999;
}

/* فلش */
.store-arrow {
  margin-right: auto;
  font-size: 28px;
  color: #2A835F;

  transition: 0.3s ease;
}

.store-btn:hover .store-arrow {
  transform: translateX(-8px);
}

/* موبایل */
@media (max-width: 576px) {

  .store {
    padding: 50px 15px;
  }

  .store-btn {
    min-height: 140px;
    padding: 20px;
    gap: 15px;
  }

  .store-btn-icon {
    width: 65px;
    height: 65px;
    font-size: 27px;
  }

  .store-btn-text strong {
    font-size: 28px;
  }

  .store-btn-text small {
    font-size: 13px;
  }

  .store-arrow {
    font-size: 20px;
  }
}