:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #c75000;
  --hero-gradient2: #4d2505;
  --footer-bg-color: #974a17;
  --link-color: #f9e0a9;
  --header-bg-color: #ffffff;
  --font-family: Calibri, Arial, sans-serif;
  --nav-link-color: #ece3b9;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
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: inline-block;
  border-bottom: 2px dashed var(--heading-color);
  padding-bottom: 4px;
}
.content-area a {
  color: var(--link-color) ;
  text-decoration: none !important;
}
.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: 115px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.gradient-bg {
  background: linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
}
.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;
}
@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;
}
:root{
  --hero-gradient1: #c75000;
  --hero-gradient2: #4d2505;
  --footer-bg-color: #974a17;
  --link-color: #f9e0a9;
}
.h3-decor{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 10px;
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.75rem);
  line-height: 1.2;
  color: #111; 
}
.h3-decor .h3-icon{
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--link-color);
  border: 2px solid color-mix(in srgb, var(--hero-gradient1) 85%, #000 0%);
  box-shadow: 0 8px 18px rgba(77, 37, 5, 0.18);
}
.h3-decor .h3-icon i{
  font-size: 18px;
  line-height: 1;
  color: var(--hero-gradient2);
}
@media (max-width: 480px){
  .h3-decor .h3-icon{ width: 34px; height: 34px; flex-basis: 34px; }
  .h3-decor .h3-icon i{ font-size: 16px; }
}
section .h3-decor{
  position: relative;
  padding-bottom: 12px;
  color: #663309;              
  font-weight: 550;            
  letter-spacing: 0.2px;       
}
section .h3-decor::after{
  content: "";
  position: absolute;
  left: 50px; 
  bottom: 0;
  width: 90px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
  opacity: 0.9;
}
.styled-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  gap: 12px;
}
.styled-list li{
  position: relative;
  padding: 14px 16px 14px 54px;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(77, 37, 5, 0.14);
  border-radius: 14px;
  color: #2e1706;
  font-size: 1.02rem;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(77, 37, 5, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.styled-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--hero-gradient1), var(--hero-gradient2));
  opacity: 0.95;
}
.styled-list li::after{
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--link-color);
  border: 2px solid rgba(199, 80, 0, 0.40);
  color: var(--hero-gradient2);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(77, 37, 5, 0.14);
}
.styled-list li:hover{
  transform: translateY(-2px);
  border-color: rgba(199, 80, 0, 0.28);
  box-shadow: 0 14px 30px rgba(77, 37, 5, 0.12);
}
@media (max-width: 480px){
  .styled-list li{
    padding: 12px 14px 12px 50px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .styled-list li::after{
    width: 26px;
    height: 26px;
    left: 14px;
    font-size: 13px;
  }
}
.section-wallets {
   background: linear-gradient(135deg, rgba(167, 70, 1, 0.774), rgba(83, 39, 5, 0.767)), url(/images/gambling-bg.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #ffffff!important; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
.faq{
  margin: 60px 0;
}
.faq h2{
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 1.5rem + 0.8vw, 2.4rem);
  font-weight: 650;
  color: #2e1706;
}
.faq h3{
  position: relative;
  margin: 28px 0 8px;
  padding: 14px 16px 14px 56px;
  background: #fff;
  border: 1px solid rgba(77, 37, 5, 0.15);
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 550;
  color: #3b1f08;
  box-shadow: 0 10px 26px rgba(77, 37, 5, 0.08);
}
.faq h3::before{
  content: "?";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--link-color);
  border: 2px solid rgba(199, 80, 0, 0.45);
  color: var(--hero-gradient2);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(77, 37, 5, 0.15);
}
.faq h3::after{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
}
.faq p{
  margin: 8px 0 0 0;
  padding: 12px 18px 18px 56px;
  color: #2e1706;
  line-height: 1.65;
  font-size: 1.02rem;
}
.faq h3 + p{
  border-left: 1px solid rgba(77, 37, 5, 0.08);
  margin-left: 4px;
}
@media (max-width: 480px){
  .faq h3{
    padding: 12px 14px 12px 50px;
    font-size: 1.15rem;
  }
  .faq h3::before{
    width: 26px;
    height: 26px;
    font-size: 14px;
    left: 14px;
  }
  .faq p{
    padding-left: 50px;
    font-size: 1rem;
  }
}
