:root {
  --primary-color: #472a89;
  --secondary-color: #ff0069;
  --text-light: #ffffff;
  --bg-dark: #000;
  --border-color: #2c343c;
  --text-gray: #ebebeb;
  --highlight: #ccc;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* Container class */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HEADER */

.navbar {
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.3s;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #4ea3ff;
}

.contact-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 0.5px solid #fff;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: all-small-caps;
  text-decoration: none;
}

.primary-btn {
  width: fit-content;
  height: 26px;
  border-radius: 60px;
  background: linear-gradient(
    97deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  backdrop-filter: blur(6px);
  opacity: 1;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  align-items: start;
  padding: 12px 24px 12px 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.primary-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.primary-btn::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.5s;
}

.primary-btn:hover {
  opacity: 0.95;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(45, 81, 254, 0.4);
  background: linear-gradient(
    89.05deg,
    var(--primary-color) 0.81%,
    var(--secondary-color) 99.19%
  );
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 5px 15px rgba(45, 81, 254, 0.3);
}

.primary-btn::after {
  transition: all 0.3s ease;
}

.primary-btn:hover::after {
  transform: translateX(3px);
}

.primary-btn::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: var(--text-light);
  padding-left: 10px;
}

.mobile-menu {
  display: none;
  align-items: center;
  gap: 28px;
}

.mobile-menu img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu img:hover {
  opacity: 0.8;
}

.btn-outline-mobile {
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background: var(
    --Gradient,
    linear-gradient(91deg, #4f56ff 0.72%, #ff4980 99.7%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu-close img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.mobile-menu-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}

.mobile-menu-nav {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu-item {
  color: var(--text-light);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.mobile-menu-item:hover {
  color: #4ea3ff;
  border-bottom-color: #4ea3ff;
}

/* SECTION 1 */

.hero {
  padding-block: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.hero.visible .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-text h1 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.hero.visible .hero-text h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-text h3 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.hero.visible .hero-text h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero-text p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.hero.visible .hero-text p {
  opacity: 1;
  transform: translateY(0);
}

.primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 1s;
}

.hero.visible .primary-btn {
  opacity: 1;
  transform: translateY(0);
}
.hero-wrapper {
  background-image: url("images/main-image.png");
  height: 1000px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popular-btn {
  display: flex;
  width: 207px;
  height: 49px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  gap: 10px;
  color: var(--text-gray);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  text-decoration: none;
  background-color: var(--bg-dark);
}
.primary-btn-overlay {
  border-radius: 60px;
  background: linear-gradient(
    97deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  backdrop-filter: blur(6px);
  padding: 1px;
  max-width: fit-content;
}
.connect {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.hero-text h1 {
  text-align: center;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    97deg,
    #7846ea 36.38%,
    var(--secondary-color) 115.7%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 26px;
  background: linear-gradient(
    98deg,
    #fff 21.07%,
    rgba(255, 255, 255, 0) 126.01%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  color: var(--text-gray);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  max-width: 1062px;
  padding-bottom: 36px;
}

/* section 2 */
.game-concept {
  padding-block: 80px;
  border-block: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.game-concept.visible {
  opacity: 1;
  transform: translateY(0);
}

.game-concept-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.game-concept.visible .game-concept-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.game-concept-wrapper h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.game-concept.visible .game-concept-wrapper h2 {
  opacity: 1;
  transform: translateY(0);
}

.game-concept-wrapper p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.game-concept.visible .game-concept-wrapper p {
  opacity: 1;
  transform: translateY(0);
}

.game-concept-wrapper .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.game-concept.visible .game-concept-wrapper .primary-btn {
  opacity: 1;
  transform: translateY(0);
}
.game-concept-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: auto;
}
.game-concept-wrapper h2 {
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.game-concept-wrapper p,
span {
  color: var(--text-gray);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 980px;
}

.game-concept-wrapper span {
  padding-bottom: 40px;
}

/* section 3 */
.why-you-love {
  padding-block: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.why-you-love.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-you-love-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.why-you-love.visible .why-you-love-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.why-you-love-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.why-you-love.visible .why-you-love-card {
  opacity: 1;
  transform: translateY(0);
}

.why-love-features {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.why-you-love.visible .why-love-features {
  opacity: 1;
  transform: translateY(0);
}

.single-feature {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.why-you-love.visible .single-feature:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.why-you-love.visible .single-feature:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.why-you-love.visible .single-feature:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.why-you-love.visible .single-feature:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.why-you-love-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.why-you-love-card {
  display: flex;
  padding: 72px 48px;
  align-items: center;
  gap: 50px;
  border-radius: 30px;
  /* border: 1px solid rgba(37, 37, 48, 0.67); */
  background: linear-gradient(
      89deg,
      rgba(0, 0, 0, 0.5) 8.55%,
      rgba(71, 42, 137, 0.5) 51.16%,
      rgba(255, 0, 105, 0.5) 98.66%
    ),
    var(--bg-dark);
}
.why-you-love-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.why-you-love-text h3 {
  color: #ffffffe5;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}
.why-you-love-text p {
  color: #ffffffb2;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}
.why-love-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.samsung {
  max-width: 100%;
  height: auto;
  display: block;
}
.single-feature {
  display: flex;
  padding: 36px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  border-radius: 12px;
  background-color: var(--bg-dark);
}
.single-feature-overlay {
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(to bottom, #9d9d9d, #242424);
  backdrop-filter: blur(32.93467330932617px);
}
.icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.text-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}
.text-row h3 {
  color: #ffffffe5;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.text-row p {
  color: #ffffffb2;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  min-height: 90px;
}
.arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  gap: 10px;
  color: var(--text-gray);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  text-decoration: none;
  background-color: var(--bg-dark);
  padding: 8px 24px;
}
.arrow-btn-overlay {
  border-radius: 60px;
  background: linear-gradient(
    97deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  backdrop-filter: blur(6px);
  padding: 1px;
}

.arrow-btn::after {
  content: url("images/Vector.svg");
  width: 16px;
  opacity: 1;
  color: var(--text-light);
}
.key-features-mobile {
  display: none;
}

/* section 4 */
.who-can-play {
  padding-block: 80px;
  background-image: url("images/who-can-play-bg.png");
  border-block: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.who-can-play.visible {
  opacity: 1;
  transform: translateY(0);
}

.who-can-play-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.who-can-play.visible .who-can-play-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.who-can-play-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.who-can-play.visible .who-can-play-text {
  opacity: 1;
  transform: translateY(0);
}

.who-can-play-cards {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.who-can-play.visible .who-can-play-cards {
  opacity: 1;
  transform: translateY(0);
}

.who-can-play-single-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.who-can-play.visible .who-can-play-single-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.who-can-play.visible .who-can-play-single-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.who-can-play.visible .who-can-play-single-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.who-can-play-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 58px;
}
.who-can-play-text h2 {
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kid-tab {
  display: none;
}
.who-can-play-text p {
  color: var(--highlight);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 40px;
}
.who-can-play-cards {
  display: flex;
  width: 887px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}
.who-can-play-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10.915px;
  padding: 1px;
  background: linear-gradient(to bottom, #9d9d9d, #242424);
  backdrop-filter: blur(32.93467330932617px);
}
.who-can-play-single-card {
  background-color: var(--bg-dark);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-radius: 10.915px;
}
.who-can-play-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}
.who-can-play-card-subheading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.who-can-play-card-subheading h4 {
  color: #ffffffe5;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.who-can-play-card-content p {
  color: #ffffffb2;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* section 5 */

.features {
  padding-block: 100px;
  text-align: center;
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.features-heading {
  padding-bottom: 90px;
}
.key-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.key-features h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.key-features p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 466px;
}
.key-features-left {
  display: flex;
  flex-direction: column;
  align-items: end;
  /* gap: 150px; */
}
.single-key-features-right {
  text-align: start;
  padding-bottom: 120px;
}
.single-key-features-left {
  text-align: end;
  padding-bottom: 120px;
}
.key-features-right {
  display: flex;
  flex-direction: column;
  align-items: start;
  /* gap: 150px; */
}
.scientist {
  /* margin-top: 80px; */
  width: 450px;
}
.adjust {
  padding-right: 100px;
}
.gamified {
  padding-left: 50px;
}
.interface {
  padding-left: 100px;
}
.features-heading h2 {
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-heading p {
  color: var(--text-gray);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.features-content {
  background: url("images/features-bg2.png") no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
}

.features-section__content {
  display: flex;
}

.mobile-features {
  display: flex;
  justify-content: center;
}

.features-rows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.features-start {
  text-align: end;
  max-width: 400px;
  width: 30%;
}

.extra-space {
  width: 30%;
}

.features-end {
  text-align: start;
  max-width: 590px;
  width: 30%;
}

.features-start h4,
.features-end h4 {
  color: #2995fe;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.features-start p,
.features-end p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.space {
  justify-content: space-around;
}

.features-section {
  padding-top: 80px;
  background-image: url("images/feature-bg.png");
  height: 1103px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.features-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.features-section.visible .features-heading {
  opacity: 1;
  transform: translateY(0);
}

.key-features {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.features-section.visible .key-features {
  opacity: 1;
  transform: translateY(0);
}

.key-features-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out 0.6s;
}

.features-section.visible .key-features-left {
  opacity: 1;
  transform: translateX(0);
}

.key-features-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out 0.8s;
}

.features-section.visible .key-features-right {
  opacity: 1;
  transform: translateX(0);
}

.single-key-features-left,
.single-key-features-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.features-section.visible .single-key-features-left:nth-child(1),
.features-section.visible .single-key-features-right:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.features-section.visible .single-key-features-left:nth-child(2),
.features-section.visible .single-key-features-right:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.features-section.visible .single-key-features-left:nth-child(3),
.features-section.visible .single-key-features-right:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.features-section__content {
  display: flex;
}

.features-section__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 20;
}

.features-section__list-left {
  text-align: end;
  margin-right: -129px;
}

.features-section__list-right {
  text-align: start;
  margin-left: -130px;
}

.features-section__phone--mobile {
  display: none;
}

.features-section__phone--left {
  max-width: 100%;
  display: block;
  height: auto;
}

.first-item-left {
  margin-right: -80px;
}

.first-item-right {
  margin-left: -80px;
}

.features-section__item h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  padding-bottom: 8px;
}

.features-section__item p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.features-section__content {
  font-size: 21px;
}

/* section 6 */
.rare-items {
  padding-block: 80px;
  border-block: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.rare-items.visible {
  opacity: 1;
  transform: translateY(0);
}

.rare-items-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.rare-items.visible .rare-items-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.rare-items-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.rare-items.visible .rare-items-content {
  opacity: 1;
  transform: translateY(0);
}

.rare-items-content h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.rare-items.visible .rare-items-content h2 {
  opacity: 1;
  transform: translateY(0);
}

.rare-items-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.rare-items.visible .rare-items-content p {
  opacity: 1;
  transform: translateY(0);
}

.rare-items-content .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 1s;
}

.rare-items.visible .rare-items-content .primary-btn {
  opacity: 1;
  transform: translateY(0);
}
.rare-items-wrapper {
  display: flex;
  padding: 72px;
  gap: 30px;
  align-items: center;
  border-radius: 30px;
  background: linear-gradient(
      89deg,
      rgba(0, 0, 0, 0.5) 8.55%,
      rgba(71, 42, 137, 0.5) 51.16%,
      rgba(255, 0, 105, 0.5) 98.66%
    ),
    var(--bg-dark);
}
.rare-items-tab-img {
  display: none;
}
.rare-items-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rare-items-content p {
  color: var(--highlight);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 40px;
}

/* section 7 */
.game-works {
  padding-top: 80px;
  border-bottom: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.game-works.visible {
  opacity: 1;
  transform: translateY(0);
}

.game-works-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.game-works.visible .game-works-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.game-works-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.game-works.visible .game-works-content {
  opacity: 1;
  transform: translateY(0);
}

.game-works-blocks {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.game-works.visible .game-works-blocks {
  opacity: 1;
  transform: translateY(0);
}

.game-works-single-block {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.game-works.visible .game-works-single-block:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.game-works.visible .game-works-single-block:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.game-works.visible .game-works-single-block:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.game-works.visible .game-works-single-block:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.game-works-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
}
.game-works-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}
.game-works-mobile-img {
  display: none;
}
.hello-img {
  display: none;
}
.game-works-text h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 660px;
}
.game-works-text p {
  color: var(--highlight);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 560px;
}
.game-works-img {
  display: block;
  width: 100%;
  height: auto;
}
.game-works-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
}
.single-block-overlay {
  border-radius: 10.915px;
  padding: 1px;
  background: linear-gradient(to bottom, #9d9d9d, #242424);
  backdrop-filter: blur(32.93467330932617px);
}
.game-works-single-block {
  display: flex;
  padding: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  border-radius: 10.915px;
  background: var(--bg-dark);
}
.game-works-single-block h4 {
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.24px;
}
.game-works-single-block p {
  color: rgba(255, 255, 255, 0.75);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* section 8 */
.learning-fun {
  padding-block: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.learning-fun.visible {
  opacity: 1;
  transform: translateY(0);
}

.learning-fun-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.learning-fun.visible .learning-fun-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.learning-fun-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.learning-fun.visible .learning-fun-content {
  opacity: 1;
  transform: translateY(0);
}

.learning-fun-content h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.learning-fun.visible .learning-fun-content h2 {
  opacity: 1;
  transform: translateY(0);
}

.learning-fun-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.learning-fun.visible .learning-fun-content p {
  opacity: 1;
  transform: translateY(0);
}

.learning-fun-list {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 1s;
}

.learning-fun.visible .learning-fun-list {
  opacity: 1;
  transform: translateY(0);
}

.learning-fun-content .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 1.2s;
}

.learning-fun.visible .learning-fun-content .primary-btn {
  opacity: 1;
  transform: translateY(0);
}
.learning-fun-wrapper {
  display: flex;
  align-items: center;
  gap: 56px;
}
.learning-fun-content {
  display: flex;
  /* padding: 0 153.003px 127.305px 0; */
  flex-direction: column;
  align-items: flex-start;
}
.learning-fun-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 701px;
}
.learning-fun-content p {
  color: var(--highlight);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 40px;
  max-width: 701px;
}
.learning-fun-img {
  display: block;
  max-width: 100%;
  height: auto;
}
.learning-fun-list {
  list-style: none;
  padding: 0;
}
.learning-fun-list li {
  color: var(--text-gray);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  display: flex;
  align-items: flex-start;
  padding-bottom: 20px;
}

.learning-fun-list li::before {
  content: url("images/Symbol.svg");
  margin-right: 10px;
  margin-top: 6px;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

/* section 9 */
.testimonial {
  padding-block: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.testimonial.visible .testimonial-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-wrapper h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.testimonial.visible .testimonial-wrapper h2 {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.testimonial.visible .testimonials-grid {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.testimonial.visible .testimonial-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.testimonial.visible .testimonial-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.testimonial.visible .testimonial-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.testimonial.visible .testimonial-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.testimonial-wrapper h2 {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  max-width: 1350px;
  margin: auto;
  padding-bottom: 80px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: linear-gradient(
    180deg,
    #171726 0%,
    #25244b 20.29%,
    #332444 30.43%,
    #35233f 40.57%,
    #391c29 65.85%,
    #171214 100%
  );
}

.testimonial-card {
  border-radius: 16px;
  background: linear-gradient(
    92deg,
    rgba(255, 255, 255, 0.06) 21.68%,
    rgba(255, 255, 255, 0.06) 102.49%
  );
  backdrop-filter: blur(18px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.testimonial-card h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 37.375px;
  font-variant: all-small-caps;
  background: linear-gradient(100deg, #fff 50%, rgba(255, 255, 255, 0) 183.49%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 28px;
}

.testimonial-app {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 37.375px;
  font-variant: all-small-caps;
}

.testimonial-text {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  min-height: 196px;
  padding-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.author-name {
  color: #ddd;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.2px;
}
.author-designation {
  color: #8190a5;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.2px;
}

/* section 10 */
.faq-section {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.faq-section.visible .faq-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out 0.4s;
}

.faq-section.visible .faq-left {
  opacity: 1;
  transform: translateX(0);
}

.faq-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out 0.6s;
}

.faq-section.visible .faq-right {
  opacity: 1;
  transform: translateX(0);
}

.faq-main-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.faq-section.visible .faq-main-heading {
  opacity: 1;
  transform: translateY(0);
}

.faq-description {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 1s;
}

.faq-section.visible .faq-description {
  opacity: 1;
  transform: translateY(0);
}

.faq-accordion {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 1.2s;
}

.faq-section.visible .faq-accordion {
  opacity: 1;
  transform: translateY(0);
}

.faq-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 0 auto;
}

.faq-left {
  max-width: 481px;
  flex: 1;
}

.faq-main-heading {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-description {
  color: var(--text-gray);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.faq-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  padding-block: 14px;
  transition: all 0.3s ease;
  background-color: var(--bg-dark);
}

.faq-ask-btn:hover {
  color: #6cb6ff;
  border-bottom-color: var(--text-light);
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-ask-btn:hover .faq-arrow {
  transform: translate(2px, -2px);
}

.faq-right {
  flex: 1;
}
.faq-ask-overlay {
  max-width: fit-content;
  background: linear-gradient(
    97deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  padding-bottom: 1px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(79, 86, 255, 0.5);
  margin-bottom: 0;
  transition: all 0.3s ease;
  padding-left: 1px;
}

.faq-overlay {
  background-color: var(--bg-dark);
}

.faq-item.active {
  background: linear-gradient(
    180deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  padding-left: 1px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-weight: 500;
  font-size: 24px;
  color: var(--text-light);
  flex: 1;
  line-height: 34px;
}

.faq-chevron {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-chevron img {
  width: 16px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  font-weight: 400;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* section 11 */
.ready-to-invent {
  padding-block: 80px;
  border-block: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.ready-to-invent.visible {
  opacity: 1;
  transform: translateY(0);
}

.ready-to-invent-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.ready-to-invent.visible .ready-to-invent-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.ready-to-invent-wrapper h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.ready-to-invent.visible .ready-to-invent-wrapper h2 {
  opacity: 1;
  transform: translateY(0);
}

.ready-to-invent-wrapper p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.ready-to-invent.visible .ready-to-invent-wrapper p {
  opacity: 1;
  transform: translateY(0);
}

.ready-to-invent-wrapper .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.ready-to-invent.visible .ready-to-invent-wrapper .primary-btn {
  opacity: 1;
  transform: translateY(0);
}
.ready-to-invent-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ready-to-invent-wrapper h2 {
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ready-to-invent-wrapper p {
  color: var(--text-gray);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  padding-bottom: 40px;
  font-weight: 400;
  line-height: 140%;
}

/* section 12 */
.about-digimantra {
  padding-block: 80px;
  background-image: url("images/digi-team.png");
  background-position: center;
  height: 842px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.about-digimantra.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-digimantra-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.about-digimantra.visible .about-digimantra-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.about-digimantra-wrapper h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.about-digimantra.visible .about-digimantra-wrapper h2 {
  opacity: 1;
  transform: translateY(0);
}

.about-digimantra-wrapper p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.6s;
}

.about-digimantra.visible .about-digimantra-wrapper p {
  opacity: 1;
  transform: translateY(0);
}

.about-digimantra-wrapper .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.8s;
}

.about-digimantra.visible .about-digimantra-wrapper .primary-btn {
  opacity: 1;
  transform: translateY(0);
}
.height {
  height: 100%;
  display: flex;
  align-items: end;
}
.about-digimantra-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-digimantra-wrapper h2 {
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 20px;
  max-width: 1390px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-digimantra-wrapper p {
  color: var(--text-gray);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 40px;
}

/* footer */
.footer {
  background: #02020d;
  padding-top: 80px;
}

.footer .container {
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 40px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-cta-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
}
.connect-btn-overlay {
  border-radius: 60px;
  background: linear-gradient(
    97deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  backdrop-filter: blur(6px);
  padding: 1px;
  max-width: fit-content;
  padding: 12px 24px;
}
.btn-secondary {
  font-family: Montserrat, sans-serif;
  padding: 12px 24px;
  border-radius: 60px;
  background-color: #02020d;
  /* border: 1px solid #5ea0e8; */
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  max-width: fit-content;
  text-decoration: none;
}

.btn-secondary::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: var(--text-light);
  padding-left: 10px;
}

.newsletter-input {
  position: relative;
  display: flex;
  min-width: 412px;
  border-radius: 60px;
  background: linear-gradient(
    97deg,
    var(--primary-color) 36.38%,
    var(--secondary-color) 115.7%
  );
  backdrop-filter: blur(6px);
  padding: 1px;
  max-width: fit-content;
}

.email-input {
  padding: 16px 28px;
  border: none;
  border-radius: 99999px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: flex;
  gap: 18rem;
  margin-bottom: 40px;
  width: 100%;
}

.footer-nav-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin-top: 48px;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #5ea0e8;
}

.footer-locations {
  flex: 1;
}

.footer-locations-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.location-address {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright-text {
  font-size: 1.125rem;
  color: var(--text-light);
  font-weight: 400;
}

.copyright-dot {
  color: #02bde3;
  font-size: 1.125rem;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.social-link {
  color: var(--text-light);
  text-decoration: underline;
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #5ea0e8;
}
.join-community,
.made-with-love {
  display: none;
}
.faq-question-text {
  text-align: left;
}

@media (max-width: 1500px) {
  .smart-design {
    padding-left: 30px;
  }
}

@media (max-width: 1350px) {
  .text-row h3 {
    font-size: 28px;
  }
  .key-features h4 {
    font-size: 21px;
  }
  .key-features p {
    font-size: 21px;
  }
  .rare-items-content,
  .rare-items-img {
    width: 50%;
  }
  .learning-fun-content,
  .learning-fun-img {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 100px;
  }
  .hero-text h3 {
    font-size: 44px;
  }
  .text-row h3 {
    min-height: 78px;
  }
  .why-you-love-text,
  .samsung {
    width: 50%;
  }
  .rare-items-content h2 {
    font-size: 42px;
  }
  .rare-items-content p {
    font-size: 20px;
  }
  .testimonials-grid {
    gap: 17px;
    grid-template-columns: repeat(2, 1fr);
  }
  .features-section {
    height: 1000px;
  }
  .single-key-features-right,
  .single-key-features-left {
    padding-bottom: 60px;
  }
  .key-features h4 {
    font-size: 19px;
  }
  .key-features p {
    font-size: 18px;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu-overlay {
    display: none;
  }
}

@media (max-width: 1024px) {
  /* Header responsive styles */
  .nav-links {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .btn-outline-mobile {
    display: inline-block;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 0;
    background-image: url("images/main-image-tab.png");
    background-position: center;
    background-repeat: no-repeat;
    height: 470px;
  }
  .hero-wrapper {
    background: none;
    height: auto;
  }
  .popular {
    display: none;
  }
  .hero-text h1 {
    font-size: 60px;
  }
  .hero-text h3 {
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 12px;
  }
  .hero-text p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    max-width: 468px;
    padding-bottom: 28px;
  }
  .primary-btn {
    padding: 7px 12px 7px 12px;
    font-size: 12px;
  }
  .primary-btn::after {
    content: url("images/Vector-small.svg ");
    opacity: 1;
    color: var(--text-light);
    padding-left: 5px;
  }
  .why-you-love-wrapper {
    gap: 32px;
  }
  .why-love-features {
    gap: 16px;
  }
  .game-concept {
    padding-block: 32px;
    border-top: none;
  }
  .game-concept-wrapper h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    max-width: 548px;
    padding-bottom: 12px;
  }
  .game-concept-wrapper p,
  span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
  .game-concept-wrapper p {
    padding-bottom: 20px;
    max-width: 548px;
  }
  .game-concept-wrapper span {
    padding-bottom: 28px;
  }
  .why-you-love-card {
    padding: 24px 32px;
    gap: 13px;
  }
  .why-you-love-text {
    gap: 12px;
  }
  .why-you-love-text h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
  }
  .why-you-love-text p {
    color: #ddd;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
  .single-feature {
    padding: 16px;
  }
  .icon-row img {
    height: 48px;
    width: 48px;
  }
  .arrow-btn {
    padding: 8px 21px;
    line-height: 23px;
  }
  .single-feature {
    gap: 16px;
  }
  .text-row h3 {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27.986px;
  }
  .text-row {
    gap: 8px;
  }
  .text-row p {
    color: var(--highlight);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
  }
  .text-row h3 {
    min-height: 0;
  }
  .who-can-play {
    background: none;
    padding-block: 32px;
  }
  .who-can-play-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .who-can-play-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .who-can-play-text h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.56px;
    padding-bottom: 12px;
    background: linear-gradient(
      101deg,
      #fff 60.32%,
      rgba(255, 255, 255, 0) 129.88%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .who-can-play-text p {
    color: #ddd;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 0;
  }
  .who-can-play-cards {
    flex-direction: row;
    width: 100%;
    gap: 14px;
  }
  .who-can-play-overlay {
    width: 33%;
  }
  .who-can-play-single-card {
    padding: 12px;
    flex-direction: column;
  }
  .who-can-play-card-subheading {
    align-items: center;
  }
  .who-can-play-card-subheading h4 {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.255px;
    max-width: 90px;
  }
  .who-can-play-card-content p {
    color: #b7b7b7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    min-height: 78px;
  }
  .kids {
    display: none;
  }
  .kid-tab {
    display: block;
    width: 100%;
  }
  .game-works {
    padding-block: 32px;
  }
  .game-works-wrapper {
    gap: 20px;
  }
  .game-works-text h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 16px;
  }
  .game-works-text p {
    color: var(--highlight);
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    letter-spacing: -0.28px;
    font-size: 14px;
  }
  .game-works-blocks {
    gap: 10px;
  }
  .game-works-content {
    gap: 20px;
  }
  .game-works-single-block {
    padding: 12px;
    gap: 12px;
    min-height: 113px;
  }
  .single-block-overlay {
    width: 100%;
  }
  .game-works-single-block h4 {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 11.198px; /* 79.987% */
    letter-spacing: -0.096px;
  }
  .game-works-single-block p {
    color: #fff;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .learning-fun {
    padding-block: 32px;
  }
  .learning-fun-content h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 16px;
  }
  .learning-fun-content p {
    color: var(--highlight);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    letter-spacing: -0.28px;
    padding-bottom: 10px;
  }
  .learning-fun-wrapper {
    width: 100%;
  }
  .learning-fun-content,
  .learning-fun-img {
    width: 50%;
  }
  .learning-fun-list li {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
  }
  .learning-fun-list li::before {
    content: url(images/Symbol-tab.png);
    margin-right: 10px;
    margin-top: 0;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
  }
  .testimonial {
    padding-block: 32px;
  }
  .testimonial-wrapper h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 39.2px */
    letter-spacing: 0.56px;
    max-width: 676px;
    padding-bottom: 27px;
  }
  .testimonial-card {
    padding: 17px 24px;
  }
  .testimonial-card h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.893px;
    padding-bottom: 14px;
  }
  .testimonial-text {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 21px;
    min-height: 98px;
  }
  .author-name {
    color: #ddd;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14.903px; /* 106.45% */
    letter-spacing: -0.106px;
  }
  .author-designation {
    color: #8190a5;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14.903px; /* 124.192% */
    letter-spacing: -0.106px;
  }
  .faq-section {
    padding-block: 32px;
  }
  .faq-content {
    flex-direction: column;
  }
  .faq-left {
    max-width: 100%;
  }
  .faq-ask-overlay {
    display: none;
  }
  .faq-main-heading {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 39.2px */
    letter-spacing: 0.56px;
  }
  .faq-description {
    color: #ddd;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
  }
  .faq-question-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    text-align: left;
  }
  .ready-to-invent {
    padding-block: 32px;
  }
  .ready-to-invent-wrapper h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    max-width: 542px;
    padding-bottom: 12px;
  }
  .ready-to-invent-wrapper p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 542px;
    padding-bottom: 28px;
  }
  .about-digimantra {
    padding-top: 32px;
    padding-bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 511px;
  }
  .about-digimantra-wrapper h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 12px;
  }
  .about-digimantra-wrapper {
    max-width: 650px;
    margin: auto;
    padding-top: 110px;
  }
  .about-digimantra-wrapper p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 28px;
  }
  .footer {
    padding-top: 20px;
  }
  .footer-top {
    align-items: flex-start;
    margin-bottom: 17px;
    padding-bottom: 17px;
  }
  .footer-cta-title,
  .newsletter-title {
    font-size: 18px;
  }
  .footer-nav-title,
  .footer-locations-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.2px; /* 120% */
    letter-spacing: -0.48px;
  }
  .footer-nav-list {
    gap: 10px;
    margin-top: 0;
  }
  .footer-link {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .location-name {
    font-size: 9.6px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .location-address {
    font-size: 7.467px;
    font-style: normal;
    font-weight: 300;
    line-height: 12.8px;
  }
  .copyright-text,
  .copyright-text2 {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .social-link {
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .footer-bottom {
    padding-block: 10px;
  }
  .footer-content {
    margin-bottom: 0;
  }
  .newsletter-input {
    min-width: 296px;
  }
  .email-input {
    padding: 11px 28px;
  }
  .rare-items {
    padding-block: 32px;
  }
  .rare-items-wrapper {
    padding: 24px 32px;
  }
  .rare-items-content {
    width: 100%;
  }
  .rare-items-content h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 12px;
  }
  .rare-items-content p {
    color: #ddd;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 28px;
  }
  .rare-items-img {
    display: none;
  }
  .rare-items-tab-img {
    display: block;
  }
  .features-section {
    padding-block: 32px;
    background-image: url("images/feature-bg-tab2.png");
    background-size: contain;
    height: 512px;
  }
  .features-heading h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 12px;
  }
  .features-heading p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 432px;
    margin: auto;
  }
  .features-heading {
    padding-bottom: 40px;
  }
  .why-you-love {
    padding-block: 32px;
  }
  .key-features h4 {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
  }
  .key-features p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
  }
  .adjust {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0px 16px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-text h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 50.4px */
    letter-spacing: 0.72px;
    padding-bottom: 12px;
  }
  .hero-text h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }
  .hero-text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 20px;
  }
  .game-concept-wrapper h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }
  .game-concept-wrapper p,
  span {
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .game-concept-wrapper span {
    padding-bottom: 20px;
  }
  .why-you-love-text,
  .samsung {
    width: 100%;
  }
  .why-you-love-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .why-you-love-text h3 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }
  .why-you-love-text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .who-can-play-text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .rare-items-wrapper {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }
  .rare-items-content h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }
  .who-can-play-card-content p {
    min-height: 117px;
  }
  .rare-items-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 20px;
  }
  .game-works-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .game-works-text h2 {
    text-align: center;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 12px;
  }
  .game-works-content {
    align-items: center;
  }
  .game-works-text p {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .game-works-img {
    display: none;
  }
  .game-works-mobile-img {
    display: block;
  }
  .game-works-single-block {
    min-height: auto;
  }
  .game-works-blocks {
    gap: 12px;
    width: 100%;
  }
  .triangle {
    height: 12px;
    width: 12px;
  }
  .learning-fun {
    padding-bottom: 0;
  }
  .learning-fun-wrapper {
    flex-direction: column;
  }
  .learning-fun-content,
  .learning-fun-img {
    width: 100%;
  }
  .learning-fun-content h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 12px;
  }
  .learning-fun-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .learning-fun-list li {
    padding-bottom: 7px;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    display: flex;
    align-items: center;
  }
  .testimonial-wrapper h2 {
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 20px;
  }
  .testimonials-grid {
    gap: 17px;
    grid-template-columns: repeat(1, 1fr);
  }
  .testimonial-card h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
  }
  .faq-main-heading {
    padding-bottom: 12px;
  }
  .faq-description {
    font-size: 18px;
  }
  .faq-question-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
  .faq-answer p {
    font-weight: 300;
  }
  .ready-to-invent-wrapper p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 20px;
  }
  .about-digimantra {
    background-position: 25% 75%;
  }
  .about-digimantra-wrapper {
    margin: 0;
    padding-top: 0;
    align-items: flex-start;
  }
  .height {
    align-items: flex-start;
  }
  .about-digimantra-wrapper h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-align: start;
  }
  .about-digimantra-wrapper p {
    text-align: start;
  }
  .copyright-text2 {
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    text-align: left;
    width: 100%;
  }

  .footer-cta {
    gap: 16px;
    width: 100%;
  }

  .footer-newsletter {
    gap: 16px;
    max-width: 100%;
    margin-left: 0;
    width: 100%;
  }

  .copyright-dot {
    display: none;
  }
  .newsletter-title {
    display: none;
  }
  .join-community {
    display: block;
    font-weight: 500;
    color: var(--text-light);
    font-size: 24px;
  }

  .footer-cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .btn-secondary {
    font-size: 16px;
  }

  .newsletter-input {
    max-width: 100%;
    min-width: 100%;
  }

  .email-input {
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    width: 100%;
  }

  .footer-nav {
    width: 100%;
    text-align: left;
  }

  .footer-locations {
    width: 100%;
    text-align: left;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-nav-list {
    gap: 16px;
  }

  .footer-link {
    font-size: 1rem;
    text-align: center;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }

  .location-name {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    margin-top: 0;
  }

  .location-address {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 0;
    width: 100%;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .made-with-love {
    font-size: 0.875rem;
    text-align: center;
    display: block;
  }

  .copyright-text {
    display: none;
  }

  .footer-social {
    display: none;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-link {
    font-size: 1rem;
    text-align: center;
  }
  .features-heading p {
    font-size: 18px;
  }
  .features-section {
    /* padding-block: 32px; */
    background: none;
    /* background-size: contain; */
    height: auto;
  }
  .key-features {
    display: none;
  }
  .key-features-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .key-features-mobile {
    padding-inline: 16px;
  }
  .features-heading {
    padding-bottom: 0;
  }
  .single-feature-mobile h4 {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 12px;
  }
  .single-feature-mobile p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
  }
  .hello-img {
    display: block;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0px 16px;
  }
  .hero {
    background-image: url("images/hero-img-mobile.png");
  }
  .hero-text h3 {
    max-width: 345px;
    text-align: center;
  }
  .why-you-love-wrapper {
    gap: 12px;
  }
  .why-love-features {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .text-row p {
    min-height: 100%;
  }
  .who-can-play-btn {
    display: none;
  }
  .who-can-play-wrapper {
    gap: 24px;
  }
  .who-can-play-cards {
    flex-direction: column;
  }
  .who-can-play-overlay {
    width: 100%;
  }
  .who-can-play-single-card {
    gap: 12px;
  }
  .who-can-play-card-subheading h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 100%;
  }
  .who-can-play-card-content {
    gap: 8px;
  }
  .who-can-play-card-content p {
    min-height: auto;
  }
}
