:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #e7ad28;
  --header-bg-color: #001f30;
  --font-family: "Montserrat", Arial, sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* Light cool base */
  background-color: #f6f8fc;

  /* Casino-inspired chip/table dots */
  background-image:
    radial-gradient(circle, rgba(40, 90, 170, 0.12) 1.2px, transparent 1.2px),
    linear-gradient(180deg, rgba(231, 173, 40, 0.05), rgba(231, 173, 40, 0));

  background-size:
    26px 26px,
    100% 100%;
}

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

.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;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.error_page i {
  color: #e7ad28;
  text-shadow: 0 0 25px rgba(231, 173, 40, 0.35);
  margin-bottom: 1rem;
}

.error_page h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.error_page p {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Button */
.error_page_btn {
  background: linear-gradient(135deg, #e7ad28, #ffd977);
  border: none;
  color: #1a1a1a !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(231, 173, 40, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.error_page_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(231, 173, 40, 0.5);
}

/* Subtle container polish */
.error_page .justify-content-center {
  padding: 3rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 1.9rem 19px;
  text-align: center;
}

/* Top area */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Links */
.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: var(--link-color);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-divider {
  border: none;
  height: 1px;
  margin: 1.5rem auto;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--link-color),
    transparent
  );
  opacity: 0.5;
}

.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

.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: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 -1px 0 rgba(231, 173, 40, 0.15);
}

.hero-section {
  padding: 135px 0 50px;
  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;
  box-shadow: 0 6.5px 25px -1px #484646;
}

.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: 21px;
}

.heading h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e7ad28, #d4816d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading p {
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4b4b4b;
}

/* Luxe underline accent */
.heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 0.9rem auto 0;
  background: linear-gradient(
    90deg,
    rgba(231, 173, 40, 0),
    #e7ad28,
    rgba(231, 173, 40, 0)
  );
  border-radius: 999px;
}

/* Optional subtle glow on hover */
.heading:hover h2 {
  text-shadow: 0 0 18px rgba(231, 173, 40, 0.35);
  transition: text-shadow 0.3s ease;
}

.colored {
  position: relative;
  font-weight: 900;

  /* Gold gradient text */
  background: linear-gradient(135deg, #e7ad28, #d4816d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle underline glow */
.colored::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 0.25em;
  background: linear-gradient(
    90deg,
    rgba(231, 173, 40, 0),
    rgba(231, 173, 40, 0.5),
    rgba(231, 173, 40, 0)
  );
  filter: blur(6px);
  z-index: -1;
}

.colored:hover {
  text-shadow: 0 0 20px rgba(231, 173, 40, 0.4);
  transition: text-shadow 0.25s ease;
}
.box {
  height: 100%;
  padding: 2.25rem 19px;
  border-radius: 14px;

  /* Professional light background */
  background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);

  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Heading inside the box */
.box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1f1f1f;

  position: relative;
  padding-left: 1rem;
}

/* Gold accent bar */
.box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(180deg, #e7ad28, #ffd977);
  border-radius: 2px;
}

/* Paragraph styling */
.box p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4b4b4b;
  margin-bottom: 1rem;
}

.box p:last-child {
  margin-bottom: 0;
}

.title h2 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

/* Gold accent on keyword line */
.title h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.6rem;
  background: linear-gradient(90deg, #e7ad28, #ffd977);
  border-radius: 999px;
}

.title p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
}

.img-shadow {
  display: inline-block;
  border-radius: 16px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.354),
    0 30px 60px rgba(0, 0, 0, 0.518),
    0 0 0 1px rgba(231, 173, 40, 0.15);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.img-shadow:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    0 40px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(231, 173, 40, 0.25);
}
.bonuses {
  padding: 3rem 2rem;
  margin: 30px 0;

  /* Professional light background */
  background: linear-gradient(180deg, #f9f7f2 0%, #ffffff 100%);

  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Main section heading */
.bonuses > h2 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #1a1a1a;
  position: relative;
}

/* Gold accent underline */
.bonuses > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #e7ad28, #ffd977);
  border-radius: 999px;
}

/* Intro paragraph */
.bonuses > p:first-of-type {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 2.5rem;
}

/* Sub-headings */
.bonuses h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f1f1f;
  position: relative;
  padding-left: 1rem;
}

/* Vertical gold rule */
.bonuses h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.1em;
  background: linear-gradient(180deg, #e7ad28, #ffd977);
  border-radius: 2px;
}

/* Paragraphs */
.bonuses p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

/* Improve long text readability */
.bonuses p + p {
  margin-top: 0.75rem;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .bonuses {
    padding: 2.1rem 19px;
  }
}
.sub-title {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f1f1f;
  margin: 1.5rem 0 0.75rem;
}

.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: #e7ad28;
  border-radius: 50%;
}
.casino {
  border-radius: 20px;
  padding: 2rem 19px;
  margin-bottom: 2.5rem;

  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.casino:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(231, 173, 40, 0.15);
}

/* Title above image */
.casino > h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  position: relative;
}

/* Gold underline */
.casino > h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.6rem auto 0;
  background: linear-gradient(90deg, #e7ad28, #ffd977);
  border-radius: 999px;
}

/* Image */
.casino img {
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 14px;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}

.casino p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 11px;
}
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.colored-bg {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: white !important;
  padding: 30px auto;
}
.colored-bg h3,
.colored-bg h2 {
  color: white !important;
}
.white-box {
  height: 100%;
  padding: 2.25rem 21px;
  border-radius: 18px;

  /* Deeper, cooler background */
  background: linear-gradient(
    180deg,
    #e9eef5 0%,
    #dde4ee 100%
  );

  border: 1px solid rgba(15, 23, 42, 0.12);

  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.white-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.25),
    inset 0 1px 0 rgba(231, 173, 40, 0.15);
}

/* Heading */
.white-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}

/* Subtle gold underline */
.white-box h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 0.6rem;
  background: linear-gradient(90deg, #e7ad28, #ffd977);
  border-radius: 999px;
}

/* Text */
.white-box p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1rem;
}

.white-box p:last-child {
  margin-bottom: 0;
}
.faq-section {
  margin: 30px 0;
}

.faq-header h2 {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.faq-header p {
  color: #475569;
  max-width: 760px;
  line-height: 1.7;
}

/* Accordion styling */
.faq-accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f2f6fb 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.faq-accordion .accordion-button {
  font-weight: 750;
  color: #0f172a;
  padding: 1.15rem 1.25rem;
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button i {
  color: #e7ad28;
  font-size: 1.1rem;
}

/* Remove Bootstrap default focus glow */
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(231, 173, 40, 0.45);
}

/* Expanded state */
.faq-accordion .accordion-button:not(.collapsed) {
  color: #0f172a;
  background: linear-gradient(90deg, rgba(231, 173, 40, 0.12), transparent);
}

/* Arrow icon */
.faq-accordion .accordion-button::after {
  filter: brightness(0.2);
  opacity: 0.8;
}

/* Body */
.faq-accordion .accordion-body {
  color: #334155;
  line-height: 1.75;
  padding: 1rem 1.25rem 1.25rem;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .faq-accordion .accordion-button {
    padding: 1rem 1.05rem;
  }
}
