body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #1a1a1a, #333);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.mobile-nav {
  display: none;
  width: 100%;
  background: #1a1a1a;
  padding: 15px;
  position: absolute;
  top: -100%;
  left: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: top 0.3s ease-in-out;
}

.mobile-nav.active {
  display: block;
  top: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.menu-toggle.active .fas.fa-bars {
  display: none;
}

.menu-toggle.active::after {
  content: "×";
  font-size: 28px;
}
.mobile_nav_button{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 15px;
  
}
.mobile-nav a {
  display: block;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #333;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .menu-toggle {
      display: block;
  }
  
  .mobile-actions {
      display: none;
  }
}

.mobile-header {
  background-color: #1a1a1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-logo img {
  width: 133px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  display: block;
}
.mobile-actions {
  display: flex;
  gap: 8px;
}
.mobile-login,
.mobile-register {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #feca1b;
  transition: all 0.3s ease;
}
.mobile-login {
  background-color: #4a2cd1;
  color: #e2e0d8;
}
.mobile-login:hover {
  background-color: #5a3ce1;
  transform: translateY(-2px);
}
.mobile-register {
 background-image: linear-gradient(to right, #5c2c2c 0%, #7a0733 51%, #C04848 100%);
 display: block;
 color: #cac2c2;
}
.mobile-register:hover {
  background-image: linear-gradient(to right, #6a3c3c 0%, #8a1743 51%, #D05858 100%);
  transform: translateY(-2px);
}

.hero-section {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.hero-section h1 {
  font-size: 2.5em;
  color: #feca1b;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-section p {
  font-size: 1.2em;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}
.hero-image {
  margin: 20px auto;
  max-width: 600px;
}
.hero-image img {
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.hero-image img:hover {
  transform: scale(1.02);
}

.about-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #1e1e1e;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.about-section h2 {
  font-size: 2em;
  color: #feca1b;
  margin-bottom: 20px;
}
.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #ddd;
  line-height: 1.8;
}

.features h2 {
  text-align: center;
  font-size: 2em;
  color: #feca1b;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.features-intro {
  text-align: center;
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  text-align: center;
  margin: 30px 0;
}

.cta a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  margin: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.join-btn {
  background: linear-gradient(135deg, #4a2cd1, #6a4cd1);
  color: #fff;
}

.join-btn:hover {
  background: linear-gradient(135deg, #5a3ce1, #7a5ce1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 44, 209, 0.4);
}

.download-btn {
  background: linear-gradient(135deg, #feca1b, #ffd700);
  color: #000;
}

.download-btn:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(254, 202, 27, 0.4);
}

@media (max-width: 480px) {
  .cta a {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}

.get-started {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.get-started h2 {
  text-align: center;
  font-size: 2em;
  color: #feca1b;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.get-started .features-intro {
  text-align: center;
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.get-started .feature {
  background: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.get-started .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.get-started h3 {
  color: #feca1b;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.get-started p {
  color: #ddd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .get-started {
    padding: 40px 15px;
  }
  
  .get-started .feature {
    padding: 20px;
  }
  
  .get-started h2 {
    font-size: 1.8em;
  }
  
  .get-started h3 {
    font-size: 1.2em;
  }
}

.footer {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
  color: #aaa;
}

@media (max-width: 768px) {
  .features,
  .get-started,
  .login-section,
  .download-section {
    padding: 40px 15px;
  }
  
  .features h2,
  .get-started h2,
  .login-section h2,
  .download-section h2 {
    font-size: 1.8em;
  }
  
  .features li,
  .get-started li {
    font-size: 0.95em;
  }
  
  .support p,
  .login-section p,
  .download-section p {
    font-size: 0.95em;
  }
  
  .cta .cta a {
    padding: 12px 25px;
    font-size: 1em;
  }
}

.hero-image img,
.apk-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover,
.apk-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero-image img,
  .apk-image {
    max-width: 100%;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-top: 1px solid #333;
}

.testimonials h2 {
  text-align: center;
  font-size: 2em;
  color: #feca1b;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #feca1b;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.testimonial p {
  color: #fff;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial span {
  color: #feca1b;
  font-weight: bold;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 40px 15px;
  }
  
  .testimonials h2 {
    font-size: 1.8em;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial {
    padding: 20px;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2em;
  }
  
  .hero-section h2 {
    font-size: 1.1em;
  }
  
  .hero-section p {
    font-size: 1em;
  }
  
  .features h2,
  .get-started h2,
  .login-section h2,
  .download-section h2,
  .testimonials h2 {
    font-size: 1.6em;
  }
  
  .mobile-header {
    padding: 15px 0;
  }
  
  .mobile-logo img {
    width: 100px;
  }
  
  .container {
    width: 95%;
    padding: 0 10px;
  }
}

/* Improved Color Scheme */
.features,
.login-section,
.download-section,
.support,
.earn,
.games {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-top: 1px solid #333;
}

.features h2,
.login-section h2,
.download-section h2,
.support h2,
.earn h2,
.games h2 {
  text-align: center;
  font-size: 2em;
  color: #feca1b;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.features ul,
.login-section ul,
.download-section ul,
.support ul,
.earn ul,
.games ul {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.features li,
.login-section li,
.download-section li,
.support li,
.earn li,
.games li {
  margin-bottom: 15px;
  color: #ddd;
  line-height: 1.6;
  font-size: 1.05em;
}

.features li:hover,
.login-section li:hover,
.download-section li:hover,
.support li:hover,
.earn li:hover,
.games li:hover {
  color: #feca1b;
  transition: color 0.3s ease;
}

.support p,
.login-section p,
.download-section p,
.earn p,
.games p {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #ccc;
  line-height: 1.7;
  font-size: 1.05em;
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
a:focus,
button:focus {
  outline: 2px solid #feca1b;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-section h1,
  .features h2,
  .get-started h2,
  .login-section h2,
  .download-section h2,
  .support h2,
  .earn h2,
  .games h2,
  .testimonials h2 {
    color: #ffff00;
  }
  
  .download-btn,
  .join-btn {
    border: 2px solid #000;
  }
}
