:root {
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #0f0f0f;
  --hero-gradient2: #8a0505;
  --footer-bg-color: #0d0d0d;
  --link-color: #bf1818;
  --header-bg-color: #1a1a1a;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background:
    radial-gradient(circle at 15% 20%, rgba(120, 0, 0, 0.25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(180, 0, 0, 0.15), transparent 40%),
    linear-gradient(135deg, #050505 0%, #0a0a0a 40%, #120000 70%, #050505 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: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.95),
    rgba(0, 0, 0, 0.98)
  ) !important;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 0, 0, 0.18);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(120, 0, 0, 0.15);

  transition: all 0.3s ease;
}

.hero-section {
  padding: 175px 0 90px;
  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 #350b0b;
}

.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;
}
.colored {
  color: #b30000;
  background: linear-gradient(90deg, #ff1a1a, #990000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    0 0 8px rgba(255, 0, 0, 0.4),
    0 0 16px rgba(180, 0, 0, 0.3);

  font-weight: 700;
}
/* Ensures horizontal scroll on small screens */
.casino-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid rgba(255, 0, 0, 0.18);
  background: rgba(10, 10, 10, 0.75);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Make sure the table doesn't squish too much on narrow screens */
.casino-table {
  min-width: 780px; /* adjust if you add/remove columns */
  margin: 0;
  color: #e9e9e9;
  border-color: rgba(255, 255, 255, 0.06);
}

.casino-table thead th {
  background: linear-gradient(180deg, rgba(120, 0, 0, 0.35), rgba(0, 0, 0, 0));
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.22);
  white-space: nowrap;
}
.table > :not(caption) > * > * {
  color: white !important;
}
.casino-table tbody td {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.casino-table tbody tr:hover td {
  background: rgba(120, 0, 0, 0.12);
}

/* Optional: nicer padding */
.casino-table th,
.casino-table td {
  padding: 14px 16px;
}

/* Red “Yes” badge */
.casino-badge {
  background: rgba(180, 0, 0, 0.22);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ffd6d6;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Optional: custom scrollbar (WebKit) */
.casino-table-wrap::-webkit-scrollbar {
  height: 10px;
}
.casino-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.casino-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(180, 0, 0, 0.45);
  border-radius: 999px;
}
.casino-table-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 0, 0, 0.55);
}
.pros-cons {
  margin-top: 1rem;
}

/* Base card */
.pc-card {
  height: 100%;
  padding: 18px 18px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.25)
  );
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

/* Soft glow "aura" */
.pc-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(180, 0, 0, 0.22),
    transparent 55%
  );
  opacity: 0.9;
  pointer-events: none;
  transform: translateZ(0);
}

.pc-card h4 {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Reset default list */
.pc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-card li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.pc-card li:first-child {
  border-top: 0;
}

/* =========================
   PROS – Green Check
========================= */

.pc-pros li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 16px;
  font-weight: bold;
  color: #00c853; /* modern green */
}

/* =========================
   CONS – Red Cross
========================= */

.pc-cons li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 15px;
  font-weight: bold;
  color: #ff2d2d;
}

/* Pros accent */
.pc-pros {
  border-color: rgba(255, 0, 0, 0.18);
}
.pc-pros h4 {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 0, 0, 0.28);
}
.pc-pros h4::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.75);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.55);
}

/* Cons accent (still red, but darker/neutral to feel “warning”) */
.pc-cons {
  border-color: rgba(255, 255, 255, 0.08);
}
.pc-cons::before {
  background: radial-gradient(
    circle at 70% 25%,
    rgba(120, 0, 0, 0.18),
    transparent 58%
  );
}
.pc-cons h4 {
  color: rgba(255, 255, 255, 0.92);
}
.pc-cons h4::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(120, 0, 0, 0.75);
  box-shadow: 0 0 18px rgba(120, 0, 0, 0.35);
}
.pc-cons li::before {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Hover polish */
.pc-card:hover {
  transform: translateY(-2px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.heading {
  margin: 0 auto 27px;
  position: relative;
}

/* Title */
.heading h2 {
  position: relative;
  z-index: 1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: capitalize;

  text-shadow:
    0 0 12px rgba(255, 0, 0, 0.25),
    0 0 25px rgba(120, 0, 0, 0.25);
}

/* Paragraph */
.heading p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}
.casino h3 {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: #ffffff;

  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.35),
    0 0 20px rgba(120, 0, 0, 0.35);

  position: relative;
}
.casino img {
  border-radius: 17px;
  outline: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(120, 0, 0, 0.25);
}

.casino img:hover {
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(180, 0, 0, 0.4);
}
.box {
  position: relative;
  padding: 28px 21px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(0, 0, 0, 0.35)
  );
  border: 1px solid rgba(255, 0, 0, 0.15);
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(120, 0, 0, 0.15);

  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

/* Subtle background glow */
.box::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(160, 0, 0, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

/* Hover effect */
.box:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.75),
    0 0 45px rgba(180, 0, 0, 0.25);
}

/* Heading */
.box h3 {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 0.4px;

  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.3),
    0 0 20px rgba(120, 0, 0, 0.25);
}

/* Paragraph */
.box p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
}
/* Section spacing (light, not large) */
.payment {
  padding: 30px 0;
}

/* Main Title */
.payment h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;

  text-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}

/* Sub-headings with icons */
.payment h3 {
  position: relative;
  padding-left: 38px;
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff3b3b;
}

/* Default icon */
.payment h3::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
}

/* Individual icons per heading */
.payment h3:nth-of-type(1)::before {
  content: "₿"; /* Crypto */
  color: #f7931a;
}

.payment h3:nth-of-type(2)::before {
  content: "💳"; /* Prepaid */
}

.payment h3:nth-of-type(3)::before {
  content: "👛"; /* E-wallet */
}

.payment h3:nth-of-type(4)::before {
  content: "🏦"; /* Bank */
}

/* Paragraph styling */
.payment p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* List styling */
.payment ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.payment ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

/* Red mini bullet */
.payment ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff2d2d;
  font-size: 18px;
}
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.colored-bg {
  background: linear-gradient(
    160deg,
    #111111 0%,
    #1c0003 35%,
    #220006 60%,
    #140002 100%
  );
  border-top: 1px solid rgba(255, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.faq {
  padding: 30px 0;
}

.faq h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.22);
}

/* Accordion container */
.faq-accordion .accordion-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 0, 0, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
  margin-bottom: 12px;
}

/* Remove default borders between items */
.faq-accordion .accordion-item + .accordion-item {
  border-top: 1px solid rgba(255, 0, 0, 0.14);
}

/* Button (question row) */
.faq-accordion .accordion-button {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(0, 0, 0, 0.22)
  );
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 16px 18px;
  box-shadow: none;
}

/* Red glow when open */
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(
    180deg,
    rgba(160, 0, 0, 0.18),
    rgba(0, 0, 0, 0.22)
  );
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.22);
}

/* Chevron icon color */
.faq-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.85;
}

/* Focus ring */
.faq-accordion .accordion-button:focus {
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(180, 0, 0, 0.2);
}

/* Answer */
.faq-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  padding: 16px 18px 18px;
  background: rgba(0, 0, 0, 0.18);
}

/* Keep your h3 semantics but remove extra margins inside accordion header */
.faq-accordion .accordion-header {
  margin: 0;
}
