*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-bg: #f2f2f2;
  --footer-bg: #242424;
  --text-dark: #242424;
  --text-body: #3d3d3d;
  --text-footer: #aeaeae;
  --desktop-padding: 160px;
  --mobile-padding: 20px;
}

body {
  font-family: "Archivo", sans-serif;
  color: var(--text-body);
  background: #fff;
}

.t-heading {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 60px;
  line-height: 120%;
  color: var(--text-dark);
}
.t-body {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-body);
}

.t-nav {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-dark);
}
.t-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--text-dark);
}
.t-footer {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-footer);
  text-align: center;
}

header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: calc(100% - var(--desktop-padding) * 2);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 48px;
  width: 48px;
  display: block;
  border-radius: 10px;
}

nav.desktop-nav {
  display: flex;
  gap: 32px;
}
nav.desktop-nav a {
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-dark);
  transition: opacity 0.2s;
}
nav.desktop-nav a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  flex-direction: column;
  background: #f2f2f2;
  border-radius: 16px;

  padding: 16px 0;
  z-index: 999;
  top: 76px;
  left: 20px;
  right: 20px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  text-align: center;
  padding: 14px 0;
}

.section-inner {
  max-width: calc(100% - var(--desktop-padding) * 2);
  margin: 0 auto;
}

#home {
  background: #fff;
  min-height: 600px;
  overflow: hidden;
}
.hero-inner {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  justify-content: center;
  min-height: 567px;
  padding-left: 160px;
  padding-top: 0px;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 376px;
}
.hero-text p {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-body);
  margin-bottom: 42px;
  max-width: 544px;
}

.hero-image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 1;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.gplay-btn img {
  height: 56px;
  display: block;
}

#features {
  padding: 100px 0;
  background: #fff;
}

.features-wrapper {
  max-width: calc(100% - var(--desktop-padding) * 2);
  margin: 0 auto;
}

.features-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 20px;
}

.features-list {
  flex: 1;
}

.feature-item {
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
}

.feature-item::before {
  content: "•";
  font-size: 28px;
  color: var(--text-dark, #000);
  flex-shrink: 0;
  line-height: 1.1;
}

.feature-item-text h3 {
  margin-bottom: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.feature-item-text p {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-body, #555);
}

.features-image {
  flex: 0 0 42%;
  position: sticky;
  top: 20px;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
}

@media (max-width: 992px) {
  .features-inner {
    flex-direction: column;
    gap: 40px;
  }

  .features-image {
    width: 100%;
    order: -1; 
  }
}

#gameplay {
  padding: 100px 0;
  background: #f2f2f2;
}
.how-inner {
  max-width: calc(100% - var(--desktop-padding) * 2);
  margin: 0 auto;
}
.how-inner h2 {
  margin-bottom: 56px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.how-card {
  background: #fff;
  border-radius: 20px;
}
.how-number {
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  color: #AEAEAE;
  line-height: 1;
  padding: 16px;
}
.how-card h3 {
  margin-bottom: 12px;
  padding-left: 10px;
}
.how-card-img {
  width: 100%;
  display: block;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.how-card p {
  padding-left: 10px;
  padding-bottom: 10px;
}

#testimonials {
  padding: 100px 0;
  background: #fff;
}
.testi-inner {
  max-width: calc(100% - var(--desktop-padding) * 2);
  margin: 0 auto;
}
.testi-inner h2 {
  margin-bottom: 56px;
  padding-left: 28px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 28px;
}
.stars {
  color: #242424;
  font-size: 20px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 18px;
  line-height: 150%;
  color: var(--text-body);
  margin-bottom: 20px;
}
.testi-author {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-dark);
  display: block;
  text-align: right;
}

.testi-slider-wrap {
  display: none;
}

#faq {
  padding: 100px 0;
  background: #f2f2f2;
}
.faq-inner {
  max-width: calc(100% - var(--desktop-padding) * 2);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.faq-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.faq-list {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 10px;
}

.faq-item {
  padding: 24px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--text-dark);
}

.faq-answer {
  margin-top: 16px;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-body);
  border-bottom: 1px solid #AEAEAE;
}
.faq-item:last-child .faq-answer {
  border-bottom: none;
}

.faq-image {
  flex: 0 0 43%;
}
.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

footer {
  background: var(--footer-bg);
  padding: 40px var(--desktop-padding);
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links a {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-footer);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-copy {
  margin-top: 30px;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: var(--text-footer);
  text-align: center;
}

@media (max-width: 768px) {
  :root {
    --desktop-padding: 0px;
  }

  .header-inner {
    max-width: 100%;
    padding: 14px var(--mobile-padding);
  }
  nav.desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  #home {
    padding: 0;
    min-height: auto;
    background: #fff;
    
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    width: 100%;
  }

  .hero-text {
    order: 1;
    padding: 40px var(--mobile-padding) 60px;
    background: transparent;
    z-index: 10;
    position: relative;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 18px;
    margin-bottom: 0;
  }

  .hero-image-container {
    order: 2;
    position: relative;
    margin-top: -80px;
    z-index: 5;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100px);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100px);
  }

  .hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .hero-inner .gplay-btn {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: block;
  }

  .gplay-btn img {
    height: 52px;
    width: auto;
  }

  #features {
    padding: 60px 0;
  }
  .features-wrapper {
    padding: 0 var(--mobile-padding); 
    max-width: 100%;
  }
  .features-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .features-list {
    order: 1; 
  }

  .features-image {
    order: 2; 
    width: 100%;
    position: static !important;
    margin-top: 20px;
  }

  .features-image img {
    display: block;
    width: 100%;
    height: auto;
    position: static !important;
    transform: none !important;
  }

  .t-heading {
    font-size: 32px;
  }

  #gameplay {
    padding: 60px 0;
  }
  .how-inner {
    max-width: 100%;
    padding: 0 var(--mobile-padding);
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #testimonials {
    padding: 60px 0;
  }
  .testi-inner {
    max-width: 100%;
    padding: 0 var(--mobile-padding);
  }
  .testi-grid {
    display: none;
  }
  .testi-slider-wrap {
    display: block;
    overflow: hidden;
  }
  .testi-slider {
    display: flex;
    transition: transform 0.4s ease;
  }
  .testi-slide {
    min-width: 100%;
    padding: 0 4px;
  }
  .testi-dots {
    display: none;
  }
  .testi-dot {
    display: none;
  }


  #faq {
    padding: 60px 0;
  }
  .faq-inner {
    flex-direction: column;
    max-width: 100%;
    padding: 0 var(--mobile-padding);
    gap: 5px;
  }
  .faq-image {
    display: none;
  }

  footer {
    padding: 36px var(--mobile-padding);
  }
}
