* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: white;
  overflow-x: hidden;
}

/* navigation bar */
.navbar {
  background-color: #0e5d0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;

  /* Fixed position to stay on top */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* stay above other elements */
}


.navbar-logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Brush Script MT', cursive;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
  padding: 14px 10px;
  display: block;
  transition: background 0.3s;
  border-radius: 24px;
}

.navbar-menu a:hover {
  background-color: #e3e027;
  color: #111;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    width: 100%;
  }

  .navbar-toggle {
    display: block;
  }
}


/* header */
.seemore-header {
  display: flex; /* make it a flex container */
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  padding: 100px 40px;
  flex-wrap: wrap;
  background: #be081a;
  height: 30px; /* optional: increase height to center visibly */
  text-align: center; /* ensure text is centered */
}

.head-container {
  color: white;
  max-width: 400px;
}

.head-container h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 768px) {
  .head-container h1 {
    font-size: 16px;
  }
}



/* section 8 */

.two-column-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  align-items: center;
}

.left-content {
  flex: 1 1 500px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.left-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.4;
}

.left-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
}

.right-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.right-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
    padding: 20px;
    
  }

  .left-content h2 {
    font-size: 26px;
  }

  .left-content p {
    font-size: 16px;
  }

  .right-image {
    margin-top: 20px;
  }

  .right-image img {
  width: 100%;
  max-width: 250px;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}
}

.two-column-trial-btn {
  position: relative;
  overflow: hidden;
  padding: 8px 12px;
  background-color: #fcdb19; /* original background */
  color: #007a0d;             /* original text color */
  border: 2px solid #007a0d;
  border-radius: 8px;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 30px;
  transition: color 0.4s ease;
  z-index: 1;
}

.two-column-trial-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #007a0d; /* text color becomes background */
  z-index: 0;
  transition: left 0.4s ease;
}

.two-column-trial-btn:hover::before {
  left: 0;
}

.two-column-trial-btn:hover {
  color: #fcdb19; /* background becomes text */
  border-color: #fcdb19;
}

.two-column-trial-btn {
  position: relative;
}

.two-column-trial-btn > * {
  position: relative;
  z-index: 1;
}


/* list content  */
.name-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000;
}

.name-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
}

.name-list li {
  margin-bottom: 8px;
  list-style-position: inside;
}

.name-list li::marker {
  color: #FFD700; /* Yellow bullet */
}

/* ******************************************* */

.fandom-section {
  padding: 60px 30px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.fandom-container {
  display: flex;
  flex-wrap: nowrap; /* horizontal layout on desktop */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.fandom-image {
  flex: 1 1 50%;
  text-align: center;
}

.fandom-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.fandom-content {
  flex: 1 1 50%;
  max-width: 100%;
}

.fandom-content h2 {
  font-size: 28px;
  color: #014b19;
  font-weight: bold;
  margin-bottom: 10px;
}

.fandom-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.fandom-content ul {
  list-style: none;
  padding-left: 0;
}

.fandom-content ul li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.fandom-content ul li::before {
  content: "•";
  color: #f7d000;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}

/* Responsive: stack image and content on smaller screens */
@media screen and (max-width: 768px) {
  .fandom-container {
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
  }

  .fandom-image,
  .fandom-content {
    flex: 1 1 100%;
  }

  .fandom-content ul li {
    text-align: left;
  }
}

/* ********************************** */

.matchfaq-section {
  padding: 60px 30px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.matchfaq-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #014b19;
  margin-bottom: 40px;
}

.matchfaq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.matchfaq-col {
  flex: 1 1 50%;
  min-width: 300px;
}

.matchfaq-item {
  margin-bottom: 30px;
}

.matchfaq-item h3 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
}

.matchfaq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
/* *************************************** */


/* ******************************* */
.casino-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.casino-section h2 {
  font-size: 24px;
  color: #006400;
  margin-bottom: 30px;
  font-weight: 700;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.casino-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
}

.casino-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background-color: #000;
}

.casino-card h3 {
  font-size: 18px;
  margin: 12px 0 6px;
  color: #000;
}

.casino-card p {
  font-size: 14px;
  padding: 0 10px;
  color: #444;
  flex-grow: 1;
}

.casino-footer {
  display: flex;
  justify-content: space-between;
  background-color: #f7f7f7;
  padding: 8px 12px;
}

.footer-box {
  width: 50%;
  font-size: 14px;
  padding: 8px;
  font-weight: bold;
  text-align: center;
}

.bdt {
  background-color: #e8ffe8;
  color: #007a0d;
}

.inr {
  background-color: #f0e6d6;
  color: #4a3a00;
}

/* ******************************* */


/* **************************************** */
/*footer */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

.site-footer {
  background-color: #007a0d;
  color: white;
  padding: 30px 20px;
  font-family: sans-serif;
  text-align: center;
}

.footer-top {
  margin-bottom: 20px;
}

.service-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.footer-middle {
  background-color: #002c0f;
  padding: 15px 20px;
  margin: 30px auto 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
}

.footer-logo {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.footer-logo span {
  color: #ffc107;
}

.social-icons a {
  margin: 0 8px;
  color: white;
  font-size: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 8px;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #007a0d;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  margin-top: 10px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .social-icons {
    margin-top: 10px;
  }
}

.floating-support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fcdb19;
  color: #007a0d;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-support-btn:hover {
  background-color: #e5c300;
  color: #004d0b;
}