/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
 .reviews {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .reviews .container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }

  .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
  }

  .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-5px);
  }

  .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
  }

  .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
  }

  .review-stars {
    color: #f4b400;
    font-weight: bold;
  }
/* Header styles */
header {
  background: rgba(26, 36, 46, 0.6); /* Semi-transparent dark background */
  backdrop-filter: blur(10px); /* Blur effect behind the header */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  height: 60px;       /* Bigger by default */
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .logo {
    height: 50px; /* Slightly smaller on tablets */
  }
}

@media screen and (max-width: 480px) {
  .logo {
    height: 40px; /* Smaller on mobile for better fit */
  }
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .site-name {
    font-size: 1.3rem;
  }
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}


main {
  margin: 0; /* Remove margin */
}

/* Hero section with background image */
.hero {
  position: relative;
  background: url('/assets/images/banner.webp') no-repeat center center / cover;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: flex-end; /* Align content to the bottom */
  justify-content: center;
  min-height: 100vh;
  padding: 60px 20px 40px; /* Extra top padding for spacing */
  box-sizing: border-box;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Optional: adds readability */
  border-radius: 16px;
  backdrop-filter: blur(4px); /* Optional: subtle blur effect */
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ff9f1a);
  color: #1a1a1a;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: bounce 2.5s infinite;
}

.hero .cta-button i {
  margin-right: 8px;
}

.hero .cta-button:hover {
  background: linear-gradient(135deg, #ff9f1a, #ffd700);
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 185, 0, 0.6);
  transform: scale(1.05);
}

.hero .cta-button::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 10px;
  box-shadow: 0 0 15px 5px rgba(255, 223, 0, 0.4);
  opacity: 0;
  animation: pulse-glow 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pulse-glow {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.1); }
  100% { opacity: 0.4; transform: scale(1); }
}

/* Responsive hero section */
@media screen and (max-width: 768px) {
  .hero {
    padding: 30px 15px;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 20px 10px;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero .cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

@media print {
  .hero .cta-button {
    display: none;
  }
}

/* Fixed download floating button */
.download-btn {
  position: fixed;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  padding-right: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .download-btn {
    font-size: 14px;
    padding: 12px 18px;
  }
}

@media screen and (max-width: 480px) {
  .download-btn {
    font-size: 13px;
    padding: 10px 16px;
    right: 5px;
  }
}



/* Features section */
.features {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.feature-item h3 {
  margin-bottom: 10px;
}
/* How to play section */
.how-to-play {
  background-color: #1a1a2e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  width: 100%; /* Make the section full width */
}

.how-to-play .container {
  max-width: 1200px; /* Set a max-width for larger screens */
  margin: 0 auto; /* Center the content */
  padding: 0 20px; /* Padding to avoid content sticking to edges */
}

/* List styles */
.how-to-play ol {
  list-style-position: inside;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

/* Adjust list items to fit better */
.how-to-play li {
  margin-bottom: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: transform 0.3s ease;
  padding: 0 20px; /* Padding for balance */
}

.how-to-play li i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #ffd700;
}

/* Hover effect for steps */
.how-to-play li:hover {
  transform: translateX(10px);
}

/* CTA Button */
.how-to-play .cta-button {
  background-color: #ffd700;
  color: #2e241a;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.how-to-play .cta-button i {
  margin-right: 10px;
}

.how-to-play .cta-button:hover {
  background-color: #ffed4a;
  transform: scale(1.1);
}

/* Mobile and smaller screen adjustments */
@media screen and (max-width: 768px) {
  .how-to-play ol {
    padding-left: 0;
  }

  .how-to-play li {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 12px;
  }

  .how-to-play .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Benefits section */
.benefits {
  padding: 80px 0;
  background: linear-gradient(135deg, #f4f4f4, #e0e0e0);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.4));
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.benefit-item:hover i {
  transform: scale(1.2);
}

.benefit-item h3 {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #555;
  font-size: 1rem;
}

/* Improved Responsive design */
@media screen and (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .benefit-item i {
    font-size: 2rem;
  }
}



.stats .stat-item i {
  font-size: 40px; /* Adjust size as needed */
  margin-bottom: 10px;
  color: #ffd700; /* Optional: Give a nice golden color */
}
.stat-item h3 {
  margin-top: 10px;
  font-size: 1.8rem;
}

.stat-item p {
  font-size: 1rem;
  color: #ccc;
}


/* Stats section */
.stats {
  background-color: #1a1a2e;
  color: #fff;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd700;
}

/* FAQ section */
.faq {
  padding: 80px 20px;
  background-color: #f7f7f7;
  color: #333;
  text-align: center;
}

.faq .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2e241a;
  transition: color 0.3s ease;
}

.faq-answer {
  color: #666;
  display: none;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Toggle answer visibility */
.faq-item.active .faq-answer {
  display: block;
}

/* Accent color for interactive text */
.faq-question:hover {
  color: #ffd700;
}

/* Download CTA Button */
.faq .cta-button {
  background-color: #ffd700;
  color: #2e241a;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 30px;
}

.faq .cta-button i {
  margin-right: 10px;
}

.faq .cta-button:hover {
  background-color: #ffed4a;
  transform: scale(1.05);
}

/* Improved Responsive design */
@media screen and (max-width: 768px) {
  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .faq .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Footer styles */
footer {
  background-color: #1a1a2e;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #ffd700;
  text-decoration: none;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
}

/* Improved Responsive design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #1a1a2e;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-grid,
  .benefits-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .benefit-item,
  .stat-item {
    padding: 20px;
  }


 


}

/* Additional mobile optimizations */
@media screen and (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-item i,
  .benefit-item i {
    font-size: 2rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  footer {
    padding: 30px 0;
  }

  .social-icons a {
    font-size: 1.2rem;
    margin: 0 5px;
  }
}

/* Improved Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item,
.benefit-item,
.stat-item,
.faq-item {
  animation: fadeIn 0.5s ease-in-out;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for better keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .cta-button {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 2cm;
  }
}