@import url('../../assets-custom/root.css');
/* <!-- Section-1: How It works START  --> */

.index-section-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 136px;
  padding-bottom: 52px;
}
.index-section-1-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.index-section-1-header h1 {
  font-weight: 700;
  color: var(--ea-primary-color);
}
.index-section-1-header p {
  font-weight: 500;
  color: var(--ea-text-color-2);
  text-align: center;
  max-width: 831px;
}
.index-section-1-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-section-1-left-container img {
  width: 100%;
}
.index-section-1-left-container {
  width: 50%;
}
.index-section-1-right-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  /* border: 1px solid red; */
  padding: 23px;
  padding-top: 78px;
  padding-bottom: 45px;
}
.index-section-1-right-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.index-section-1-right-header > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.index-section-1-right-header-card-img img {
  width: 35px;
  height: 35px;
}
.index-section-1-right-list-details {
  display: flex;
  flex-direction: column;
}
.index-section-1-right-list-details > div {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.index-section-1-right-list-img img {
  width: 22px;
  margin-top: 5px;
}
.index-section-1-right-header p {
  color: #858585;
}
@media screen and (max-width: 900px) {
  .index-section-1-container {
    flex-direction: column;
  }
  .index-section-1-left-container {
    width: 100%;
  }
  .index-section-1-right-container {
    width: 100%;
  }
  .index-section-1-right-container {
    padding-left: 0;
    padding-right: 0;
  }
  .index-section-1 {
    padding-top: 86px;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 400px) {
  .index-section-1-right-header {
    flex-direction: column;
  }
  .index-section-1-right-container {
    padding-top: 40px;
  }
}

/* <!-- Section-2: Our Arcade Games START  --> */
.index-section-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 82px;
  padding-top: 82px;
}
.index-section-2 > h1 {
  font-weight: 700;
  color: var(--ea-primary-color);
  text-align: center;
}
.index-section-2-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.index-section-2-cards > div {
  display: flex;
  flex-direction: column;
  background: var(--index-section-2-card-background-image) center/cover no-repeat;
  color: white;
  text-align: center;
  border-radius: 15px;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  height: 295px;
  width: 269px;
}
.index-section-2-cards > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-color); /* Overlay color */
  z-index: 0;
  border-radius: 15px;
}
.index-section-2-card-img {
  background-color: var(--ea-primary-color);
  border-radius: 17px;
  padding: 17px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.index-section-2-card-img img {
  width: 47px;
}
.index-section-2-cards > div h3 {
  z-index: 10;
  text-align: left;
  font-weight: 700;
  font-size: 22px;
  color: var(--ea-text-color-1);
  margin-top: 10px;
}
.index-section-2-cards > div p {
  z-index: 10;
  text-align: left;
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-1);
}
@media screen and (max-width: 750px) {
  .index-section-2-cards > div {
    width: 100%;
    height: auto;
  }
}

/* Section-03: How to Play  */
.index-section-3 {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.index-section-3-heading {
  font-weight: 700;
  color: var(--ea-primary-color);
}

.index-section-3-subheading {
  font-weight: 500;
  color: var(--ea-primary-color);
  text-align: center;
  /* max-width: 831px; */
  margin-top: 22px;
  margin-bottom: 47px;
}

.index-section-3-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.index-section-3-step {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.index-section-3-step-number {
  font-size: 18px;
  font-weight: bold;
  color: var(--ea-primary-color);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-section-3-step-number:not(:last-child) > div::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 52px;
  /* right: 0; */
  right: 0;
  height: 1px;
  border-top: 2px dashed var(--ea-primary-color);
  width: 268px;
}
@media screen and (max-width: 990px) {
  .index-section-3-step-number:not(:last-child) > div::before {
    width: 228px;
  }
}
@media screen and (max-width: 768px) {
  .index-section-3-step-number:not(:last-child) > div::before {
    content: unset;
  }
}
.index-section-3-step-3 .index-section-3-step-number > div::before {
  content: unset;
}
.index-section-3-step-number div {
  width: 50px;
  /* border: 1px solid; */
  position: relative;
  border-radius: 50%;
  height: 50px;
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ea-third-color);
}

.index-section-3-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.index-section-3-step-title {
  font-weight: 700;
  font-size: 22px;
}

.index-section-3-step-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-2);
}

/* Responsiveness */
@media (max-width: 768px) {
  .index-section-3-steps {
    flex-direction: column;
  }

  .index-section-3-step {
    max-width: 100%;
  }
}
/* Section-04: Attention Game  */
.index-section-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.index-section-4-heading {
  font-weight: 700;
  color: var(--ea-primary-color);
}
.index-section-4-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 126px;
}
.index-section-4-card-1,
.index-section-4-card-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--ea-primary-color);
  border-radius: 10px;
  gap: 8px;
  padding: 21px;
}
.index-section-4-card-customer-image {
  margin-top: -67px;
}
.index-section-4-card-customer-image img {
  width: 126px;
}
.index-section-4-left-com {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.index-section-4-right-com {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}
.index-section-4-card-about {
  color: var(--ea-text-color-1);
  font-weight: 400;
  font-size: 13px;
}
.index-section-4-card-writter {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  color: var(--ea-text-color-1);
  font-weight: 400;
  font-size: 13px;
}
.index-section-4-card-writter p {
  font-size: 11px;
}
.index-section-4-left-arrow,
.index-section-4-right-arrow {
  background: var(--ea-primary-color);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.index-section-4-left-arrow img,
.index-section-4-right-arrow img {
  width: 15px;
}
@media screen and (max-width: 500px) {
  .index-section-4-left-arrow,
  .index-section-4-right-arrow {
    display: none;
  }
  .index-section-4-cards {
    flex-direction: column;
  }
  .index-section-4-cards {
    gap: 58px;
    margin-top: 83px;
  }
}
