body {
    background-color: #f1ecec;
}
h2{
    margin-top: 40px;
    margin-bottom: 15px;
}
h3{
    margin-top: 15px;
}
section.slider-area.breadcrumb-section img {
    height: 250px;
}
.breadcrumb-section:before {
    background: rgba(0, 0, 0, 0.336);
}
.section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/img/bingo-bg.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #b9c2e7; 
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
}
.section-wallets h3 {
    background-color: #4b6074; 
    color: #ffffff; 
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
@media (max-width: 768px) {
    .section-wallets {
        padding: 40px 20px;
    }
    .section-wallets h2 {
        font-size: 2rem;
    }
    .section-wallets h3 {
        font-size: 1.4rem;
    }
    .section-wallets ul li {
        font-size: 1rem;
    }
}
.custom-section{
  background: linear-gradient(
    135deg,
    #CCDAD3 0%,       
    #E1D7F7 100%      
  );
  padding: 40px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
  margin: 30px auto;
  color: #222;
}
.custom-section h2{
  color: #222;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.custom-section h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 90px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg,#8C50FF,#CCDAD3);
  box-shadow: 0 3px 12px rgba(140,80,255,0.4);
}
.custom-section h3{
  color: #333;
  font-weight: 600;
  margin: 18px 0 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-section h3::before{
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, #CCDAD3, #8C50FF);
  box-shadow: 0 2px 8px rgba(140,80,255,0.4);
}
.custom-section p{
  line-height: 1.6;
  color: #222;
}
.custom-section .fancy-rule{
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, transparent,#8C8C8C,transparent);
}
.faq{
  max-width: 1400px;
  margin: 60px auto;
  padding: 20px;
  box-sizing: border-box;
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  color: #111216;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(204,218,211,0.06) 100%);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6,8,10,0.06);
  border: 1px solid rgba(12,12,12,0.03);
}
.faq > * + *{
  margin-top: 18px;
  display: block;
}
.faq h3{
  margin: 0;
  padding: 14px 18px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.15;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(204,218,211,0.18), rgba(225,215,247,0.06));
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms;
  user-select: none;
  color: #0f1720;
}
.faq h3:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(8,10,12,0.06);
}
.faq h3::before{
  content: "";
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  margin-right: 12px;
  background: conic-gradient(from 120deg, #CCDAD3 0%, #E1D7F7 60%, rgba(140,80,255,0.06) 100%);
  box-shadow: inset 0 -4px 10px rgba(255,255,255,0.06);
  flex: 0 0 36px;
}
.faq h3::after{
  content: "";
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-right: 2px solid rgba(15,15,15,0.45);
  border-bottom: 2px solid rgba(15,15,15,0.45);
  margin-left: 12px;
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms;
  flex: 0 0 auto;
}
.faq p{
  margin: 10px 0 0 0;
  padding: 14px 18px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  line-height: 1.6;
  color: #1f2628;
  box-shadow: 0 8px 20px rgba(6,8,10,0.03);
  border: 1px solid rgba(12,12,12,0.03);
  font-size: 0.98rem;
}
.faq .tag{
  display: inline-block;
  font-size: 12px;
  padding: 6px 8px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(140,80,255,0.10);
  color: #4b3b7a;
  font-weight: 600;
}
.faq h3:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(140,80,255,0.10);
  border-radius: 10px;
}
.faq .qa-group + .qa-group{
  margin-top: 18px;
}
:root{
  --soft-green: #CCDAD3;
  --baby-lilac: #E1D7F7;
  --ink: #111216;
  --radius: 18px;
  --pad: 36px;
  --line-alpha: 0.18;
}
.styled-section{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: calc(var(--pad) * 0.7) calc(var(--pad) * 0.9);
  max-width: 1400px;
  margin: 28px auto;
  color: var(--ink);
  background: linear-gradient(135deg, var(--soft-green), var(--baby-lilac));
  box-shadow: 0 14px 36px rgba(8,10,12,0.06);
  isolation: isolate;
}
.styled-section::before{
  content: "";
  position: absolute;
  inset: -40% -20%;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(140,80,255,var(--line-alpha)) 0 2px,
    transparent 2px 30px
  );
  opacity: 0.5;
  animation: moveLinesA 8s linear infinite;
  filter: blur(0.6px);
}
.styled-section::after{
  content: "";
  position: absolute;
  inset: -30% -30%;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(204,218,211,0.20) 0 4px,
      transparent 4px 60px
    ),
    radial-gradient(circle at 10% 20%, rgba(225,215,247,0.06), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: moveLinesB 18s linear infinite reverse;
  filter: blur(1.2px);
}
.styled-section > *{
  position: relative;
  z-index: 1;
}
.styled-section h2{
  font-weight: 800;
  color: #4b3b7a; 
  text-shadow: 0 4px 6px rgba(140,80,255,0.25), 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.styled-section h2:hover{
  transform: translateY(-3px) scale(1.02);
  text-shadow: 0 6px 12px rgba(140,80,255,0.35), 0 10px 25px rgba(0,0,0,0.12);
}
.styled-section h2::after{
  content: "";
  display: block;
  height: 8px;
  width: 88px;
  margin-top: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #8C50FF, var(--soft-green));
  box-shadow: 0 6px 18px rgba(140,80,255,0.12);
}
.styled-section h3{
  color: #1f2628;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(204,218,211,0.12), rgba(225,215,247,0.05));
  box-shadow: 0 6px 14px rgba(12,15,17,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.styled-section h3::before{
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, #CCDAD3, #E1D7F7, #8C50FF);
  box-shadow: inset 0 -3px 8px rgba(255,255,255,0.08), 0 4px 12px rgba(140,80,255,0.08);
  flex-shrink: 0;
}
.styled-section h3:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(12,15,17,0.08);
}
.styled-section p{
  display: flow-root;
  margin: 10px 0 0 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  line-height: 1.6;
  color: #1f2628;
  box-shadow: 0 6px 18px rgba(12,15,17,0.03);
  font-size: 0.98rem;
}
@keyframes moveLinesA {
  0%   { background-position: 0 0; }
  100% { background-position: -1200px 1200px; }
}
@keyframes moveLinesB {
  0%   { background-position: 0 0; }
  100% { background-position: 900px -900px; }
}
@media (max-width: 720px){
  .styled-section{
    padding: 18px;
    border-radius: 12px;
  }
  .styled-section::before{ opacity: 0.42; filter: blur(0.8px); }
  .styled-section::after{ opacity: 0.6; filter: blur(1px); }
  .styled-section h2{ font-size: 1.9rem; }
  .styled-section h3{ font-size: 1.2rem; }
  .styled-section p{ font-size: 0.97rem; padding: 10px 12px; }
}
@media (prefers-reduced-motion: reduce){
  .styled-section::before,
  .styled-section::after{
    animation: none;
    transition: none;
  }
}
@media (max-width: 768px) {
  h1{
    font-size: 28px!important;
  }
  h2{
    font-size: 26px!important;
  }
  h3{
    font-size: 24px!important;
  }
}