/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121014;
  color: white;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #1a1a1f;
  border-bottom: 1px solid #333;
  box-shadow: 0 0 12px #6a2fe0;
  padding: 15px 40px;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 6px #a84dff;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-item:focus {
  outline: 3px solid #aa55ff;
  background-color: rgba(170, 85, 255, 0.1);
  box-shadow: 0 0 15px #aa55ff;
}



/* Basic layout */
.navbar {
  background: #1a1a1a;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

/* Dropdown styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2b;
  border: 1px solid #9f4ffb;
  padding: 10px 0;
  min-width: 160px;
  z-index: 1000;
  border-radius: 8px;
  list-style: none;

}

/* Show dropdown on hover */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

/* Default dropdown (left aligned) */
.dropdown-menu {
  left: 0;
  right: auto;
}

/* Align dropdown to the right of the parent */
.dropdown-align-right {
  left: auto !important;
  right: 0 !important;
}


.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

/* Dropdown styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2b;
  border: 1px solid #9f4ffb;
  padding: 10px 0;
  min-width: 160px;
  z-index: 1000;
  border-radius: 8px;
}

/* Prevent overflow from right edge */
.navbar .dropdown-menu {
  right: auto;
}

.nav-links .dropdown-menu .dropdown-link {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links .dropdown-menu .dropdown-link:hover {
  background-color: #2a2a3d;
}

/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}


.navbar .dropdown-menu.dropdown-align-right {
  left: auto;
  right: 0;
}

/* Base dropdown style */
.navbar .dropdown {
  position: relative;
}



.nav-item {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #a65efc;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.4s;
}

/* Mobile toggle animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(166, 94, 252, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }
}






/* Layout */
.subscription-page {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

/*
.subscription-card {
  background-color: #1a1a1f;
  padding: 40px 30px;
  border-radius: 40px;
  max-width: 380px;
  text-align: center;
  transition: transform 0.3s;
}
*/

.subscription-card:focus {
  outline: 3px solid #aa55ff;
  box-shadow: 0 0 25px #aa55ff;
}

.glow-border {
  border: 3px solid #9d4dff;
  box-shadow: 0 0 25px rgba(157, 77, 255, 0.6);
}

/* Glows */
.glow {
  color: #d79bff;
  text-shadow: 0 0 6px #aa55ff, 0 0 14px #aa55ff;
}

.glow-white {
  color: #ffffff;
  text-shadow: 0 0 5px #aa66ff, 0 0 10px #aa66ff;
}

/* Button */
.subscribe-btn {
  font-size: 1.2em;
  padding: 20px 40px;
  border: 2px solid #a04dff;
  border-radius: 25px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 15px #aa55ff;
  min-width: 250px;
  min-height: 60px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover,
.subscribe-btn:focus {
  background-color: #aa55ff;
  box-shadow: 0 0 35px #d291ff;
  outline: none;
}

/* Footer */
.footer {
  padding: 30px 20px;
  text-align: center;
  background-color: #18181d;
  color: #bbb;
  font-size: 0.9em;
  border-top: 1px solid #333;
  box-shadow: 0 0 12px #6a2fe0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

.about-img {
  width: 300px;
  height: auto;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(157, 77, 255, 0.4);
  border-radius: 20px;
}

.about-text {
  max-width: 600px;
}

.about-blurb {
  font-size: 1.2em;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 40px;
}

.details-btn {
  display: inline-block;
  font-size: 1em;
  padding: 14px 30px;
  border: 2px solid #a04dff;
  border-radius: 25px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 15px #aa55ff;
  transition: all 0.3s ease;
}

.details-btn:hover,
.details-btn:focus {
  background-color: #aa55ff;
  box-shadow: 0 0 30px #d291ff;
  outline: none;
}

.next-page-button {
  display: inline-block;
  background: #9f4ffb;
  color: white;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  text-shadow: 0 0 8px #c580ff;
  box-shadow: 0 0 20px rgba(159, 79, 251, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.next-page-button:hover {
  background: #a65efc;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(166, 94, 252, 0.6);
}

.button-glow {
  display: inline-block;
  padding: 12px 24px;
  background-color: #8a2be2;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 0 10px #8a2be2;
  transition: background 0.3s ease, transform 0.3s ease;
}
.button-glow:hover {
  background-color: #a45bff;
  transform: scale(1.05);
}

.status-check {
  margin-top: 60px;
  text-align: center;
}

.status-check input {
  padding: 12px;
  font-size: 1em;
  border-radius: 10px;
  border: 2px solid #aa55ff;
  background-color: #1c1c1f;
  color: white;
  width: 250px;
  margin-top: 10px;
  margin-right: 10px;
}

.status-btn {
  padding: 12px 24px;
  font-size: 1em;
  border-radius: 25px;
  border: 2px solid #aa55ff;
  background: transparent;
  color: white;
  box-shadow: 0 0 15px #aa55ff;
  cursor: pointer;
}

.status-btn:hover,
.status-btn:focus {
  background-color: #aa55ff;
  box-shadow: 0 0 30px #d291ff;
}

.status-result {
  margin-top: 15px;
  color: #ccc;
  font-style: italic;
}

.details-page {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.details-section {
  margin-bottom: 50px;
}

.details-section h1,
.details-section h2 {
  margin-bottom: 20px;
}

.details-section p {
  font-size: 1.2em;
  color: #ddd;
  line-height: 1.6;
}

.details-section ul {
  list-style: none;
  padding: 0;
}

.details-section ul li {
  margin: 12px 0;
  font-size: 1.1em;
  color: #ccc;
  padding-left: 0.5em;
  text-shadow: 0 0 5px #3e3e3e;
}

.qa-page {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
}

.qa-accordion {
  margin-top: 40px;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background-color: #1c1c1f;
  color: white;
  padding: 20px;
  font-size: 1.1em;
  border: 2px solid #aa55ff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px #aa55ff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-btn:focus {
  background-color: #aa55ff;
  outline: none;
}

.accordion-content {
  background-color: #18181d;
  color: #ccc;
  padding: 20px;
  margin-top: -10px;
  margin-bottom: 20px;
  border-radius: 0 0 12px 12px;
  display: none;
}

.accordion-content p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
}

.settings-page {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
}

.settings-group {
  margin-bottom: 40px;
}

.settings-btn {
  display: block;
  margin: 12px 0;
  font-size: 1.1em;
  padding: 14px 24px;
  border: 2px solid #aa55ff;
  background: transparent;
  color: white;
  border-radius: 20px;
  box-shadow: 0 0 12px #aa55ff;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  transition: background 0.2s ease;
}

.settings-btn:hover,
.settings-btn:focus {
  background-color: #aa55ff;
  box-shadow: 0 0 25px #d291ff;
  outline: none;
}

.settings-select {
  padding: 12px;
  font-size: 1em;
  border-radius: 10px;
  border: 2px solid #aa55ff;
  background-color: #1c1c1f;
  color: white;
  width: 250px;
}

.info-text {
  color: #ccc;
  margin: 8px 0;
  font-size: 1em;
}

.home-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
  padding: 40px;
  text-align: center;
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.4em;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-btn {
  font-size: 1.2em;
  padding: 16px 36px;
  border: 2px solid #aa55ff;
  border-radius: 30px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 15px #aa55ff;
  transition: all 0.3s ease;
}

.hero-btn:hover,
.hero-btn:focus {
  background-color: #aa55ff;
  box-shadow: 0 0 35px #d291ff;
  outline: none;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  color: #ccc;
  font-size: 1em;
}

.plan-features li {
  margin: 6px 0;
  text-shadow: 0 0 4px #3e3e3e;
}

.status-box {
  margin-top: 40px;
  background-color: #1c1c1f;
  padding: 30px;
  border-radius: 20px;
  color: #ccc;
  font-size: 1em;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.status-box p {
  margin: 8px 0;
}

.plans-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.plans-intro p {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.6;
}

.subscription-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/*
.subscription-card {
  background-color: #1a1a1f;
  padding: 40px 30px;
  border-radius: 40px;
  text-align: center;
  width: 320px;
  min-height: 400px;
  transition: transform 0.3s;
}
*/

.subscription-card:hover {
  transform: scale(1.02);
}

.subscription-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* This allows wrapping on small screens */
  margin-bottom: 50px;
}

.subscription-card {
  background-color: #1a1a1f;
  padding: 40px 30px;
  border-radius: 40px;
  width: 100px; /* or max-width: 350px; */
  width: 38%;
  text-align: center;
  box-shadow: 0 0 25px rgba(157, 77, 255, 0.6);
  transition: transform 0.3s ease;
}

.subscription-card:hover {
  transform: scale(1.03);
}

.info-card {
  background-color: #1a1a1f;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(157, 77, 255, 0.5);
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.info-card h2 {
  color: #d79bff;
  text-shadow: 0 0 8px #aa55ff;
  margin-bottom: 20px;
}

.info-card p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 16px;
}


.plans-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.plans-intro p {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.6;
}

.status-check {
  margin-top: 60px;
  text-align: center;
}

.status-check input {
  padding: 12px;
  font-size: 1em;
  border-radius: 10px;
  border: 2px solid #aa55ff;
  background-color: #1c1c1f;
  color: white;
  width: 250px;
  margin-top: 10px;
  margin-right: 10px;
}

.status-btn {
  padding: 12px 24px;
  font-size: 1em;
  border-radius: 25px;
  border: 2px solid #aa55ff;
  background: transparent;
  color: white;
  box-shadow: 0 0 15px #aa55ff;
  cursor: pointer;
}

.status-btn:hover,
.status-btn:focus {
  background-color: #aa55ff;
  box-shadow: 0 0 30px #d291ff;
}

.status-box {
  margin-top: 40px;
  background-color: #1c1c1f;
  padding: 30px;
  border-radius: 20px;
  color: #ccc;
  font-size: 1em;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 25px rgba(157, 77, 255, 0.6);
}

.status-box p {
  margin: 8px 0;
}

.comparison-section {
  padding: 60px 20px;
  text-align: center;
}

.comparison-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.comparison-card {
  background-color: #1a1a1f;
  padding: 30px 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 0 20px rgba(157, 77, 255, 0.5);
  text-align: left;
}

.comparison-card h3 {
  text-align: center;
  margin-bottom: 20px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  font-size: 1em;
  line-height: 1.8;
}

.comparison-card li {
  margin-bottom: 10px;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.feature-card {
  background-color: #1a1a1f;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(157, 77, 255, 0.5);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.02);
}

.feature-card h2 {
  color: #d79bff;
  text-shadow: 0 0 8px #aa55ff;
  margin-bottom: 20px;
}

.feature-card p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.7;
}

.feature-highlight {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 5px #aa55ff;
}

main, .hero-section, .home-content {
  position: relative;
  z-index: 1;
}

footer.footer {
  position: relative;
  z-index: 2; /* even higher to cover stars */
  background-color: #111; /* add a solid bg if needed */
}





/* Star Background */
/*
#stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: #ffffff; /* White by default *
  opacity: 0;
  animation: twinkling 3s infinite;
  box-shadow: 0 0 6px 2px #ffffff; /* soft glow effect *
}


.star.white {
  background-color: #ffffff;
  box-shadow: 0 0 6px 2px #ffffff;
}

.star.purple {
  background-color: #ae81ff;
  box-shadow: 0 0 6px 2px #ae81ff;
}

.star.blue {
  background-color: #4fc3f7;
  box-shadow: 0 0 6px 2px #4fc3f7;
}


@keyframes twinkling {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.star-theme {
  background: radial-gradient(circle at center, #ffffff 0%, #a64aff 70%, transparent 100%);
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  position: absolute;
  opacity: 0.8;
  filter: blur(0.4px);
  animation: twinkling 4s infinite ease-in-out;
}

/* try it *

.stars-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

#stars-back {
  z-index: 0;
  opacity: 0.3;
  transform: scale(0.8);
  animation: drift 60s linear infinite alternate;
}
#stars-mid {
  z-index: 1;
  opacity: 0.5;
  transform: scale(1);
  animation: drift 45s linear infinite alternate;
}
#stars-front {
  z-index: 2;
  opacity: 0.8;
  transform: scale(1.2);
  animation: drift 30s linear infinite alternate;
}

/* *

.shooting-star {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: radial-gradient(circle, #f4e6ff 20%, #a64aff, #7a00cc); /* Purple Glow *
  opacity: 1;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 8px #a64aff, 0 0 12px #7a00cc;
}

.shooting-star::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 0.15rem;
  background: linear-gradient(to left, #a64aff, transparent); /* Themed Tail *
  top: 50%;
  left: -4rem;
  transform: translateY(-50%);
  opacity: 0.6;
  filter: blur(2px);
}

/* Particle style *
.star-particle {
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
  animation: particle-fade 1.2s forwards;
  z-index: 4;
}

@keyframes particle-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

@keyframes shooting-star {
  0% {
    transform: translate(-10vw, -10vh);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translate(100vw, 100vh);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

*/

/* Planet top right corner 5 degree angle down */
.tilted-image {
    position: fixed;
    bottom: 20%;
    left: 97.5%;
    transform: translateX(-50%) rotate(5deg);
    width: 2000px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}


#page-numbers button,
#prev-btn,
#next-btn {
  background-color: #1e1e2e;
  color: #e0b3ff;
  border: 2px solid #a060ff;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 4px;
  margin-bottom: 40px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #a060ff;
}

#page-numbers button:hover,
#prev-btn:hover,
#next-btn:hover {
  background-color: #2c2c3d;
  box-shadow: 0 0 12px #c58dff, 0 0 24px #a060ff;
  color: #ffffff;
}

#page-numbers button:disabled,
#prev-btn:disabled,
#next-btn:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

#pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

button.dots {
  cursor: default;
  border: none;
  background: transparent;
  color: #aaa;
  font-weight: bold;
  box-shadow: none;
}



.tos-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tos-card {
  background-color: #1a1a1a;
  color: white;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(166, 94, 252, 0.5);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.tos-content {
  overflow-y: auto;
  flex: 1;
  padding-right: 10px;
  margin-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #a65efc #2a2a2a;
}

/* Chrome scrollbar styling */
.tos-content::-webkit-scrollbar {
  width: 8px;
}
.tos-content::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 10px;
}
.tos-content::-webkit-scrollbar-thumb {
  background: #a65efc;
  border-radius: 10px;
}

.tos-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tos-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.agree-btn {
  background-color: #a65efc;
  color: white;
  opacity: 0.6;
  cursor: not-allowed;
}
.agree-btn:enabled {
  opacity: 1;
  cursor: pointer;
}

.disagree-btn {
  background-color: #444;
  color: #ddd;
}


/* Home scroll */

/* Horizontal Scroll Section */
.horizontal-scroll-wrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.horizontal-scroll {
  display: flex;
  flex-direction: row;
  width: 500vw; /* 5 slides */
  height: 100%;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100vw;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: white;
  text-align: center;
}

.slide h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.slide p {
  font-size: 1.2em;
  max-width: 600px;
}

/* Optional adaptive text colors per background */
.slide:has([style*="#1f1f1f"]), 
.slide:has([style*="#2e1d3a"]),
.slide:has([style*="#39495d"]) {
  color: #f0f0f0;
}


.horizontal-scroll-section {
  width: 100vw;
  height: 100vh;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  display: flex;
  scroll-behavior: smooth;
}

.horizontal-scroll-container {
  display: flex;
  width: 500vw; /* 5 slides */
}

.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: white;
}

.slide h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.slide p {
  font-size: 1.2em;
  max-width: 600px;
}


/* Changing text */

#hero-title, #hero-caption, #hero-review {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
}

#hero-title.in-view, #hero-caption.in-view, #hero-review.in-view {
  opacity: 1;
  transform: translateY(0);
}

#hero-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, text-shadow 0.6s ease;
}
#hero-title.in-view {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 8px #a65efc, 0 0 12px #4fc3f7;
}

#hero-caption {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#hero-caption.in-view {
  opacity: 1;
  transform: translateY(0);
}



#scroll-wave {
  width: 200%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.2s ease-out;
}

#scroll-wave path {
  transition: d 0.4s ease-out;
}

.apk-download-link {
  display: inline-block;
  margin-top: 8px;
  color: #a65efc;
  font-weight: bold;
  text-decoration: underline;
}
.apk-download-link:hover {
  color: #ae81ff;
}

.download-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  font-size: 1em;
  background: #a65efc;
  color: white;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px #ae81ff;
  transition: background 0.3s, transform 0.2s;
}

.download-btn:hover {
  background: #ae81ff;
  transform: translateY(-2px);
}

.latest-apk-card {
    background-color: #1a1a1f;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(79, 195, 247, 1);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.latest-apk-card h2 {
  color: #ae81ff;
}

.latest-apk-highlight {
  background-color: #1a1a1f;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(79, 195, 247, 1);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.latest-apk-highlight h2 {
  color: #4fc3f7;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #a0e9ff;
}
.latest-apk-highlight p {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Button Reuse */
.blue-btn {
  background: #4fc3f7;
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  font-weight: bold;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  box-shadow: 0 0 12px #4fc3f7;
  text-shadow: 0 0 8px #a0e9ff;
  transition: background 0.3s ease, transform 0.2s ease;
}
.blue-btn:hover {
  background: #63d1ff;
  transform: scale(1.05);
}
