:root {
  --body-bg-color: #051624;
  --body-text-color: #ffffff;
  --heading-color: #ebebeb;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #17293b;
  --link-color: #dbb151;
  --header-bg-color: #17293b;
  --font-family: "Montserrat", Arial, sans-serif;
  --nav-link-color: #ffffff;
  --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;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background:
    /* faint color pockets */ radial-gradient(
      900px 600px at 15% 25%,
      rgba(40, 90, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 85% 20%,
      rgba(0, 200, 255, 0.1),
      transparent 62%
    ),
    radial-gradient(
      900px 650px at 55% 90%,
      rgba(120, 0, 255, 0.08),
      transparent 68%
    ),
    /* main dark linear flow */
      linear-gradient(
        135deg,
        #01030a 0%,
        #02081a 40%,
        #010616 70%,
        #01030a 100%
      );

  background-size: 110% 110%;
  background-position: 0 0;
  filter: saturate(110%) contrast(110%);
}

/* Moving light sweep + vignette */
body::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -2;
  pointer-events: none;

  background:
    /* soft moving sweep */ linear-gradient(
      115deg,
      transparent 0%,
      rgba(120, 200, 255, 0.05) 42%,
      rgba(120, 200, 255, 0.1) 50%,
      rgba(120, 200, 255, 0.05) 58%,
      transparent 100%
    ),
    /* vignette for depth */
      radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.78));

  background-size: 260% 260%, 100% 100%;
  background-position: -60% 50%, 0 0;
  mix-blend-mode: screen;
  opacity: 0.9;
  filter: blur(1px);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
  font-weight: 700;
}
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 container */
.links {
  background: linear-gradient(
    160deg,
    rgba(2, 6, 20, 0.95),
    rgba(4, 10, 32, 0.95)
  );
  padding: 21px;
  border-radius: 10px;
  border: 1px solid rgba(120, 160, 255, 0.08);
  width: 279px;
  margin-bottom: 15px;
}

/* Title */
.links h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}

/* List */
.sidebar-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Items */
.sidebar-page-list li {
  margin-bottom: 0.6rem;
}

/* Links */
.sidebar-page-list a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: #aeb7e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

/* Hover effect */
.sidebar-page-list a:hover {
  background: rgba(120, 160, 255, 0.08);
  color: #ffffff;
  transform: translateX(4px);
}

/* Active state (optional) */
.sidebar-page-list a.active {
  background: rgba(120, 160, 255, 0.15);
  color: #ffffff;
  font-weight: 500;
}

/* List container */
.sidebar-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Item */
.sidebar-page-list li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
}

/* Marker */
.sidebar-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(120, 160, 255, 0.9),
    rgba(80, 120, 255, 0.9)
  );
  box-shadow: 0 0 6px rgba(120, 160, 255, 0.6);
  transform: translateY(-50%);
  opacity: 0.85;
}

/* Link */
.sidebar-page-list a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: #aeb7e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

/* Hover */
.sidebar-page-list li:hover::before {
  box-shadow: 0 0 10px rgba(120, 160, 255, 0.9);
  opacity: 1;
}

.sidebar-page-list a:hover {
  background: rgba(120, 160, 255, 0.08);
  color: #ffffff;
  transform: translateX(4px);
}

/* Active */
.sidebar-page-list a.active {
  color: #ffffff;
  font-weight: 500;
}

.sidebar-page-list a.active::before {
  content: none;
}

.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
/* Footer base */
.footer {
  background: linear-gradient(135deg, #01030a 0%, #020817 50%, #01030a 100%);
  color: #cfd6ff;
  position: relative;
  overflow: hidden;
}

/* Soft top separation */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 160, 255, 0.18),
    transparent
  );
}

/* Titles */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

/* Text */
.footer-text {
  font-size: 0.95rem;
  color: #aeb7e6;
  line-height: 1.6;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer a {
  color: #aeb7e6;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links a:hover,
.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(120, 160, 255, 0.4);
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(120, 160, 255, 0.15);
  color: #fff;
  border-radius: 6px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #9aa4d6;
}

.newsletter-form input:focus {
  border-color: rgba(120, 160, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(120, 160, 255, 0.15);
}

/* Button (disabled but styled) */
.newsletter-form button {
  padding: 0.65rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(80, 120, 255, 0.4),
    rgba(120, 160, 255, 0.4)
  );
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  opacity: 0.6;
  cursor: not-allowed;
}
.small-text {
  font-size: 0.85rem;
  color: #9aa4d6;
  letter-spacing: 0.6px;
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 161, 255, 0.452),
    transparent
  );
  margin: 2rem 0 1.5rem;
}

/* Bottom row text */
.footer p {
  font-size: 0.9rem;
  color: #9aa4d6;
}

.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(
    135deg,
    rgba(3, 8, 22, 0.92),
    rgba(6, 14, 38, 0.92)
  ) !important;

  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  border-bottom: 1px solid rgba(120, 160, 255, 0.08);
}
.navbar-nav {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      90deg,
      rgba(186, 197, 218, 0),
      #d49a4e,
      rgba(186, 197, 218, 0)
    )
    1;
}
.hero-section {
  padding: 170px 0 70px;
  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");
}
.contact-container {
  margin: 40px auto;
  border-radius: 8px;
  color: black !important;
}
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-container .form {
  width: 440px;
  height: 510px;
  background: #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 0 40px -10px #000;
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.contact-container h2 {
  margin: 10px 0;
  padding-bottom: 10px;
  color: var(--hero-gradient1) !important;
  border-bottom: 3px solid var(--hero-gradient2);
}
.contact-container input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container input:focus {
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container p:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--hero-gradient1);
}
.contact-container button {
  float: right;
  padding: 8px 12px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--hero-gradient1);
  background: 0;
  color: var(--hero-gradient1);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-container button:hover {
  background: var(--hero-gradient2);
  color: #fff;
}
.contact-container .mail-container {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -20px;
  background: var(--hero-gradient1);
  color: #fff;
  width: 320px;
  padding: 16px 4px 16px 0;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 10px 10px 40px -14px #000;
}
.contact-container .mail-container p:before {
  content: none;
}
.contact-container span {
  margin: 0 5px 0 15px;
}
.heading {
  margin-bottom: 17px;
}

.heading h2 {
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
}

/* Paragraphs */
.heading p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

/* Optional subtle divider under heading */
.heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 0.8rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 160, 255, 0.7),
    transparent
  );
}
.colored {
  position: relative;
  display: inline-block;
  vertical-align: baseline; /* key fix */
  line-height: 1em; /* keeps height tight */
  overflow: hidden;

  font-weight: 700;
  color: #f5efe2;

  background: linear-gradient(135deg, #dbb151, #c66b48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer */
.colored::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 245, 220, 0.75) 45%,
    transparent 60%
  );
  opacity: 0.28;
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: goldShine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes goldShine {
  0% {
    transform: translateX(-120%);
  }
  40% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}
.colored {
  transform: translateY(0.11em);
}

.box {
  position: relative;
  height: 100%;
  padding: 1.8rem 21px;
  border-radius: 14px;

  background: linear-gradient(
    160deg,
    rgba(6, 12, 30, 0.95),
    rgba(10, 18, 42, 0.95)
  );

  border: 1px solid rgba(219, 177, 81, 0.18);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Soft luxury glow */
.box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(219, 177, 81, 0.35),
    rgba(198, 107, 72, 0.25)
  );
  opacity: 0;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.35s ease;
}

/* Hover interaction */
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(219, 177, 81, 0.35);
}

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

/* Title */
.box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: #ffffff;
  line-height: 1.3;

  text-shadow: 0 0 8px rgba(219, 177, 81, 0.25);
}

/* Text */
.box p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #cfd5ff;
  margin: 0;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .box {
    padding: 19px;
  }
}
.img-move {
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Main section title */
.categories h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;

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

.categories > p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

/* Sub-headings */
.categories h3 {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1rem 0 0.6rem;
  padding-left: 1.2rem;

  /* casino accent bar */
  border-left: 3px solid transparent;
  background-image: linear-gradient(
    180deg,
    rgba(219, 177, 81, 0.9),
    rgba(198, 107, 72, 0.9)
  );
  background-size: 3px 100%;
  background-repeat: no-repeat;
  background-position: left center;

  text-shadow: 0 0 8px rgba(219, 177, 81, 0.25);
}

/* Paragraphs under sub-headings */
.categories h3 + p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Subtle separator between blocks */
.categories h3:not(:first-of-type) {
  margin-top: 1rem;
}
.cust-img {
  display: block;
  max-width: 100%;
  height: auto;

  border-radius: 16px;

  box-shadow:
    /* deep navy depth */ 0 30px 90px rgba(5, 11, 49, 0.85),
    /* warm gold ambient glow */ 0 12px 40px rgba(212, 154, 78, 0.35),
    /* subtle edge separation */ 0 0 0 1px rgba(212, 154, 78, 0.18);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cust-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 130px rgba(5, 11, 49, 0.95),
    0 20px 60px rgba(212, 154, 78, 0.45), 0 0 0 1px rgba(212, 154, 78, 0.3);
}
.cust-bg {
  margin: 30px auto;
  padding: 2.1rem 2.5rem;
  background: linear-gradient(
    145deg,
    rgba(5, 11, 49, 0.95),
    rgba(8, 16, 70, 0.95)
  );

  border-radius: 20px;

  box-shadow: 0 40px 120px rgba(5, 11, 49, 0.9),
    0 0 0 1px rgba(212, 154, 78, 0.18);

  position: relative;
  overflow: hidden;
}

/* Soft gold ambient glow */
.cust-bg::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(212, 154, 78, 0.18),
    transparent 45%
  );
  pointer-events: none;
}

/* Section title */
.cust-bg h2 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.4rem;

  text-shadow: 0 0 16px rgba(212, 154, 78, 0.35);
}

/* Intro paragraphs */
.cust-bg > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d1d7ff;
  margin-bottom: 1.4rem;
}

/* Subsection titles */
.cust-bg h3 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;

  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;

  padding-bottom: 0.4rem;

  border-bottom: 2px solid rgba(212, 154, 78, 0.35);
}

/* Subsection text */
.cust-bg h3 + p {
  font-size: 1rem;
  line-height: 1.75;
  color: #c3cafc;
  margin-bottom: 1.2rem;
}

/* Subtle bottom glow */
.cust-bg::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -1px;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 154, 78, 0.7),
    transparent
  );
}

/* Responsive tuning */
@media (max-width: 768px) {
  .cust-bg {
    padding: 2.2rem 19px;
    border-radius: 16px;
  }
}
.game {
  position: relative;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    160deg,
    rgba(7, 14, 55, 0.85),
    rgba(5, 11, 49, 0.85)
  );
  margin-bottom: 15px;
  border-radius: 18px;

  box-shadow: 0 35px 100px rgba(5, 11, 49, 0.85),
    0 0 0 1px rgba(212, 154, 78, 0.18);

  overflow: hidden;
}

/* Accent stripe (casino table edge feel) */
.game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;

  background: linear-gradient(180deg, #d49a4e, #b97c3f);

  box-shadow: 0 0 20px rgba(212, 154, 78, 0.45);
}

/* Title */
.game h3 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
  padding-right: 140px; /* space for floated image */

  text-shadow: 0 0 10px rgba(212, 154, 78, 0.25);
}

/* Paragraphs */
.game p {
  font-size: 1rem;
  line-height: 1.75;
  color: #c7cff8;
  margin-bottom: 0.9rem;
}

/* Hover interaction (subtle) */
.game:hover {
  box-shadow: 0 50px 140px rgba(5, 11, 49, 0.95),
    0 0 0 1px rgba(212, 154, 78, 0.3);
}

/* Mobile fixes */
@media (max-width: 768px) {
  .game {
    padding: 19px;
  }

  .game h3 {
    padding-right: 0;
  }

  .game::before {
    width: 4px;
  }
}
.box-first,
.box-second {
  padding: 17px 15px;
  border-radius: 10px;

  background: linear-gradient(
    145deg,
    rgba(10, 18, 60, 0.85),
    rgba(5, 11, 49, 0.85)
  );

  color: #e6ebff;

  box-shadow: 0 12px 30px rgba(5, 11, 49, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.box-second {
  background: linear-gradient(
    145deg,
    rgba(14, 24, 80, 0.85),
    rgba(7, 14, 55, 0.85)
  );
}

@media (min-width: 767px) {
  .box-first {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  .box-second {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .box-first {
    border-radius: 21px 21px 0 0;
  }
  .box-second {
    border-radius: 0 0 21px 21px;
  }
}
.testing {
  margin: 3rem auto;
  padding: 3rem 2rem;

  background: linear-gradient(
    155deg,
    rgba(5, 11, 49, 0.92),
    rgba(10, 18, 60, 0.88)
  );

  border-radius: 20px;

  border: 1px solid rgba(212, 154, 78, 0.18);

  box-shadow: 0 45px 140px rgba(5, 11, 49, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  position: relative;
  overflow: hidden;
}

/* Top “audit” glow */
.testing::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 25% 15%,
      rgba(212, 154, 78, 0.18),
      transparent 45%
    ),
    radial-gradient(circle at 80% 25%, rgba(90, 140, 255, 0.1), transparent 55%);
  pointer-events: none;
}

/* Title */
.testing h2 {
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.4px;

  text-shadow: 0 0 18px rgba(212, 154, 78, 0.28);
}

/* Intro paragraph */
.testing > p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #d3d9ff;
  margin-bottom: 2.2rem;
}

/* Subheads: “checkpoint” look */
.testing h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;

  margin-top: 1rem;
  margin-bottom: 0.7rem;

  font-size: 1.25rem;
  font-weight: 650;
  color: #ffffff;
}

/* Gold checkpoint dot */
.testing h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: #d49a4e;
  box-shadow: 0 0 10px rgba(212, 154, 78, 0.55),
    0 0 0 4px rgba(212, 154, 78, 0.12);
  flex: 0 0 auto;
}

/* Text under subheads */
.testing h3 + p {
  font-size: 1rem;
  line-height: 1.8;
  color: #c7cff8;
  margin-bottom: 1.2rem;
}

/* Bottom separator */
.testing::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 154, 78, 0.75),
    transparent
  );
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .testing {
    padding: 2rem 19px;
    border-radius: 16px;
  }
}
.game-icon {
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}

.game-icon-poker {
  background-image: url("/images/poker.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.game-icon-baccarat {
  background-image: url("/images/baccarat.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.game-icon-blackjack {
  background-image: url("/images/blackjack.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.game-icon-roulette {
  background-image: url("/images/roulette.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive float behavior */
@media (min-width: 768px) {
  .game-icon {
    float: right;
    margin-bottom: 0;
  }
}

/* Center on smaller screens */
@media (max-width: 767px) {
  .game-icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.casino-search {
  background: linear-gradient(180deg, #04091e, #07162c);
  padding: 14px;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  width: 279px;
  margin-bottom: 15px;
}
.search-flex {
  display: flex;
  gap: 10px;
}

.casino-search__input {
  flex: 1;
  background: #0f2a55;
  border: 1px solid rgba(88, 140, 255, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  width: 50px;
}

.casino-search__input::placeholder {
  color: #8fb1ff;
  opacity: 0.7;
}

.casino-search__input:focus {
  border-color: #4da3ff;
  box-shadow: 0 0 0 2px rgba(77, 163, 255, 0.25);
}

.casino-search__button {
  background: linear-gradient(135deg, #1e5eff, #3aa0ff);
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.casino-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(58, 160, 255, 0.45);
}

.casino-search__button:active {
  transform: translateY(0);
  box-shadow: none;
}
