* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  background-color: #4a90e2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #3a7bc8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
}

section {
  padding: 60px 0;
}

/* Header Styles */
header {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #4a90e2;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #4a90e2;
}

nav ul li a:hover:after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
}

.download-btn {
  margin-left: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  margin-left: 15px;
  z-index: 101;
}

.mobile-menu-btn .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #4a90e2;
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #4a90e2;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 25px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active ul li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu.active ul li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu ul li a {
  color: white;
  font-size: 24px;
  font-weight: 600;
  display: block;
  padding: 10px;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #4a90e2;
  transform: scale(1.05);
}

.mobile-menu .btn {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  transition-delay: 0.6s;
}

.mobile-menu.active .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  background-color: #000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  padding-right: 40px;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccc;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Download Form */
.download-form {
  margin-top: 30px;
}

.download-form form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.download-form input {
  padding: 15px;
  border-radius: 8px;
  border: none;
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.download-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #4a90e2, 0 2px 5px rgba(0, 0, 0, 0.1);
}

.download-form button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  padding: 15px;
}

/* Features Section */
.features {
  background-color: #111;
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #4a90e2;
  text-align: center;
  margin-bottom: 50px;
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  background-color: #000;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 300px;
  transform: rotate(-3deg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 255, 0.1);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* Benefits Section */
.benefits {
  background-color: #000;
  padding: 80px 0;
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit-card {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 20px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* Info Banner */
.info-banner {
  background-color: #4a90e2;
  padding: 60px 0;
  text-align: center;
}

.info-banner h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.info-banner p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

/* How to Play */
.how-to-play {
  background-color: #000;
  padding: 80px 0;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: #4a90e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.step-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* Testimonials */
.testimonials {
  background-color: #111;
  padding: 80px 0;
}

.testimonials-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 250px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 18px;
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

/* FAQ Section */
.faq {
  background-color: #000;
  padding: 80px 0;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.faq-content {
  flex: 1;
}

.faq-image {
  flex: 1;
  text-align: center;
}

.faq-image img {
  max-width: 100%;
  border-radius: 10px;
}

.accordion {
  margin-bottom: 15px;
}

.accordion-header {
  background-color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:after {
  content: "+";
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active:after {
  transform: rotate(45deg);
}

.accordion-content {
  background-color: #f9f9f9;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.accordion-content-inner {
  padding: 20px;
  color: #666;
}

.accordion-header.active + .accordion-content {
  max-height: 200px;
  padding: 15px 20px;
}

/* Footer */
footer {
  background-color: #111;
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #4a90e2;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #ccc;
  font-size: 14px;
}

.age-restriction {
  display: flex;
  align-items: center;
}

.age-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  color: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content,
  .faq-container {
    flex-direction: column;
  }

  .hero-text,
  .faq-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .feature-card,
  .benefit-card,
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .feature-card,
  .benefit-card,
  .testimonial-card {
    min-width: 100%;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .header-container .btn {
    display: none;
  }
}
.thank-you-page {
  min-height: calc(100vh - 200px);
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cricket.webp") center / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.thank-you-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-content h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 30px;
}

.thank-you-content p {
  font-size: 20px;
  color: #4a90e2;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thank-you-content .btn {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .thank-you-content h2 {
    font-size: 36px;
  }

  .thank-you-content p {
    font-size: 18px;
  }
}
.privacy-policy {
  padding: 60px 0;
  background-color: #000;
  color: #fff;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 40px;
  text-align: center;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 15px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.policy-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-section ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .policy-section h3 {
    font-size: 20px;
  }
}
.disclaimers {
  padding: 60px 0;
  background-color: #000;
  color: #fff;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 40px;
  text-align: center;
}

.disclaimer-section {
  margin-bottom: 40px;
}

.disclaimer-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 15px;
}

.disclaimer-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.disclaimer-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.disclaimer-section ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .disclaimer-section h3 {
    font-size: 20px;
  }
}
.terms-conditions {
  padding: 60px 0;
  background-color: #000;
  color: #fff;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 40px;
  text-align: center;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 15px;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.terms-section ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .terms-section h3 {
    font-size: 20px;
  }
}

#error-message {
  display: none;
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 5px;
}

