:root {
  --body-bg-color: #052e0c;
  --body-text-color: #ced7d1;
  --heading-color: #f2ebeb;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #04ff00;
  --header-bg-color: #121212;
  --font-family: "Inter", "Poppins", sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background: linear-gradient(
    160deg,
    #000000 0%,
    #02130a 35%,
    #052b18 70%,
    #000000 100%
  );

  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 a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

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

.error_page {
  min-height: 70vh;
}

.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1.75rem, 2.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;

  transition:
    opacity 0.2s ease,
    text-decoration-color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  opacity: 0.9;
}
.footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--footer-text-color);
  background: var(--link-color);
  font-size: 1.25rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer .social-icon:hover,
.footer .social-icon:focus-visible {
  transform: translateY(-3px);
  background: var(--link-color / 30%);
}

.footer .footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--footer-text-color) 40%,
    transparent
  );
  margin: 1.25rem 0;
}

.footer .small {
  font-style: italic;
  font-size: 0.95rem;
}

@media (max-width: 575.98px) {
  .footer .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .footer .small {
    font-size: 0.9rem;
  }
}

.navbar {
  background-color: transparent !important;
  transition:
    background-color 0.4s ease,
    box-shadow 0.3s ease;
  position: fixed;
  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: 155px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-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, 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: 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;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.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;
}
.heading {
  margin-bottom: 25px;
}

.heading h2 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #eafff3;
  margin-bottom: 20px;
  position: relative;
}

/* green accent line under heading */
.heading h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00c853);
  display: block;
  margin: 14px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.heading p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.heading h2:hover {
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
}
.cust-bg {
  position: relative;
  margin: 30px auto;
  padding: 33px 25px;
  background:
    radial-gradient(
      circle at top left,
      rgba(57, 255, 136, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 200, 83, 0.08),
      transparent 35%
    ),
    linear-gradient(160deg, #050505 0%, #08110c 45%, #0b1b13 100%);
  border: 1px solid rgba(57, 255, 136, 0.12);
  border-radius: 24px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.cust-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(57, 255, 136, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.cust-bg h2 {
  position: relative;
  line-height: 1.2;
  font-weight: 800;
  color: #f3fff8;
  margin-bottom: 22px;
  padding-bottom: 14px;
  letter-spacing: 0.4px;
}

.cust-bg h2::before {
  content: "🎰";
  margin-right: 12px;
  font-size: 1.9rem;
  vertical-align: middle;
}

.cust-bg h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #39ff88, #00c853);
  box-shadow: 0 0 16px rgba(57, 255, 136, 0.45);
}

.cust-bg h3 {
  font-weight: 700;
  color: #d9ffe8;
  margin-top: 21px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cust-bg h3:nth-of-type(1)::before {
  content: "✅";
  font-size: 1.1rem;
}

.cust-bg h3:nth-of-type(2)::before {
  content: "🛡️";
  font-size: 1.1rem;
}

.cust-bg p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #b9cbbf;
  margin-bottom: 18px;
}
.cust-bg p + p {
  margin-top: -4px;
}

.cust-bg a {
  color: #39ff88;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.cust-bg a:hover {
  color: #7dffb0;
  border-color: rgba(125, 255, 176, 0.5);
}

@media (max-width: 768px) {
  .cust-bg {
    padding: 27px 17px;
    border-radius: 18px;
  }
}
.box {
  background: linear-gradient(160deg, #050505 0%, #08110c 50%, #0b1b13 100%);
  border: 1px solid rgba(57, 255, 136, 0.15);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* subtle glow effect */
.box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(57, 255, 136, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: 0.4s;
}

.box:hover::before {
  opacity: 1;
}

.box:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 136, 0.4);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(57, 255, 136, 0.15);
}

.box h3 {
  color: #eafff3;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
}

/* green underline */
.box h3::after {
  content: "";
  width: 60px;
  height: 3px;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #39ff88, #00c853);
  box-shadow: 0 0 10px rgba(57, 255, 136, 0.6);
}

.box img {
  border-radius: 12px;
  transition: 0.35s;
}

.box:hover img {
  transform: scale(1.05);
}

.box-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #b9cbbf;
  margin-top: 14px;
}
.white-logo {
  filter: brightness(0) invert(1);
}
.table-wrap {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 16px;
  background: linear-gradient(160deg, #050505, #08110c, #0b1b13);
  border: 1px solid rgba(57, 255, 136, 0.15);
}

.casino-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: #dff5e7;
  font-size: 15px;
}

.casino-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.casino-table tr:first-child td {
  color: #39ff88;
  font-weight: 700;
  border-bottom: 1px solid rgba(57, 255, 136, 0.25);
}

.casino-table tr:hover {
  background: rgba(57, 255, 136, 0.05);
}

.casino-table td:first-child {
  font-weight: 600;
  color: #ffffff;
}

.table-wrap::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: #39ff88;
  border-radius: 10px;
}
.title {
  font-size: 34px;
  font-weight: 800;
  color: #f3fff8;
  margin: 50px 0 25px;
  position: relative;
  letter-spacing: 0.5px;
  padding-left: 18px;
}

/* green accent bar on the left */
.title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  border-radius: 4px;
  background: linear-gradient(180deg, #39ff88, #00c853);
  box-shadow: 0 0 12px rgba(57, 255, 136, 0.5);
}

/* subtle glow */
.title:hover {
  text-shadow: 0 0 14px rgba(57, 255, 136, 0.4);
  transition: 0.3s ease;
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.modern-bg {
  margin: 30px auto;
  padding: 25px 19px;
  position: relative;
  border-radius: 16px;
  background: #060807;
  border-left: 4px solid #39ff88;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

/* subtle pattern glow */
.modern-bg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #39ff8820, transparent 70%);
  pointer-events: none;
}

/* main title */
.modern-bg h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #f2fff7;
  letter-spacing: 0.3px;
}

/* section headings */
.modern-bg h3 {
  font-size: 21px;
  margin-top: 21px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #39ff88;
  position: relative;
  padding-left: 22px;
}

/* arrow accent */
.modern-bg h3::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #39ff88;
  font-size: 20px;
}

/* paragraphs */
.modern-bg p {
  font-size: 16px;
  line-height: 1.8;
  color: #b8c7be;
  margin-bottom: 16px;
}

/* highlight keywords */
.modern-bg strong {
  color: #39ff88;
}

/* divider between sections */
.modern-bg h3 + p {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}
.colored {
  color: #39ff88 !important;
}
.mistakes- {
  margin: 30px auto;
  padding: 30px 19px;
  border-radius: 18px;
  position: relative;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 80, 80, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(57, 255, 136, 0.08),
      transparent 45%
    ),
    linear-gradient(160deg, #050505, #0a0f0c);

  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.55);
}

/* main title */
.mistakes- h2 {
  font-weight: 800;
  margin-bottom: 20px;
  color: #f5fff8;
  position: relative;
  padding-left: 40px;
}

/* warning icon */
.mistakes- h2::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 28px;
}

/* subtitles */
.mistakes- h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 700;
  color: #39ff88;
  position: relative;
  padding-left: 28px;
}

/* bullet indicator */
.mistakes- h3::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: -2px;
  font-size: 28px;
  color: #39ff88;
}

/* paragraphs */
.mistakes- p {
  font-size: 16px;
  line-height: 1.8;
  color: #b8c7be;
  margin-bottom: 16px;
}

/* subtle separator */
.mistakes- h3 + p {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

/* hover effect */
.mistakes-:hover {
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(57, 255, 136, 0.08);
  transition: 0.3s ease;
}
.faq {
  margin: 30px auto;
  padding: 0 15px;
}

.faq h2 {
  font-weight: 800;
  color: #f3fff8;
  margin-bottom: 25px;
  position: relative;
  padding-left: 18px;
}

.faq h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  border-radius: 4px;
  background: linear-gradient(180deg, #39ff88, #00c853);
  box-shadow: 0 0 12px rgba(57, 255, 136, 0.45);
}

.faq-accordion .accordion-item {
  background: linear-gradient(160deg, #050505 0%, #08110c 55%, #0b1b13 100%);
  border: 1px solid rgba(57, 255, 136, 0.14);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #ecfff4;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 24px;
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(57, 255, 136, 0.06);
  color: #39ff88;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(84%) sepia(40%) saturate(633%)
    hue-rotate(79deg) brightness(104%) contrast(104%);
}

.faq-accordion .accordion-body {
  padding: 0 24px 22px;
}

.faq-accordion .accordion-body p {
  margin: 0;
  color: #b8c7be;
  font-size: 16px;
  line-height: 1.8;
}

.faq-accordion strong {
  color: #39ff88;
}
