:root {
  --body-bg-color: #ffffff;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #34b7a7;
  --link-color: #57d2c3;
  --header-bg-color: #216e65;
  --font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #000000;
}
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;
    
}

  
/* ===== Decorative H1 ===== */
h1{
  --accent:#34B7A7;
  --accent2:#6fe0d3;
  --dark:#0e3f3a;

  position:relative;
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  line-height:1.05;
  font-weight:800;
  letter-spacing:.4px;

  color:var(--dark);
  margin:0 0 1.6rem;
  padding-bottom:.9rem;

  text-shadow:
    0 6px 18px rgba(0,0,0,.15);
}

/* ===== Gradient underline ===== */
h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:min(340px, 75%);
  height:7px;
  border-radius:999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent2),
    rgba(111,224,211,0)
  );
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

/* ===== Decorative badge behind text ===== */
h1::before{
  content:"";
  position:absolute;
  left:-22px;
  top:-18px;
  width:68px;
  height:68px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity:.22;
  transform: rotate(14deg);
  z-index:-1;
}

/* ===== Floating dots decoration ===== */
h1 span{
  position:relative;
}

h1 span::after{
  content:"";
  position:absolute;
  right:-22px;
  top:-10px;
  width:14px;
  height:14px;
  border-radius:50%;
  background: var(--accent);
  box-shadow:
    -22px 18px 0 rgba(52,183,167,.6),
    -8px 34px 0 rgba(52,183,167,.35);
  animation:h1-float 6s ease-in-out infinite;
}

@keyframes h1-float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
  100%{ transform:translateY(0); }
}

/* ===== Responsive tweak ===== */
@media (max-width:600px){
  h1::before{
    width:52px;
    height:52px;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce){
  h1 span::after{
    animation:none;
  }
}

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) ;
}



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

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

  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
  
.error_page {
  min-height: 70vh;
}


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

.footer a {
  text-decoration: none;
  color: yellow;
}


 .navbar {
  background-color: var(--header-bg-color) !important;
  
}

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

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

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

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

  
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
}
  .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;
  }
}


            



/* ===== Styled section (teal background + moving decorative elements) ===== */
.styled-section{
  --bg:#34B7A7;
  --bg2:#2FAE9F;
  --ink:#083a36;
  --white:#ffffff;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: clamp(2.2rem, 4vw, 4.2rem) clamp(1.2rem, 3vw, 2.6rem);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 15%, rgba(255,255,255,.16), transparent 55%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  box-shadow:
    0 18px 45px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.22);
}

/* subtle pattern */
.styled-section::before{
  content:"";
  position:absolute;
  inset:-40%;
  z-index:-2;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.12) 0 2px, transparent 3px) 0 0/38px 38px,
    radial-gradient(circle at 75% 55%, rgba(0,0,0,.06) 0 2px, transparent 3px) 0 0/44px 44px;
  transform: rotate(12deg);
  opacity:.9;
}

/* moving blobs */
.styled-section::after{
  content:"";
  position:absolute;
  inset:-30%;
  z-index:-1;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.24), transparent 70%) 12% 18%/380px 380px no-repeat,
    radial-gradient(closest-side, rgba(0,0,0,.10), transparent 72%) 82% 28%/520px 520px no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%) 55% 82%/420px 420px no-repeat;
  filter: blur(2px);
  animation: ss-float 16s ease-in-out infinite;
}

@keyframes ss-float{
  0%   { transform: translate3d(0,0,0) scale(1); }
  35%  { transform: translate3d(2.5%, -1.8%, 0) scale(1.03); }
  70%  { transform: translate3d(-2.2%, 2.6%, 0) scale(1.02); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

/* ===== H2 / H3 fancy styling ===== */
.styled-section h2,
.styled-section h3{
  position: relative;
  color: var(--white);
  letter-spacing: .2px;
  text-shadow: 0 10px 28px rgba(0,0,0,.22);
  margin: 0 0 .9rem;
}

.styled-section h2{
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.1;
  padding-bottom: .65rem;
}

.styled-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: min(260px, 70%);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.35), rgba(255,255,255,0));
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.styled-section h2::before{
  content:"";
  position:absolute;
  left:-18px;
  top:-14px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  transform: rotate(12deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

.styled-section h3{
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.2;
  padding-left: 1.05rem;
}

.styled-section h3::before{
  content:"";
  position:absolute;
  left:0;
  top:.22em;
  width: 8px;
  height: 1.1em;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.styled-section h3::after{
  content:"";
  position:absolute;
  left: .95rem;
  bottom: -.45rem;
  width: min(210px, 62%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,.15), transparent);
  opacity: .9;
}

/* ===== Optional: nice body text + links inside section ===== */
.styled-section p,
.styled-section li{
  color: rgba(255,255,255,.92);
  line-height: 1.65;
}

.styled-section a{
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.7);
}
.styled-section a:hover{
  border-bottom-style: solid;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce){
  .styled-section::after{ animation: none; }
}





/* ===== Decorative boxed list ===== */
.styled-list{
  --accent:#34B7A7;
  --accent2:#5fd2c5;
  --dark:#0e3f3a;

  list-style:none;
  padding:0;
  margin:0;

  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:1.4rem;
}

/* ===== List item as card ===== */
.styled-list li{
  position:relative;
  padding:1.4rem 1.3rem 1.5rem;
  border-radius:18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
  color:var(--dark);
  box-shadow:
    0 12px 28px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.9);

  overflow:hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* hover lift */
.styled-list li:hover{
  transform: translateY(-6px);
  box-shadow:
    0 22px 44px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.95);
}

/* ===== Decorative corner blob ===== */
.styled-list li::before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  right:-40px;
  top:-40px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--accent2), var(--accent));
  opacity:.35;
}

/* ===== Decorative line ===== */
.styled-list li::after{
  content:"";
  position:absolute;
  left:18px;
  bottom:14px;
  width:60%;
  height:4px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity:.8;
}

/* ===== Optional heading/text inside li ===== */
.styled-list li h4{
  margin:0 0 .4rem;
  font-size:1.1rem;
  color:#0b4d46;
}

.styled-list li p{
  margin:0;
  font-size:.95rem;
  line-height:1.55;
}

/* ===== Animated sparkle ===== */
.styled-list li span::after{
  content:"";
  position:absolute;
  inset:auto;
}

/* ===== Responsive: under 1000px -> one column ===== */
@media (max-width:1000px){
  .styled-list{
    grid-template-columns:1fr;
  }
}

/* ===== Reduced motion safety ===== */
@media (prefers-reduced-motion: reduce){
  .styled-list li{
    transition:none;
  }
}



.section-wallets {
    background:
      linear-gradient(135deg, rgba(8, 58, 54, 0.945), rgba(8, 58, 54, 0.65)),
      url('/images/casino-bg.webp');
    background-position: center;
    background-size: cover;

    color: #eafaf8;
    padding: 50px 20px;
    border-radius: 10px;

    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35);
    text-align: center;
    margin-top: 40px;

    border: 1px solid #34B7A7;
}

.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: #5fd2c5;
    bottom: -8px;
    left: 0;
}

.section-wallets p {
    color: #cfeeed;
    line-height: 1.6;
}

.section-wallets h3 {
    color: #eafaf8 !important;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;

    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;

    background-color: rgba(52, 183, 167, 0.18);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.section-wallets h3:hover {
    background-color: #34B7A7;
    color: #083a36;
    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: #d7f3ef;
}

.section-wallets ul li::before {
    content: "✔";
    font-size: 1.5rem;
    color: #5fd2c5;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.section-wallets ul li:hover::before {
    color: #ffffff;
}


.custom-section{
  --a:#34B7A7;
  --b:#6fe0d3;
  --c:#0b4d46;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(255,255,255,.14), transparent 55%),
    linear-gradient(135deg, rgba(8,58,54,.92), rgba(8,58,54,.75));
  color:#eafaf8;
  padding:60px 20px;
  
  box-shadow:
    0 24px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.18);
  border:1px solid rgba(111,224,211,.35);
}

.custom-section::before{
  content:"";
  position:absolute;
  inset:-35%;
  z-index:-2;
  background:
    radial-gradient(circle at 25% 25%, rgba(111,224,211,.18) 0 2px, transparent 3px) 0 0/42px 42px,
    radial-gradient(circle at 75% 55%, rgba(255,255,255,.08) 0 2px, transparent 3px) 0 0/48px 48px;
  transform:rotate(10deg);
}

.custom-section::after{
  content:"";
  position:absolute;
  inset:-30%;
  z-index:-1;
  background:
    radial-gradient(closest-side, rgba(111,224,211,.35), transparent 70%) 15% 20%/420px 420px no-repeat,
    radial-gradient(closest-side, rgba(0,0,0,.25), transparent 72%) 85% 30%/520px 520px no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%) 55% 85%/460px 460px no-repeat;
  filter:blur(2px);
  animation:cs-float 18s ease-in-out infinite;
}

@keyframes cs-float{
  0%{transform:translate3d(0,0,0) scale(1)}
  40%{transform:translate3d(2.5%,-2%,0) scale(1.03)}
  70%{transform:translate3d(-2%,2.8%,0) scale(1.02)}
  100%{transform:translate3d(0,0,0) scale(1)}
}

.custom-section h1,
.custom-section h2,
.custom-section h3{
  color:#ffffff;
  position:relative;
  text-shadow:0 12px 28px rgba(0,0,0,.35);
}

.custom-section h1::after,
.custom-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:70%;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--a),var(--b),transparent);
  box-shadow:0 10px 22px rgba(0,0,0,.25);
}

.custom-section h3{
  padding-left:14px;
}

.custom-section h3::before{
  content:"";
  position:absolute;
  left:0;
  top:.25em;
  width:8px;
  height:1.1em;
  border-radius:999px;
  background:var(--b);
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

.custom-section p,
.custom-section li{
  color:#d7f3ef;
}

.custom-section a{
  color:#6fe0d3;
  text-decoration:none;
  border-bottom:1px dashed rgba(111,224,211,.6);
}

.custom-section a:hover{
  border-bottom-style:solid;
}

@media (prefers-reduced-motion: reduce){
  .custom-section::after{
    animation:none;
  }
}
