/* 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;
  text-align: center;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-container a{
  text-decoration: none !important;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: grab;
  width: 100%;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  width: 100%;
  max-width: 250px;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(78,84,200,0.22);
  background: #181a20;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.carousel-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(78,84,200,0.35);
}


.carousel-slide img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(78,84,200,0.35);
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(78,84,200,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
  background: rgba(78,84,200,1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(78,84,200,0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(78,84,200,0.3);
  border: 2px solid rgba(78,84,200,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-dot:hover {
  background: rgba(78,84,200,0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: #8f94fb;
  border-color: #8f94fb;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(143,148,251,0.6);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .carousel-container {
    max-width: 400px;
    padding: 0 60px;
  }
  
  .carousel-slide img {
    max-width: 300px;
    max-height: 600px;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .carousel-container {
    max-width: 500px;
    padding: 0 70px;
  }
  
  .carousel-slide img {
    max-width: 350px;
    max-height: 700px;
  }
}

@media (max-width: 600px) {
  .carousel-container {
    max-width: 270px;
    padding: 0 40px;
  }
  
  .carousel-slide img {
    max-width: 200px;
    max-height: 400px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-prev {
    left: -10px;
  }
  
  .carousel-next {
    right: -10px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(78,84,200,0.3);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #8f94fb;
  background: rgba(78,84,200,0.6);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(78,84,200,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(78,84,200,1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(78,84,200,0.6);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 85vh;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }
}

/* 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;
  }
} 