body {
  margin: 0;
  font-family: 'Montserrat', 'PingFang SC', Arial, sans-serif;
  background: #181c24;
  color: #f3f6fa;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw 10px 7vw;
  background: #23283a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: #00ffe7;
  letter-spacing: 3px;
  text-shadow: 0 0 8px #00ffe7, 0 0 2px #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #b2b8c6;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
  letter-spacing: 1px;
}
nav a:hover {
  color: #00ffe7;
}
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #23283a 60%, #1a1e29 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 60% 40%, #00ffe7 0%, #23283a 60%, transparent 100%);
  opacity: 0.13;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInDown 1.2s;
}
.hero-content h1 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #00ffe7;
}
.hero-content p {
  font-size: 1.2rem;
  color: #b2b8c6;
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00ffe7 40%, #6e7fff 100%);
  color: #181c24;
  font-weight: bold;
  border: none;
  padding: 13px 38px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 24px #00ffe7a0;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: #6e7fff;
  color: #fff;
  transform: scale(1.06);
}
.about, .products, .faq, .contact {
  max-width: 900px;
  margin: 48px auto;
  background: #23283a;
  border-radius: 22px;
  box-shadow: 0 2px 24px #00ffe71a;
  padding: 38px 26px 30px 26px;
  animation: fadeInUp 1s;
}
.about h2, .products h2, .faq h2, .contact h2 {
  color: #00ffe7;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}
.product-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.product-item {
  background: #1a1e29;
  border-radius: 18px;
  box-shadow: 0 2px 18px #00ffe74a;
  padding: 24px 18px 18px 18px;
  width: 320px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #00ffe7a0;
}
.product-item img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px #6e7fff80;
  border: 2px solid #00ffe7;
}
.product-item h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 700;
}
.product-item ul {
  color: #b2b8c6;
  margin: 0 0 14px 0;
  padding-left: 20px;
  font-size: 1rem;
}
.buy-btn {
  background: linear-gradient(90deg, #00ffe7 60%, #6e7fff 100%);
  color: #181c24;
  border: none;
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 12px #00ffe7a0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.buy-btn:hover {
  background: #6e7fff;
  color: #fff;
  transform: scale(1.07);
}
.faq-item {
  margin-bottom: 22px;
  border-left: 4px solid #00ffe7;
  padding-left: 16px;
  background: #1a1e29;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  color: #b2b8c6;
}
.faq-item h4 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.faq-item:hover {
  box-shadow: 0 2px 8px #00ffe7a0;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.contact input, .contact textarea {
  padding: 10px 14px;
  border: 1.5px solid #6e7fff;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background: #23283a;
  color: #fff;
  transition: border 0.2s;
}
.contact input:focus, .contact textarea:focus {
  border: 2px solid #00ffe7;
}
.contact button[type="submit"] {
  background: linear-gradient(90deg, #00ffe7 60%, #6e7fff 100%);
  color: #181c24;
  border: none;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.contact button[type="submit"]:hover {
  background: #6e7fff;
  color: #fff;
}
.contact-info {
  color: #b2b8c6;
  font-size: 1rem;
}
footer {
  text-align: center;
  padding: 24px 0 12px 0;
  color: #6e7fff;
  background: #181c24;
  font-size: 1rem;
  margin-top: 40px;
  letter-spacing: 1px;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .product-list { flex-direction: column; gap: 18px; }
  .product-item { width: 100%; }
}
@media (max-width: 700px) {
  header { flex-direction: column; padding: 14px 3vw 8px 3vw; }
  nav a { margin-left: 14px; }
  .about, .products, .faq, .contact { padding: 18px 4px 12px 4px; }
  .hero-content h1 { font-size: 1.3rem; }
  .product-item img { width: 120px; height: 120px; }
} 