/* Keyframe for background gradient animation */
@keyframes backgroundGradient {
  0% { background-color: #0a2a2a; }
  25% { background-color: #0d1831; }
  50% { background-color: #2e0a41; }
  75% { background-color: #1c1c56; }
  100% { background-color: #213b3a; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  z-index: 999;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.navbar a:hover {
  background-color: #00ffc3;
  color: black;
}

/* Sections toggling */
.page-section {
  display: none;
  margin-top: 80px;
  animation: fadeIn 0.5s ease-in-out;
}
.page-section.active {
  display: block;
}

/* Fade animation for section switch */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.slideshow-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.slideshow-background .bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow-background .bg-slide.active {
  opacity: 1;
}

/* General Page Styling */
body {
  font-family: 'Arial', sans-serif;
  animation: backgroundGradient 10s ease infinite;
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: 400% 400%;
  position: relative;
  overflow-x: hidden;
}

section {
  max-width: 800px;
  padding: 30px 20px;
  border-radius: 15px;
  background: rgba(0,0,0,0.6);
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Center Text */
.center-text {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.cheat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 15px 25px; /* spacing between items */
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.cheat-list li {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 18px;
  border-radius: 10px;
  border-left: 4px solid #00ffc3;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s;
}

.cheat-list li:hover {
  transform: translateY(-3px);
  background: rgba(0, 255, 255, 0.1);
}


/* Text glow animation */
@keyframes textGlow {
  0%, 100% {
    color: #f5f1f1;
    text-shadow: 0 0 15px #ff6fff, 0 0 30px #ff6fff;
  }
  50% {
    color: #00eaff;
    text-shadow: 0 0 20px #00eaff, 0 0 40px #00eaff;
  }
}

.animated-text {
  animation: textGlow 50s ease-in-out infinite;
}

/* Button Styling */
button, .animated-button {
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #007bff;
  animation: buttonPulse 4s ease-in-out infinite;
  transition: background-color 0.3s ease;
  min-width: 100px;
}

button:hover {
  background-color: #0056b3;
  box-shadow: 0 0 30px #003d7a;
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: rgb(0, 0, 0);
  padding: 30px 35px;
  border-radius: 12px;
  width: 350px;
  max-width: 90%;
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Modal buttons layout */
#paymentButtons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#paymentModal .small-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Features List */
.features-section ul,
.cheat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-section li::before,
.cheat-list li::before {
  content: "✔ ";
  color: #00ff88;
}

/* Showcase Styling */
.showcase-video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.showcase-video-container iframe {
  width: 100%;
  height: 400px;
  max-width: 900px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
  width: 100%;
  text-align: center;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

button[onclick="showTrialMessage()"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.cheat-divider {
  border: 0;
  height: 2px;
  margin: 40px auto;
  background: linear-gradient(to right, #00eaff, #00ff88, #00eaff);
  width: 60%;
  border-radius: 5px;
}

.cheat-category {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  margin-bottom: 30px;
}

.cheat-category h4 {
  color: #00ffcc;
  font-size: 1.3rem;
  margin-top: 25px;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* Responsive Video */
@media (max-width: 768px) {
  .showcase-video-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .showcase-video-container iframe {
    height: 250px;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: 20px;
  justify-items: center;
  background-color: #1a1a1a; /* Optional: dark background */
  border-radius: 16px;
}

.feature-item {
  text-align: center;
  background: #2a2a2a;
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 180px;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.feature-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feature-item img:hover {
  transform: scale(1.05);
}

.feature-item h4 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* style.css */
.mute-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 9999;
}
