body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #181818;
  color: #fff;
  line-height: 1.6;
  padding-top: 80px;
}

/* Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-main {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-main:hover {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-item {
  margin: 0;
}

.nav-item:before {
  content: none !important;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c50fc3, #b02b21);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #c50fc3;
  transform: translateY(-2px);
  background: rgba(197, 15, 195, 0.1);
}

.nav-link:hover:before {
  width: 80%;
}

.download-nav-btn {
  background: linear-gradient(90deg, #c50fc3 0%, #b02b21 100%);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.download-nav-btn:hover {
  background: #fff;
  color: #b02b21 !important;
  transform: translateY(-2px);
}

.download-nav-btn:before {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(34, 34, 34, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    gap: 10px;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 10px 0;
  }

  .nav-item:before {
    content: none !important;
  }

  .hamburger {
    display: flex;
  }

  .logo-main {
    height: 40px;
  }
}

header {
  background: linear-gradient(90deg, #c50fc3 0%, #b02b21 100%);
  padding: 60px 20px 40px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.header-text {
  text-align: left;
}
.header-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.game-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 1));
  transition: transform 0.3s ease;
  cursor: pointer;
}
.game-image:hover {
  transform: scale(1.05);
}
header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
header p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.app-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 0.9rem;
}
.cta-btn {
  background: #fff;
  color: #b02b21;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  cursor: pointer;
}
.cta-btn:hover {
  background: #b02b21;
  color: #fff;
  transform: translateY(-2px);
}
section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 30px 20px;
  background: #222;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #c50fc3;
  text-align: center;
}
section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.text-content {
  text-align: left;
}
.text-content h2 {
  text-align: left;
}
.text-content p {
  text-align: left;
}
.image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 1));
  transition: transform 0.3s ease;
  cursor: pointer;
}
.section-image:hover {
  transform: translateY(-5px);
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
ul li:before {
  content: "✔";
  color: #c50fc3;
  position: absolute;
  left: 0;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.feature-item {
  background: #292929;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(197, 15, 195, 0.2);
}
.feature-item h3 {
  color: #b02b21;
  margin-bottom: 10px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.game-item {
  background: linear-gradient(135deg, #c50fc3, #b02b21);
  color: white;
  padding: 15px 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  transition: transform 0.3s;
  cursor: pointer;
}
.game-item:hover {
  transform: scale(1.05);
}
.offers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.offer-item {
  background: #292929;
  border: 2px solid #c50fc3;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s;
  cursor: pointer;
}
.offer-item:hover {
  border-color: #b02b21;
}
.offer-item h3 {
  color: #c50fc3;
  margin-bottom: 10px;
}
.agent-rewards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.reward-tier {
  background: #292929;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #c50fc3;
  font-weight: bold;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.step {
  background: #292929;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}
.step h3 {
  color: #b02b21;
  margin-bottom: 15px;
}
.download-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
.info-box {
  background: #292929;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}
.info-box h4 {
  color: #c50fc3;
  margin-bottom: 15px;
}
.download-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c50fc3 0%, #b02b21 100%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  cursor: pointer;
}
.download-btn:hover {
  background: #fff;
  color: #b02b21;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 15, 195, 0.3);
}
.disclaimer {
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
}
footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  margin-top: 60px;
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.footer-section h4 {
  color: #c50fc3;
  margin-bottom: 15px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
  padding-left: 0;
}
.footer-section ul li:before {
  content: none;
}
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-section a:hover {
  color: #c50fc3;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.18, 1),
    transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  .header-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .header-text {
    text-align: center;
  }
  .section-with-image {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .text-content {
    text-align: center;
  }
  .text-content h2 {
    text-align: center;
  }
  .text-content p {
    text-align: center;
  }
  .app-info {
    flex-direction: column;
    gap: 15px;
  }
  section {
    margin: 30px 8px;
    padding: 20px 15px;
  }
  .features-list,
  .games-grid,
  .offers-list,
  .agent-rewards,
  .steps,
  .download-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .download-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* FAQ Section Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #292929;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #333;
  transition: border-color 0.3s;
}
.faq-item.active {
  border-color: #c50fc3;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #292929;
  transition: background-color 0.3s;
}
.faq-question:hover {
  background: #333;
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
  flex: 1;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #c50fc3;
  font-weight: bold;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #1f1f1f;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}
.faq-answer p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
  text-align: left;
}
