/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
 background: url('https://images.unsplash.com/photo-1476231682828-37e571bc172f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center fixed;
      background-size: cover;
      
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden; /* Prevent native body scroll */
}

.page-wrapper {
  height: 100%;
  overflow-y: auto;        /* Allows vertical scroll */
  -webkit-overflow-scrolling: touch; /* Smooth scroll on mobile */
}


.hero {
      position: relative;
      height: 90vh;
      overflow: hidden;
    }
    
    
    .hero-content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .logo {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .nav-link {
      display: flex;
      align-items: center;
      gap: 20px;
      color: white !important;
    }
    
    .nav-link:hover {
      color: #f1c40f !important;
    }
  .navbar-toggler-icon{
    color: white;
    background-color: #fff;
  }
/* ABOUT SECTION */
.about-section {
  max-width: 800px;
  height: 500px; 
  margin: 0 auto 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f6d365, #fda085);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.about-section p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.features-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.features-list li {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}
.features-list li i {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #f7931e;
}
.features-list li:hover {
  transform: translateY(-4px);
}

/* HOW TO PLAY SECTION */
.howto-section {
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(135deg, #81ecec, #74b9ff);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.howto-section h2,
.howto-section h3 {
  text-align: center;
}
.howto-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.rules-list {
  margin-left: 1rem;
  font-size: 1rem;
  margin-bottom: 30px;
}
.rules-list li {
  margin-bottom: 12px;
}
.howto-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.tips-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.tips-list li {
  background: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  flex: 1 1 200px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}
.tips-list li:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .about-section, .howto-section {
    padding: 30px 15px;
  }
  .about-section h2 { font-size: 2rem; }
  .howto-section h2 { font-size: 1.75rem; }
  .howto-section h3 { font-size: 1.5rem; }
  .features-list li,
  .tips-list li {
    flex: 1 1 100%;
  }
  .rules-list {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}
