/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: #f9f9f9;
  color: #333;
  text-align: center;
}
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Hero Section */
.hero-section .app-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-section .app-tagline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Section Headings */
.app-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

/* Images */
.app-banner,
.large-preview {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto 1rem;
}

/* Preview Container */
.preview-image {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Bobbing Buttons */
.corner-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
  padding: 0.6rem 1rem;
  background: #007bff;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.corner-btn:hover {
  background: #005bb5;
}
.bobbing {
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Swipe for more */
.swipe-text {
  font-size: 1rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* 5 Star */
.star-rating {
  font-size: 1.2rem;
  color: #f5c518;
  margin-bottom: 0.5rem;
}

/* Info Cards */
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.info-card h2 {
  margin-bottom: 1rem;
}
.info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

/* Feature Block (Task Together) */
.feature-block h3 {
  font-size: 1.2rem;
  margin: 1.2rem 0 0.4rem;
  color: #111;
}
.feature-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.8rem;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.store-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}
.store-btn.android {
  background-color: #3ddc84;
}
.store-btn.android:hover {
  background-color: #2ca96a;
}
.store-btn.ios {
  background-color: #007aff;
}
.store-btn.ios:hover {
  background-color: #005bb5;
}

/* Carousel for Screenshots */
.scroll-gallery {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}
.scroll-gallery img {
  flex: 0 0 auto;
  width: 90%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}

/* How To Use Button Styles */
.guide-btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  width: 100%;
}
.guide-btn {
  display: inline-block;
  background: #FFA500;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.guide-btn:hover {
  opacity: 0.9;
}

/* Top Button */
.top-button {
  text-align: left;
  padding-top: 1rem;
}
.return-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
}
.return-btn:hover {
  background-color: #ccc;
}

/* Footer */
footer {
  background-color: #eee;
  padding: 1rem 0;
  margin-top: 3rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-content a {
  color: #007aff;
  text-decoration: none;
}
.footer-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-section .app-title {
    font-size: 1.6rem;
  }
  .scroll-gallery img {
    max-width: 85%;
  }
}
