:root {
  --primary-color: #34495e;
  --secondary-color: #149077;
  --accent-color: #f1c40f;
  --gray-color: #e2e2e2;
  --text-color: #333;
  --background-color: #f9f9fe;
  --background-white: white;
  --cta-gradient-start: #34495e;
  --cta-gradient-mid: #34495ed3;
  --cta-gradient-end: #34495e;
}
*,
:before,
:after {
  box-sizing: border-box;
  user-select: none;
  user-drag: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
img {
  pointer-events: none;
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
  font-family: Roboto, sans-serif;
  line-height: 1.6;
}
header {
  background-color: var(--background-white);
  z-index: 1000;
  width: 100%;
  position: fixed;
  box-shadow: 0 2px 4px #0000001a;
}
nav {
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  display: flex;
}
.logo {
  color: var(--primary-color);
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}
.logo img {
  margin-right: 10px;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 2rem;
}
.nav-links li a {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--primary-color);
}
.mobile-menu-toggle {
  cursor: pointer;
  background: 0 0;
  border: none;
  display: none;
}
main {
  padding-top: 70px;
}
section {
  padding: 4rem 5%;
}
#hero {
  text-align: center;
  background-color: var(--primary-color);
  padding: 6rem 5%;
}
#hero h1 {
  color: var(--background-color);
  margin-bottom: 1rem;
  font-size: 2.5em;
}
#hero p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}
.cta-buttons > a {
  width: 140px;
}
.btn {
  text-align: center;
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn.gray {
  background-color: var(--gray-color);
  color: #333;
}
.btn.accent {
  background-color: var(--accent-color);
  color: #333;
}
.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px #0003;
}
#features {
  text-align: center;
  background-color: var(--background-color);
}
#features > * {
  color: var(--primary-color);
  margin-bottom: 64px;
}
#how-it-works {
  text-align: center;
  background-color: var(--primary-color);
}
#how-it-works > * {
  color: var(--background-color);
  margin-bottom: 64px;
}
.steps {
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
  display: flex;
}
.step {
  text-align: center;
  color: var(--background-color);
  flex-basis: calc(25% - 2rem);
}
.step-number {
  background: var(--background-color);
  color: var(--primary-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: inline-flex;
}
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  display: grid;
}
.feature-card {
  background: var(--background-white);
  text-align: center;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px #0000001a;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px #0000001a;
}
.feature-card i {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2em;
}
#community {
  background-color: var(--background-white);
  text-align: center;
}
#community > * {
  color: var(--primary-color);
}
.community-links {
  justify-content: center;
  gap: 1rem;
  margin-top: 10px;
  display: flex;
}
.community-links > .btn {
  vertical-align: middle;
  width: 30px !important;
  height: 30px !important;
  padding: 0% !important;
}
.community-links > .btn > img {
  vertical-align: middle;
  width: 30px;
  height: 30px;
  padding: 0% !important;
}
#cta {
  text-align: center;
  background: linear-gradient(
    90deg,
    var(--cta-gradient-start),
    var(--cta-gradient-mid),
    var(--cta-gradient-end)
  );
  color: #fff;
  padding: 4rem 5%;
}
#cta-story-title i {
  margin-bottom: 1rem;
  font-size: 2em;
  display: block;
}
#cta-story-title h3 {
  margin-top: 1rem;
  font-weight: 600;
}
#cta-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}
#cta-story p {
  margin: 1rem 0;
}
#terms {
  text-align: center;
}
#terms > * {
  color: var(--primary-color);
}
#terms ul {
  padding-left: 0;
  list-style-type: none;
}
#terms > p {
  margin-bottom: 64px;
}
#terms li {
  margin: 0.5rem 0;
}
footer {
  background-color: var(--primary-color);
  color: var(--background-white);
  text-align: center;
  padding: 1rem 0;
}
#overlay {
  backdrop-filter: blur(2px);
  z-index: 1001;
  background-color: #6b6a69cc;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}
.overlay-content {
  text-align: center;
  border-radius: 10px;
  padding: 20px;
}
#overlay-text {
  color: var(--accent-color);
}
@media (width>=769px) {
  .header {
    background-color: var(--background-white);
    z-index: 1000;
    width: 100%;
    transition: all 0.3s;
    position: fixed;
    box-shadow: 0 2px 4px #0000001a;
  }
  .nav {
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    display: flex;
  }
  .logo {
    color: var(--primary-color);
    align-items: center;
    text-decoration: none;
    display: flex;
  }
  .nav-list {
    list-style: none;
    display: flex;
  }
  .nav-list li {
    margin-left: 2rem;
  }
  .nav-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--primary-color);
  }
  .menu-toggle {
    cursor: pointer;
    background: 0 0;
    border: none;
    display: none;
  }
}
@media (width<=768px) {
  .carousel-wrapper {
    height: 450px !important;
  }
  .carousel-images img.active {
    transform: scale(2) !important;
  }
  .menu-toggle {
    cursor: pointer;
    color: var(--text-color);
    z-index: 2000;
    background: 0 0;
    border: none;
    font-size: 2rem;
    display: block;
  }
  .nav-list {
    background: var(--background-color);
    z-index: 1000;
    opacity: 0;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 0;
    transition: opacity 0.3s, transform 0.3s;
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    transform: translateY(-20px);
    box-shadow: 0 4px 6px #0000001a;
  }
  .nav-list.active {
    opacity: 1;
    display: flex;
    transform: translateY(0);
  }
  .nav-list li {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
  }
  .nav-list li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-list li a:hover {
    color: var(--accent-color);
  }
  body.active-menu {
    position: relative;
    overflow: hidden;
  }
  body.active-menu:after {
    content: "";
    z-index: 500;
    pointer-events: none;
    background: #0000004d;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
#screenshot-gallery {
  text-align: center;
  opacity: 0;
  color: var(--primary-color);
  background-color: var(--background-color);
  margin: 2rem 0;
}
.carousel {
  background-color: var(--background-color);
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  position: relative;
  overflow: hidden;
}
.carousel-wrapper {
  width: 100%;
  height: 600px;
  padding-top: 120px;
  overflow: hidden;
}
.carousel-images {
  will-change: transform;
  transition: transform 0.5s ease-in-out;
  display: flex;
}
.carousel-images img {
  object-fit: cover;
  opacity: 0.3;
  filter: blur(5px);
  width: calc(33.33% - 20px);
  margin: 0 10px;
  transition: transform 0.5s, opacity 0.5s, filter 0.5s;
}
.carousel-images img.active {
  opacity: 1;
  filter: blur();
  transform: scale(1.7);
}
.arrow {
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background-color: #00000080;
  border: none;
  border-radius: 32px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.arrow.left {
  left: 0;
}
.arrow.right {
  right: 0;
}
.arrow:hover {
  background-color: #000000b3;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000;
    color: #ffffff;
    padding: 12px 18px !important;
    height: 48px;
    border-radius: 8px !important;
    font-weight: 500;
    font-size: 18px;
    width: auto !important;
    border: 1.4px solid #cacaca;
    line-height: 20px;
  }
  
  .store-btn img {
    vertical-align: middle;
    height: 24px;
    width: 24px;
    margin-right: 4px;
  }