body {
  margin: 0;
  background-color: #1a1e23;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section, .promo-banner, .screenshots, .testimonials, .features ul li {
  margin-bottom: 8px;
  padding-left: 0.2em;
  transition: color 0.15s, text-shadow 0.15s;
  list-style: disc;
  position: relative;
}

.features ul li:hover {
  color: #ffde59;
  text-shadow: 0 0 8px #ffde59cc;
  cursor: pointer;
}

@media (max-width: 900px) {
  .screenshots img {
    width: 95vw !important;
    max-width: 340px !important;
  }
  .testimonials > div, .trust > div {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

@media (max-width: 600px) {
  .container, .testimonials, .trust, .news, .promo-banner {
    max-width: 98vw !important;
    padding: 10px !important;
  }
  .promo-banner {
    font-size: 1em !important;
    padding: 10px 5px !important;
  }
  .screenshots img {
    width: 98vw !important;
    max-width: 220px !important;
  }
  .buttons {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  text-align: center;
  max-width: 700px;
}

.logo {
  width: 160px;
  margin-bottom: 20px;
  border-radius: 20px;
}

h1 {
  font-size: 2.5em;
  color: #3c8dbc;
}

.subtitle {
  color: #eee;
  margin-bottom: 20px;
}

.features {
  background: linear-gradient(120deg, #23233b 60%, #181825 100%);
  padding: 28px 20px 28px 32px;
  border: 2.5px solid #38b6ff;
  border-radius: 28px;
  margin-bottom: 36px;
  box-shadow: 0 0 32px #38b6ff33, 0 2px 16px #0008;
  backdrop-filter: blur(2px);
}

.lead {
  font-size: 1.25em;
  color: #fff;
  text-align: center;
  margin: 36px auto 38px auto;
  max-width: 800px;
  text-shadow: 0 2px 14px #38b6ff44, 0 1px 0 #181825;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.features ul {
  text-align: left;
  color: #f8f8f8;
  font-size: 1.17em;
  margin-bottom: 26px;
  margin-top: 0;
  padding-left: 1.2em;
}

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

.btn {
  font-size: 1.25em;
  font-weight: bold;
  padding: 18px 38px;
  border-radius: 12px;
  border: 2.5px solid #38b6ff;
  background: linear-gradient(90deg, #23236b 0%, #38b6ff 100%);
  color: #fff;
  box-shadow: 0 0 16px #38b6ff44, 0 2px 8px #000a;
  letter-spacing: 1px;
  transition: all 0.18s cubic-bezier(.4,2.2,.6,1);
  text-shadow: 0 2px 8px #000a, 0 0 6px #38b6ff55;
  text-decoration: none;
  display: inline-block;
}

.btn:hover, .btn:focus {
  background: linear-gradient(90deg, #38b6ff 0%, #23236b 100%);
  color: #ffde59;
  border-color: #ffde59;
  box-shadow: 0 0 32px #ffde59cc, 0 2px 16px #38b6ff88;
  transform: scale(1.07) rotate(-1deg);
  outline: none;
}



.btn.buy {
  background-color: #3c8dbc;
}

.btn.buy:hover {
  background-color: #555;
}

.btn.contact {
  background-color: #333;
}

.btn.contact:hover {
  background-color: #555;
}

footer {
  text-align: center;
  color: #f0f0f0;
  padding: 20px;
  font-size: 14px;
}
