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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: white;
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: white;
  text-decoration: none;
}

.nav-button {
  padding: 10px 20px;
  background: #2563eb;
  border-radius: 8px;
}

.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.badge {
  color: #60a5fa;
  margin-bottom: 20px;
  font-size: 18px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 22px;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-button {
  background: #2563eb;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.secondary-button {
  border: 1px solid white;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }
}

.video-section {
  padding: 40px 8% 80px;
  background: #111827;
  text-align: center;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-badge {
  color: #60a5fa;
  font-size: 18px;
  margin-bottom: 15px;
}

.video-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.section-text {
  color: #cbd5e1;
  font-size: 20px;
  margin-bottom: 20px;
}

.video-wrapper {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-wrapper video {
  width: 100%;
  display: block;
}
.included-section {
  padding: 100px 8%;
  background: #0f172a;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.included-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}

.included-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.included-card p {
  color: #cbd5e1;
  line-height: 1.6;
}
.screenshots-section {
  padding: 100px 8%;
  background: #111827;
  text-align: center;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.screenshot-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.screenshot-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.35s ease;
  cursor: pointer;
}
.screenshot-card:hover img {
  transform: scale(1.08);
}
.features-section,
.buy-section,
.faq-section {
  padding: 100px 8%;
  text-align: center;
}

.features-section {
  background: #0f172a;
}

.buy-section {
  background: #111827;
}

.faq-section {
  background: #0f172a;
}

.features-section h2,
.buy-section h2,
.faq-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.feature-card,
.faq-item {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
}

.feature-card h3,
.faq-item h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-card p,
.faq-item p {
  color: #cbd5e1;
  line-height: 1.6;
}

.price {
  font-size: 64px;
  font-weight: 700;
  margin: 25px 0;
  color: white;
}

.faq-list {
  display: grid;
  gap: 25px;
  margin-top: 50px;
}
.site-footer {
  padding: 50px 8% 30px;
  background: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-content p,
.footer-copy {
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  .site-header {
    padding: 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 18px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }

  .video-section,
  .included-section,
  .screenshots-section,
  .features-section,
  .buy-section,
  .faq-section {
    padding: 70px 20px;
  }

  .video-section h2,
  .features-section h2,
  .buy-section h2,
  .faq-section h2 {
    font-size: 32px;
  }

  .section-text {
    font-size: 17px;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .screenshot-card {
    padding: 18px;
  }

  .screenshot-card:hover img {
    transform: none;
  }

  .screenshot-card img:active {
    transform: scale(1.08);
  }

  .price {
    font-size: 48px;
  }

  .footer-content {
    flex-direction: column;
    gap: 25px;
    text-align: left;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.faq-item a,
.faq-item a:visited {
  color: #93c5fd;
  font-weight: 600;
  text-decoration: none;
}

.faq-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}
