

:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;

  --footer-bg-color: #863f09;
  --link-color: #ffffff;
  --header-bg-color: #ffffff;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #f5f5f5;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
    
}

  
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color) !important;
}


    .content-area h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.content-area h2::before,
.content-area h2::after {
  content: "";
  width: 40px;  
  height: 2px;
  background-color: var(--heading-color)  ;
}
    

.content-area a {
  color: var(--link-color) ;
  text-decoration: underline;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

  
  
.error_page {
  min-height: 70vh;
}


  .footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  


 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;

}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 105px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url('/images/gambling-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(87, 48, 3, 0.534));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

  
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }
  
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }

  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
  /* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

            


.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}






.gis-wrap {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gis-surface {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 240, 0.9));
  backdrop-filter: blur(6px);
  border-radius: 28px;
  padding: 40px 20px;
  box-shadow:
    0 25px 60px rgba(180, 120, 40, 0.15),
    0 5px 20px rgba(120, 160, 120, 0.1);
  border: 1px solid rgba(255, 210, 170, 0.4);
}

.gis-header h2,
.gis-card h3 {
  color: #5a3a1e;
  letter-spacing: 0.5px;
}

.gis-intro p,
.gis-header p,
.gis-card p,
.gis-li-text {
  color: #5f5a4f;
}

.gis-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}

.gis-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #e2b37a, transparent);
}

.gis-divider-badge {
  margin: 0 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe7c8, #e9f5e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c88a3d;
  box-shadow: 0 8px 18px rgba(200, 140, 60, 0.25);
}

.gis-grid {

  margin-top: 40px;
}

.gis-card {
  background: linear-gradient(160deg, #ffffff, #f4fbf2);
  border-radius: 22px;
  padding: 35px 20px;
  box-shadow:
    0 20px 45px rgba(170, 110, 40, 0.12),
    0 4px 12px rgba(120, 160, 120, 0.08);
  border: 1px solid rgba(220, 200, 170, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gis-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(170, 110, 40, 0.18),
    0 8px 18px rgba(120, 160, 120, 0.12);
}

.gis-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.gis-chip {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffd8a8, #dff2dc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b87428;
  box-shadow: 0 10px 20px rgba(200, 140, 60, 0.25);
}

.gis-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.gis-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.gis-li-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffe4c2, #e6f4e4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c27a2c;
  flex-shrink: 0;
}


.faq {
  position: relative;
  padding: 90px 20px;
    overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 70%);
  pointer-events: none;
}

.faq > * {
 margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #5a3a1e;
  letter-spacing: 0.5px;
}

.faq h3 {
  margin-top: 40px;
  margin-bottom: 12px;
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffe3c2, #e4f3e2);
  color: #6a4120;
  box-shadow: 0 10px 25px rgba(180, 120, 40, 0.15);
}

.faq p {
  margin: 0 0 20px 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #f3fbf2);
  color: #5f5a4f;
  line-height: 1.7;
  box-shadow:
    0 15px 35px rgba(170, 110, 40, 0.1),
    0 4px 10px rgba(120, 160, 120, 0.08);
  border: 1px solid rgba(220, 200, 170, 0.3);
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 15px;
  }

  .faq h3,
  .faq p {
    padding: 16px 18px;
  }
}



.styled-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.styled-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 15px;
  background-color: #fff8f0;
  border: 1px solid #f2d8c2;
  border-radius: 6px;
  color: #444;
}

.styled-list li i {
  font-size: 18px;
  color: #c47a2c;
}
