/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* === Header === */
header {
  background: #654bf2;
  padding: 10px 0;
}

header .logo img {
  height: 50px;
}

.navbar-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.hamburger {
  border: none;
  background: transparent;
}

/* === Buttons === */
.btn_green {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
}

.btn_green:hover {
  background-color: #218838;
}

/* === Home Banner === */
.home_banner {
  background: url('home_banner_bg.png') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
}

.home_banner h2, .home_banner h3 {
  color: white;
  margin-bottom: 20px;
}

/* === Sections === */
section {
  padding: 60px 0;
}

.page_common_heading {
  text-align: center;
  margin-bottom: 40px;
}

.page_heading_title {
  font-size: 32px;
  color: #333;
}

.page_heading_seprator {
  width: 60px;
  height: 3px;
  background: #654bf2;
  margin: 20px auto 0;
}

.page_common_content p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* === Counter Section === */
.counter_section_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.counter_section_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter_section_title {
  font-size: 24px;
  font-weight: bold;
}

.counter_section_para {
  font-size: 14px;
  color: #666;
}

/* === How To Play Section === */
.how_to_play_content ul {
  list-style: none;
}

.how_to_play_content li {
  display: flex;
  align-items: flex-start;
}

.how_to_play_content_heading {
  font-size: 24px;
  font-weight: bold;
}

.how_to_play_content_text {
  font-size: 16px;
  color: #555;
}

/* === Footer === */
footer {
  background: #222;
  color: #ccc;
  padding-top: 40px;
}

.footer_first, .footer_second {
  padding: 20px 0;
}

.footer_logo img {
  width: 150px;
}

.footer_menu {
  list-style: none;
}

.footer_menu li a {
  color: #ccc;
  text-decoration: none;
}

.footer_menu li a:hover {
  color: #fff;
}

.footer_social_icons {
  list-style: none;
  display: flex;
  gap: 10px;
}

.footer_social_icons li a {
  color: #654bf2;
  font-size: 20px;
}

.footer_copywrite {
  font-size: 14px;
  color: #888;
  text-align: center;
}

/* === Fixed Social Icons === */
.fixed_social_icons ul {
  list-style: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
}

.fixed_social_icons ul li {
  margin-bottom: 10px;
}

.fixed_social_icons ul li a {
  color: #654bf2;
  font-size: 24px;
}

/* === Popup Consent === */
.consent_popup {
  background: rgba(0,0,0,0.8);
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
}

.popup_close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  font-size: 20px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .counter_section_inner {
    flex-direction: column;
  }

  .how_to_play_content ul {
    padding-left: 0;
  }
  
  .home_banner h2, .home_banner h3 {
  color: pink;
}

}
