:root {
  --body-bg-color: #143012;
  --body-text-color: #ffffffdb;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #122811;
  --link-color: #9fee44;
  --header-bg-color: #000000;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  /* Dark green casino background */
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 120, 80, 0.15),
      transparent 45%
    ),
    linear-gradient(135deg, #062a1f 0%, #031a14 45%, #020f0b 100%);
  background-attachment: fixed;
  color: var(--body-text-color);
  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;
}
.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;
}
.site-footer {
  background:
    linear-gradient(180deg, rgba(2, 15, 11, 0.95), rgba(2, 15, 11, 1)),
    radial-gradient(circle at top, rgba(0, 255, 170, 0.08), transparent 40%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3rem 1.5rem 2rem;
  color: #cfeee3;
  font-size: 0.95rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand img {
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(230, 245, 239, 0.65);
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.footer-links a {
  color: #e6f5ef;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #d4af37, #00ffae);
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: #00ffae;
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-divider {
  margin: 2rem 0 1.5rem;
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.6),
    transparent
  );
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(230, 245, 239, 0.6);
}
.navbar {
  background-color: transparent !important;
  transition:
    background-color 0.4s ease,
    box-shadow 0.3s ease;
  position: absolute;
  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: 175px 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;
  }
}
.navbar-nav {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      90deg,
      rgba(186, 197, 218, 0),
      rgba(46, 152, 72, 0.56),
      rgba(186, 197, 218, 0)
    )
    1;
}
.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.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #e6f5ef;
}
.heading h2::after {
  content: "● ● ●";
  display: block;
  margin: 0.75rem auto 0;
  font-size: 0.6rem;
  letter-spacing: 8px;
  color: #00ffae;
  text-shadow: 0 0 8px rgba(0, 255, 174, 0.6);
}
.heading p {
  font-size: 1rem;
  line-height: 1.7;
}
.platform {
  background: linear-gradient(
    180deg,
    rgba(6, 42, 31, 0.85),
    rgba(3, 26, 20, 0.95)
  );
  border: 1px solid rgba(0, 255, 174, 0.18);
  border-radius: 14px;
  padding: 30px 19px;
  margin-bottom: 2.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.platform:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
}
.platform h3 {
  margin: 0 0 0.85rem 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #e6f5ef;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(0, 255, 174, 0.35),
    0 0 14px rgba(0, 255, 174, 0.15);
}
.platform h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 0.45rem auto 0;
  background: linear-gradient(90deg, #d4af37, #00ffae);
  border-radius: 2px;
  opacity: 0.85;
}
.platform img {
  border-radius: 17px;
  box-shadow: 0 10px 24px rgba(30, 70, 16, 0.613);
}
.platform p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(230, 245, 239, 0.8);
}
.box {
  background: linear-gradient(
    180deg,
    rgba(6, 42, 31, 0.9),
    rgba(3, 26, 20, 0.98)
  );
  border: 1px solid rgba(0, 255, 174, 0.15);
  border-left: 4px solid #088b61;
  border-radius: 12px;
  padding: 2rem 19px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.box h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #e6f5ef;
  line-height: 1.35;
  position: relative;
}
.box h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 0.6rem;
  background: linear-gradient(90deg, #d4af37, #00ffae);
  border-radius: 2px;
}
.box p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(230, 245, 239, 0.8);
  margin-bottom: 1rem;
}
.box ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
}
.box li {
  margin-bottom: 0.5rem;
  color: rgba(230, 245, 239, 0.85);
}
.box li::marker {
  color: #00ffae;
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
/* Section container */
.colored-bg {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 6px
    ),
    linear-gradient(180deg, #081d18 0%, #041310 100%);
  box-shadow:
    0 -18px 40px rgba(0, 0, 0, 0.45),
    0 18px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  padding: 30px 0;
  margin: 30px 0;
}
/* Subtle “chip edge” glow */
.colored-bg::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0, 255, 174, 0.18),
    transparent,
    rgba(212, 175, 55, 0.14),
    transparent
  );
  filter: blur(14px);
  opacity: 0.55;
  pointer-events: none;
}
/* Keep content above glow layer */
.colored-bg > * {
  position: relative;
  z-index: 1;
}
/* H2: strong section title */
.colored-bg h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 850;
  letter-spacing: 0.6px;
  color: #e6f5ef;
  text-shadow:
    0 0 10px rgba(0, 255, 174, 0.18),
    0 0 18px rgba(0, 0, 0, 0.25);
}
/* Different divider style (not the old underline) */
.colored-bg h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 10px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 255, 174, 0.9), transparent 55%),
    radial-gradient(
      circle at 80% 50%,
      rgba(212, 175, 55, 0.85),
      transparent 55%
    );
  opacity: 0.9;
}
/* H3: readable “topic headers” */
.colored-bg h3 {
  margin: 1.4rem 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(230, 245, 239, 0.95);
  position: relative;
  padding-left: 0.9rem;
}
/* Small left accent marker */
.colored-bg h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 0.9em;
  border-radius: 4px;
  background: linear-gradient(180deg, #00ffae, #d4af37);
  opacity: 0.9;
}
/* Paragraph styling */
.colored-bg p {
  color: rgba(230, 245, 239, 0.78);
  line-height: 1.75;
  margin-bottom: 0.95rem;
}
/* Slightly emphasize the intro paragraph under h2 */
.colored-bg h2 + p {
  color: rgba(230, 245, 239, 0.84);
  font-size: 1.02rem;
}
.colored {
  background: linear-gradient(135deg, #d4af37, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(0, 255, 174, 0.25),
    0 0 18px rgba(0, 0, 0, 0.45);
}
.title-icon {
  margin-right: 0.6rem;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #d4af37, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 6px rgba(0, 255, 174, 0.25),
    0 0 10px rgba(0, 0, 0, 0.4);
  vertical-align: middle;
}
.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}
/* optional: subtle scroll hint */
.table-wrap::-webkit-scrollbar {
  height: 10px;
}
.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 174, 0.22);
  border-radius: 999px;
}
.table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
.odds-table {
  width: 100%;
  min-width: 520px; /* forces horizontal scroll on small screens */
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 42, 31, 0.92),
    rgba(3, 26, 20, 0.98)
  );
  border: 1px solid rgba(0, 255, 174, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}
.odds-table thead th {
  text-align: left;
  padding: 1rem 1.1rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #e6f5ef;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(0, 255, 174, 0.14);
  white-space: nowrap;
}
.odds-table tbody td {
  padding: 0.95rem 1.1rem;
  color: rgba(230, 245, 239, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.odds-table tbody tr:last-child td {
  border-bottom: none;
}
/* zebra + hover */
.odds-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.02);
}
.odds-table tbody tr:hover td {
  background: rgba(0, 255, 174, 0.06);
}
/* numeric alignment (optional but nice) */
.odds-table td:nth-child(1),
.odds-table td:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.odds-table td:nth-child(2) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
/* responsive: keep scroll behavior */
@media (max-width: 576px) {
  .table-wrap {
    border: 1px solid rgba(0, 255, 174, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
}
.faq {
  margin-top: 2.5rem;
}
.faq-title {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 850;
  letter-spacing: 0.6px;
  color: #e6f5ef;
  text-shadow:
    0 0 10px rgba(0, 255, 174, 0.18),
    0 0 18px rgba(0, 0, 0, 0.35);
}
.faq-accordion .accordion-item {
  background: linear-gradient(
    180deg,
    rgba(6, 42, 31, 0.9),
    rgba(3, 26, 20, 0.98)
  );
  border: 1px solid rgba(0, 255, 174, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}
.faq-accordion .accordion-button {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.02);
  color: #e6f5ef;
  font-weight: 800;
  letter-spacing: 0.25px;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 174, 0.15);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background:
    linear-gradient(135deg, rgba(0, 255, 174, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.03);
  color: #e6f5ef;
}
.faq-accordion .accordion-body {
  color: rgba(230, 245, 239, 0.78);
  line-height: 1.75;
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
/* Chevron styling */
.faq-accordion .accordion-button::after {
  filter: brightness(1.8);
  opacity: 0.9;
}
/* Tighten Bootstrap default borders */
.faq-accordion .accordion-item,
.faq-accordion .accordion-header,
.faq-accordion .accordion-button {
  border: 0;
}
/* Optional: subtle hover lift */
.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
.img-shadow {
  box-shadow: 0 10px 24px rgba(30, 70, 16, 0.613);
  border-radius: 19px;
}
.sub-title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.35;
  color: rgba(230, 245, 239, 0.95);
  position: relative;
  text-shadow:
    0 0 8px rgba(0, 255, 174, 0.14),
    0 0 16px rgba(0, 0, 0, 0.35);
}
/* clean divider under text */
.sub-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #d4af37, #00ffae);
  border-radius: 2px;
  opacity: 0.85;
}
.light-box {
  background: linear-gradient(
    180deg,
    rgba(5, 28, 22, 0.96),
    rgba(3, 18, 15, 0.99)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem 19px;
  height: 100%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
/* heading: clean, strong, no glow */
.light-box h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.35px;
  line-height: 1.35;
  color: rgba(230, 245, 239, 0.96);
  position: relative;
}
/* simple divider, not glowing */
.light-box h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, #d4af37, #00ffae);
  opacity: 0.75;
  border-radius: 2px;
}
/* body text: readable, neutral */
.light-box p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(230, 245, 239, 0.78);
  margin-bottom: 0.9rem;
}
.light-box p:last-child {
  margin-bottom: 0;
}
.img-section {
  border-radius: 14px;
  overflow: visible;
  margin-bottom: 1.5rem;
  position: relative;
}
.img-section .section-top-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}
.img-section__content {
  background: linear-gradient(180deg, #fff 0, #b8d8f9 100%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 1.25rem 17px;
  margin-top: -6px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.04);
}
.img-section__content h2 {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.12),
    rgba(16, 185, 129, 0.04)
  );
  color: #0f172a;
  padding: 0.4rem 5px;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.03);
}
.img-section__content h3 {
  color: #0b1220;
  font-weight: 600;
}
.img-section {
  border-radius: 14px;
  overflow: visible;
  margin-bottom: 1.75rem;
  position: relative;
}
/* top image */
.img-section .section-top-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  outline: 1px solid rgba(0, 255, 174, 0.12);
  border-bottom: none;
}
/* content panel (dark, premium) */
.img-section__content {
  background: linear-gradient(
    180deg,
    rgba(6, 42, 31, 0.92),
    rgba(3, 26, 20, 0.98)
  );
  border: 1px solid rgba(0, 255, 174, 0.14);
  border-top: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 1.35rem 17px;
  margin-top: -8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  position: relative;
}
/* subtle “chip edge” glow */
.img-section__content::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0, 255, 174, 0.16),
    transparent,
    rgba(212, 175, 55, 0.12),
    transparent
  );
  filter: blur(14px);
  opacity: 0.45;
  pointer-events: none;
}
/* keep content above glow */
.img-section__content > * {
  position: relative;
  z-index: 1;
}
/* h2 inside content (tag / label style, not “light”) */
.img-section__content h2 {
  margin: 0 0 0.55rem;
  display: inline-block;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 850;
  letter-spacing: 0.5px;
  color: rgba(230, 245, 239, 0.96);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(0, 255, 174, 0.06)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 255, 174, 0.14);
  text-shadow:
    0 0 10px rgba(0, 255, 174, 0.14),
    0 0 18px rgba(0, 0, 0, 0.35);
}
/* h3 inside content (matches your section h3 language) */
.img-section__content h3 {
  margin: 0.8rem 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.35px;
  color: rgba(230, 245, 239, 0.92);
  position: relative;
  padding-left: 0.9rem;
}
/* left accent marker */
.img-section__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 0.9em;
  border-radius: 4px;
  background: linear-gradient(180deg, #00ffae, #d4af37);
  opacity: 0.9;
}
/* paragraph defaults if needed */
.img-section__content p {
  color: rgba(230, 245, 239, 0.78);
  line-height: 1.75;
  margin: 0.75rem 0 0;
}
.mini-title {
  margin: 1.1rem 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: rgba(230, 245, 239, 0.9);
  position: relative;
  padding-left: 1rem;
}
.mini-title::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  line-height: 1;
  color: #00ffae;
}
.responsible {
  position: relative;
  margin: 2.5rem 0;
  padding: 2.2rem 19px;

  background: linear-gradient(
    180deg,
    rgba(6, 42, 31, 0.55),
    rgba(3, 26, 20, 0.75)
  );

  border: 1px solid rgba(0, 255, 174, 0.12);
  border-radius: 18px;

  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

/* subtle perimeter glow (very controlled) */
.responsible::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;

  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0, 255, 174, 0.14),
    transparent,
    rgba(212, 175, 55, 0.12),
    transparent
  );

  filter: blur(16px);
  opacity: 0.35;
  pointer-events: none;
}

/* keep content above glow */
.responsible > * {
  position: relative;
  z-index: 1;
}

.responsible h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #e6f5ef;
}
/* calm underline — not decorative */
.responsible h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.6rem;
  background: rgba(0, 255, 174, 0.75);
  border-radius: 2px;
}
.responsible h3 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: 0.3px;
  color: rgba(230, 245, 239, 0.96);
  position: relative;
  padding-left: 0.75rem;
}
/* minimal left cue */
.responsible h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 3px;
  height: 0.85em;
  background: #00ffae;
  border-radius: 2px;
  opacity: 0.8;
}
.img-move{
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-10px);
  }
  100%{
    transform: translateY(0);
  }
}