/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 1000;
}

/* Logo */
.navbar-logo img {
  height: 40px;
}

/* Desktop Menu */
.navbar-menu {
  display: flex;
  align-items: center;
}

/* Menu Links */
.menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.menu li a {
  color: #fff;
  text-decoration: none;
}

/* Buttons */
.menu-buttons {
  margin-left: 20px;
}

.login-btn,
.signup-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.signup-btn {
  background-color: #1e6ce9;
  color: #fff;
  border-radius: 5px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #000;
  padding: 30px;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  margin: 20px;
  padding: 0;
}

.mobile-menu ul li {
  padding: 20px 0;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
}

.mobile-menu.show {
  display: block;
}

/* Style for Login and Register buttons */
.btn-login, .btn-register {
  display: block;
  padding: 12px 20px;
  text-align: center;
  background-color: #44acfc;  /* Green for Register */
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;  /* Add some space above the buttons */
  transition: background-color 0.3s ease;
}

.btn-login {
  background-color: #555;  /* Darker background for Login */
}

.btn-login:hover {
  background-color: #333;  /* Darker on hover */
}

.btn-register:hover {
  background-color: #b2cce0;  /* Lighter orange for Register on hover */
}

  /* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Banner Section */
  .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 50, 0, 0.6));
    color: #fff;
    position: relative;
  }
  
  .banner-content {
    max-width: 50%;
    z-index: 1;
  }
  
  .banner-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: white;
  }
  
  .banner-title {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #1e6ce9;
  }
  
  .banner-buttons {
    display: flex;
    gap: 15px;
  }
  
  .btn-login,
  .btn-register {
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
  }
  
  .btn-login {
    background-color: #555;
    color: #fff;
  }
  
  .btn-login:hover {
    background-color: #333;
  }
  
  .btn-register {
    background-color: #44acfc;
    color: #fff;
  }
  
  .btn-register:hover {
    background-color: #1e6ce9;
  }
  
  /* Banner Image */
  .banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }


/* General Styles for Promotions Section */
.promotions {
  padding: 40px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.promotions h2 {
  font-size: 2rem;
  color: #1e6ce9;
  text-align: center;
  margin-bottom: 20px;
}

.promotions p {
  font-size: 1rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

/* Styling the Promotion Table */
.promotion-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.promotion-table th,
.promotion-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.promotion-table th {
  background-color: #1e6ce9;
  color: white;
  font-weight: bold;
}

.promotion-table td {
  background-color: #fff;
  color: #555;
}

/* Styling for Promotion Image */
.promotion-image {
  text-align: center;
  margin-bottom: 30px;
}

.promotion-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.promotions ol, .promotions ul {
  list-style-position: inside;
  color: black;
  padding: 0;
  text-align: center;
}
.promotions a {
  color: darkred;
  text-decoration: underline;
}

.content-section {
  text-align: center;
  color: #333;
  margin: 20px auto;
  max-width: 800px;
}
.content-section h2 {
  font-size: 2em;
  color: #1e6ce9;
  margin-bottom: 15px;
}
.content-section p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.content-section ul, .content-section ol {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
  color: #444;
}
.content-section a {
  color: #44acfc;
  text-decoration: underline;
}

/* Styling the Bullet Points */
.highlighted-promotions {
  list-style-type: none;
  padding: 0;
  font-size: 1rem;
  margin-bottom: 40px;
}

.highlighted-promotions li {
  background-color: #e6f2ff;
  padding: 12px;
  margin: 8px 0;
  border-left: 5px solid #1e6ce9;
  font-weight: bold;
}

.highlighted-promotions li b {
  color: #1e6ce9;
}

/* Crypto Section */
.crypto-section {
  background-color: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.crypto-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.crypto-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.crypto-icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.crypto-icons img:hover {
  transform: scale(1.1);
}

.sign-up-button {
  display: inline-block;
  background-color: #1e6ce9;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.sign-up-button:hover {
  background-color: #1e6ce9;
}

/* Partners Section */
.partners-section {
  background-color: #222;
  padding: 20px;
  text-align: center;
}

.partners-section h4 {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 30px;
  transition: opacity 0.3s;
}

.partners-logos img:hover {
  opacity: 0.8;
}
  
/* Footer Section */
.footer {
  background-color: #222;
  color: #fff;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column p {
  margin: 5px 0;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-icons img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 10px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #1e6ce9;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 20px 40px;
  background-color: #111;
  color: #fff;
}

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #1e6ce9;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  overflow: hidden; /* Prevents answer overflow */
  transition: max-height 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e6ce9;
  transition: transform 0.3s;
}

.faq-question:hover {
  color: #1e6ce9;
}

.faq-answer {
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease;
  color: #aaa;
  padding: 0 0 0 10px; /* Added padding for better visual structure */
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content size */
  padding: 10px 0 10px 10px; /* Reveal padding for answer */
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); /* Rotate the '+' sign */
}

/* Pros and Cons Section */
.pros-cons-section {
  padding: 20px 40px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.pros-cons-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e6ce9;
}

.pros-cons-table {
  margin: 0 auto;
  overflow-x: auto; /* Ensures responsiveness for small screens */
}

.pros-cons-table table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  color: #fff;
  background-color: #222;
}

.pros-cons-table th, 
.pros-cons-table td {
  border: 1px solid #444;
  padding: 15px;
  text-align: left;
}

.pros-cons-table th {
  background-color: #333;
  color: #1e6ce9;
}

.pros-cons-table td {
  font-size: 0.95rem;
  color: #aaa;
}

.pros-cons-table tr:nth-child(even) {
  background-color: #2a2a2a;
}

.pros-cons-table tr:hover {
  background-color: #333;
  color: #fff;
}

/* Create Account Section */
.create-account-section {
  padding: 20px 40px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.create-account-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e6ce9;
}

.account-steps {
  margin: 0 auto;
  padding: 0;
  max-width: 600px;
  text-align: left;
  list-style-position: inside;
}

.account-steps li {
  font-size: 1rem;
  margin-bottom: 15px;
  background-color: #222;
  padding: 10px;
  border-radius: 5px;
  color: #aaa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.account-steps li strong {
  color: #fff;
}

.account-steps li:hover {
  background-color: #333;
  color: #fff;
}

/* Welcome Package Section */
.welcome-package {
  padding: 20px 40px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.welcome-package h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e6ce9;
}

.welcome-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #aaa;
}

.welcome-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.welcome-content ul li {
  font-size: 1rem;
  color: #fff;
  background-color: #222;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
}

.cta-button {
  display: inline-block;
  background-color: #1e6ce9;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1e6ce9;
}

/* About Wowbet9 Section */
.about-wowbet9 {
  padding: 20px 40px;
  background-color: #222;
  color: #fff;
}

.about-wowbet9 h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e6ce9;
}

.about-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #aaa;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.about-content ul li {
  font-size: 1rem;
  color: #fff;
  background-color: #333;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
}


  /* Responsive */
  @media (max-width: 768px) {
    .navbar-menu {
      display: none; /* Hide the desktop menu */
    }
  
    .hamburger-menu {
      display: flex; /* Show the hamburger menu */
    }
  
    .mobile-menu ul li {
      border-bottom: 1px solid #444;
    }
  
    .mobile-menu ul li:last-child {
      border-bottom: none;
    }

  .banner {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
    
  .banner-content {
        max-width: 100%;
        margin-bottom: 30px;
  }
    
    .banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-image img {
      width: 100%; /* Full width on mobile */
      height: auto;
      margin: 20px 0;
    }

    .games-container {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto; /* Horizontal scrolling */
      padding: 10px;
  }

  .games-container::-webkit-scrollbar {
      display: none; /* Hide scrollbar for cleaner look */
  }

  .game-card {
      flex: 0 0 70%; /* Show larger cards for better visibility */
      margin-right: 10px; /* Space between cards */
  }

  .jackpot-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .jackpot-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .jackpot-image {
    max-width: 100%;
  }

  .crypto-icons {
    gap: 10px;
  }

  .crypto-icons img {
    width: 30px;
    height: 30px;
  }

  .partners-logos img {
    height: 25px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-icons {
    margin-top: 20px;
  }

  .faq-section {
    padding: 15px 20px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-toggle {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 0 0 5px;
  }

  }
  