/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181a20;
  color: #e0e4ff;
  line-height: 1.6;
  min-height: 100vh;
  padding: 30px;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  border-radius: 24px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #23263a 0%, #2b2e4a 100%);
  z-index: 0;
  opacity: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-image {
  width: 243px;
  max-width: 90%;
  border: 2px solid #b8bcff4d;
  height: 400px;
  margin-bottom: -30px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  mask-image: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
  zoom: 1.4;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 400;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(120deg, #4e54c8 0%, #8f94fb 100%);
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(78,84,200,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: #23263a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* About Section */
.about {
  background: #23263a;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(30,32,60,0.25);
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.about h2 {
  color: #8f94fb;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.about p {
  font-size: 1.15rem;
  color: #e0e4ff;
}

/* Features Section */
.features {
  background: linear-gradient(120deg, #23263a 60%, #181a20 100%);
  border-radius: 24px;
  margin: 40px 0;
  box-shadow: 0 2px 24px rgba(30,32,60,0.25);
}
.features h2 {
  color: #8f94fb;
  font-size: 2rem;
  margin-bottom: 30px;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature {
   
  border-radius: 18px;
   
  padding: 32px 24px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center; 
}
.feature:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(78,84,200,0.25);
}
.feature img {
  width: 48px;
  margin-bottom: 16px;
}
.feature h3 {
  color: #8f94fb;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature p {
  color: #e0e4ff;
  font-size: 1rem;
}

/* Screenshots Section */
.screenshots {
  background: #23263a;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(30,32,60,0.25);
  margin: 40px 0;
}
.screenshots h2 {
  color: #8f94fb;
  font-size: 2rem;
  margin-bottom: 30px;
}
.screenshots-slider {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.screenshots-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.screenshots-list img {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(78,84,200,0.22);
  width: 200px;
  height: 400px;
  object-fit: cover;
  background: #181a20;
  transition: transform 0.2s, box-shadow 0.2s;
}
.screenshots-list img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(78,84,200,0.28);
}

/* Slider Styles */
.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23263a;
  border: 2px solid #8f94fb;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: #8f94fb;
}
.slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(78,84,200,0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.slider-btn:hover {
  background: rgba(78,84,200,1);
}
.slider-btn.prev {
  left: -50px;
}
.slider-btn.next {
  right: -50px;
}

/* Mobile Slider Styles */
@media (max-width: 900px) {
  .screenshots-slider {
    max-width: 250px;
  }
  .screenshots-list {
    overflow: hidden;
    gap: 0;
  }
  .screenshots-list img {
    width: 250px;
    height: 500px;
    flex-shrink: 0;
    display: none;
    transform: translateX(0);
    transition: transform 0.5s ease;
  }
  .screenshots-list img.active {
    display: block;
  }
  .slider-dots {
    display: flex;
  }
  .slider-btn {
    display: block;
  }
  .slider-btn.prev {
    left: -60px;
  }
  .slider-btn.next {
    right: -60px;
  }
}

/* Desktop Styles - Show all screenshots side by side */
@media (min-width: 901px) {
  .screenshots-slider {
    max-width: none;
  }
  .screenshots-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .screenshots-list img {
    display: block !important;
    width: 200px;
    height: 400px;
  }
  .slider-dots, .slider-btn {
    display: none !important;
  }
}

/* Download Section */
.download {
  background: linear-gradient(120deg, #23263a 0%, #4e54c8 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(30,32,60,0.25);
  margin: 40px 0;
  text-align: center;
}
.download h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #8f94fb;
}
.download-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px 0 10px 0;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #181a20;
  color: #8f94fb;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(78,84,200,0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  opacity: 0.7;
  cursor: not-allowed;
}
.store-btn img {
  width: 32px;
}
.store-btn.disabled {
  pointer-events: none;
}
.coming-soon {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #8f94fb;
  letter-spacing: 1px;
}

/* Support Section */
.support {
  background: #23263a;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(30,32,60,0.25);
  margin: 40px 0;
  text-align: center;
}
.support h2 {
  color: #8f94fb;
  font-size: 2rem;
  margin-bottom: 18px;
}
.support p {
  color: #e0e4ff;
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #2b2e4a;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #181a20;
  color: #e0e4ff;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #8f94fb;
  outline: none;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form button {
  background: linear-gradient(120deg, #4e54c8 0%, #8f94fb 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 14px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover {
  background: #23263a;
  transform: translateY(-2px) scale(1.03);
}
.contact-success {
  color: #8f94fb;
  font-size: 1.1rem;
  margin-top: 18px;
}

/* Footer */
footer {
  background: #181a20;
  color: #e0e4ff;
  text-align: center;
  padding: 24px 0 12px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 40px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  text-align: left;
  padding-bottom: 12px;
}
.footer-section {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 12px;
}
.footer-section h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #8f94fb;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-section p, .footer-section a {
  color: #e0e4ff;
  font-size: 0.98rem;
  text-decoration: none;
}
.footer-section a:hover, .footer-link:hover {
  text-decoration: underline;
  color: #8f94fb;
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.footer-socials a img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
  transition: transform 0.2s, filter 0.2s;
}
.footer-socials a:hover img {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 4px 12px #8f94fb);
}
.footer-link {
  color: #e0e4ff;
  font-size: 0.98rem;
  display: inline-block;
  margin-top: 4px;
}
.copyright {
  border-top: 1px solid #23263a;
  margin-top: 12px;
  padding-top: 40px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #8f94fb;
  padding-bottom: 0!important;
}

@media (max-width: 900px) {
  .hero-image{zoom:1}
  .features-list, .screenshots-list, .download-links {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .feature, .screenshots-list img {
    max-width: 100%;
  }
  .footer-grid {
    flex-direction: column;
    gap: 18px;
    text-align: left;
  }
  .footer-section {
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 32px 0;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .about h2, .features h2, .screenshots h2, .download h2, .support h2 {
    font-size: 1.3rem;
  }
  .screenshots-list img {
    width: 120px;
    height: 240px;
  }
} 