@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap");
:root {
  --dbb-bg: #070811;
  --dbb-panel: rgba(14, 16, 32, 0.86);
  --dbb-text: #d9dbea;
  --dbb-white: #ffffff;
  --dbb-cyan: #6ff4ff;
  --dbb-blue: #2c7dff;
  --dbb-purple: #7d35ed;
  --dbb-pink: #f13bb5;
  --dbb-gold: #f7c968;
  --dbb-header-height: 92px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
section[id],
footer[id],
[id="responsible"] {
  scroll-margin-top: calc(var(--dbb-header-height) + 18px);
}
body {
  margin: 0;
  background: var(--dbb-bg);
  color: var(--dbb-text);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Header */
.dbb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--dbb-header-height);
}
.dbb-header .site-navigation {
  min-height: var(--dbb-header-height);
  background: linear-gradient(
    90deg,
    rgba(5, 6, 16, 0.98),
    rgba(16, 10, 34, 0.96) 52%,
    rgba(5, 19, 28, 0.98)
  );
  border-bottom: 1px solid rgba(111, 244, 255, 0.16);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}
.dbb-header .container {
  max-width: 1480px;
}
.dbb-header .navbar {
  min-height: var(--dbb-header-height);
}
.dbb-header .logo {
  display: flex;
  align-items: center;
  width: 222px;
  min-height: var(--dbb-header-height);
  flex: 0 0 auto;
}
.dbb-header .logo a {
  display: flex !important;
  align-items: center;
  min-height: 74px;
}
.dbb-header .logo img {
  width: 214px !important;
  max-width: none;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(111, 244, 255, 0.25))
    drop-shadow(0 0 16px rgba(125, 53, 237, 0.2));
}
.dbb-header .navbar-nav {
  gap: 2px;
}
.dbb-header .navbar-nav > li {
  display: flex;
  align-items: center;
}
.dbb-header .navbar-nav > li > .nav-link {
  position: relative;
  padding: 35px 8px 32px !important;
  color: #d8d8e7 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.dbb-header .navbar-nav > li:not(.header-get-a-quote) > .nav-link::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 25px;
  left: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--dbb-cyan),
    var(--dbb-purple),
    var(--dbb-pink)
  );
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.dbb-header .navbar-nav > li:not(.header-get-a-quote) > .nav-link:hover,
.dbb-header .navbar-nav > li:not(.header-get-a-quote) > .nav-link:focus {
  color: var(--dbb-cyan) !important;
  transform: translateY(-1px);
}
.dbb-header .navbar-nav > li:not(.header-get-a-quote) > .nav-link:hover::after,
.dbb-header .navbar-nav > li:not(.header-get-a-quote) > .nav-link:focus::after {
  transform: scaleX(1);
}
.dbb-header .header-get-a-quote {
  margin-left: 12px;
}
.dbb-header .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 50px;
  padding: 14px 23px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--dbb-purple),
    #a139f2 48%,
    var(--dbb-pink)
  ) !important;
  color: var(--dbb-white) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow:
    0 5px 0 #3b146d,
    0 12px 28px rgba(125, 53, 237, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.dbb-header .btn-primary:hover,
.dbb-header .btn-primary:focus {
  background: linear-gradient(
    135deg,
    var(--dbb-cyan),
    var(--dbb-blue),
    var(--dbb-purple)
  ) !important;
  box-shadow:
    0 3px 0 #163f89,
    0 14px 30px rgba(44, 125, 255, 0.3);
  filter: brightness(1.06);
  transform: translateY(2px);
}
.dbb-header .navbar-toggler {
  width: 48px;
  height: 44px;
  padding: 6px;
  border: 1px solid rgba(111, 244, 255, 0.4);
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    rgba(125, 53, 237, 0.95),
    rgba(241, 59, 181, 0.9)
  );
}
.dbb-header .navbar-toggler-icon {
  filter: invert(1);
}
/* Hero */
.dbb-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--dbb-header-height));
  min-height: calc(100svh - var(--dbb-header-height));
  overflow: hidden;
  background: #070811;
}
.dbb-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.dbb-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dbb-hero__background span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(125, 53, 237, 0.14),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(3, 4, 14, 0.99) 0%,
      rgba(6, 7, 22, 0.96) 30%,
      rgba(8, 8, 27, 0.72) 49%,
      rgba(5, 7, 20, 0.18) 72%,
      rgba(5, 7, 20, 0.04) 100%
    );
}
.dbb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      120deg,
      transparent 46%,
      rgba(111, 244, 255, 0.055) 69%,
      transparent 90%
    ),
    linear-gradient(180deg, transparent 72%, rgba(7, 8, 17, 0.7));
  pointer-events: none;
}
.dbb-hero::after {
  content: "";
  position: absolute;
  top: 12%;
  left: -140px;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(125, 53, 237, 0.12);
  filter: blur(110px);
  pointer-events: none;
}
.dbb-hero .slider-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
  padding: 70px 0 82px;
}
.dbb-hero .container {
  max-width: 1480px;
}
.dbb-hero .slide-sub-title {
  max-width: 900px;
  margin: 0 0 27px;
  background: linear-gradient(100deg, #fff 5%, #fff 62%, #91f9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(54px, 5vw, 86px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 15px 42px rgba(0, 0, 0, 0.42);
}
.dbb-hero .hero-description {
  max-width: 720px;
  color: #cbd0df;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}
.dbb-hero .hero-description p {
  margin: 0 0 17px;
  color: inherit;
}
.dbb-hero .hero-description p:last-child {
  margin-bottom: 0;
}
.dbb-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-hero__features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(8, 8, 24, 0.68);
  color: #eeedf7;
  font-size: 12px;
  box-shadow: inset 0 0 18px rgba(111, 244, 255, 0.035);
}
.dbb-hero__features li > span {
  color: var(--dbb-cyan);
  font-size: 11px;
}
.dbb-hero__features strong {
  font-weight: 800;
}
.dbb-hero__cta {
  display: inline-flex;
  min-width: 190px;
  min-height: 58px;
  margin-top: 22px;
  padding: 15px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, #7e32ee, #ee2ebc);
  box-shadow: 0 12px 28px rgba(126, 50, 238, 0.34);
  color: #fff !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.dbb-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(126, 50, 238, 0.44);
}
.dbb-hero__note {
  margin: 18px 0 0;
  color: #aaaebe;
  font-size: 12px;
}
@media (min-width: 1200px) {
  .dbb-header .container,
  .dbb-hero .container,
  .dbb-games > .container,
  .dbb-bonuses > .container,
  .dbb-sports > .container,
  .dbb-payments-section > .container,
  .dbb-faq > .container,
  .dbb-footer > .container {
    width: calc(100% - 70px);
    max-width: 1480px;
    padding-right: 28px;
    padding-left: 28px;
  }
}
@media (max-width: 1199px) {
  .dbb-header .logo {
    width: 188px;
  }
  .dbb-header .logo img {
    width: 182px !important;
  }
  .dbb-header .navbar-nav > li > .nav-link {
    padding-right: 6px !important;
    padding-left: 6px !important;
    font-size: 11px;
  }
  .dbb-header .header-get-a-quote {
    margin-left: 7px;
  }
}
@media (max-width: 991px) {
  :root {
    --dbb-header-height: 82px;
  }
  .dbb-header .logo {
    width: 176px;
    min-height: 72px;
  }
  .dbb-header .logo img {
    width: 170px !important;
    max-height: 66px;
  }
  .dbb-header .navbar-collapse {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    padding: 18px 22px 24px;
    border-top: 1px solid rgba(111, 244, 255, 0.12);
    border-bottom: 1px solid rgba(111, 244, 255, 0.18);
    background: rgba(7, 8, 19, 0.985);
    box-shadow: 0 28px 44px rgba(0, 0, 0, 0.42);
  }
  .dbb-header .navbar-nav {
    display: block;
  }
  .dbb-header .navbar-nav > li {
    display: block;
  }
  .dbb-header .navbar-nav > li > .nav-link {
    padding: 12px 8px !important;
    font-size: 14px;
  }
  .dbb-header .navbar-nav > li:not(.header-get-a-quote) > .nav-link::after {
    right: auto;
    bottom: 5px;
    left: 8px;
    width: 40px;
  }
  .dbb-header .header-get-a-quote {
    margin: 14px 0 0;
  }
  .dbb-header .header-get-a-quote .btn-primary {
    width: 100%;
  }
  .dbb-hero {
    min-height: calc(100svh - var(--dbb-header-height));
  }
  .dbb-hero__background img {
    object-position: 63% center;
  }
  .dbb-hero .slider-content {
    padding: 76px 0;
  }
  .dbb-hero .slide-sub-title {
    font-size: clamp(43px, 8vw, 62px);
  }
}
@media (max-width: 575px) {
  .dbb-header .logo {
    width: 164px;
  }
  .dbb-header .logo img {
    width: 158px !important;
  }
  .dbb-hero__background img {
    object-position: 69% center;
  }
  .dbb-hero .slider-content {
    padding: 62px 0 68px;
  }
  .dbb-hero .slide-sub-title {
    font-size: 40px;
    line-height: 1.04;
  }
  .dbb-hero .hero-description {
    font-size: 15px;
    line-height: 1.65;
  }
  .dbb-hero__features li {
    width: calc(50% - 6px);
    justify-content: center;
    padding: 9px 7px;
    font-size: 11px;
  }
}
/* Complete casino games section */
.dbb-games {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: linear-gradient(180deg, #f6f4fa 0%, #eeeaf5 44%, #f7f5fa 100%);
  color: #1a1723;
}
.dbb-games::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(125, 53, 237, 0.1);
  filter: blur(110px);
  pointer-events: none;
}
.dbb-games > .container {
  position: relative;
  max-width: 1480px;
}
.dbb-games__header {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
.dbb-games__header > span,
.dbb-games__group-heading span,
.dbb-games__live-intro > div > span {
  color: #6c2ed7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-games__header h2 {
  margin: 12px 0 20px;
  color: #17131f;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.01;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.dbb-games__header h2 strong {
  display: block;
  color: #6c2ed7;
  font-weight: inherit;
}
.dbb-games__header p {
  max-width: 760px;
  margin: 0 auto;
  color: #6b6574;
  font-size: 16px;
  line-height: 1.75;
}
.dbb-games__group {
  position: relative;
  padding: 58px;
  border: 1px solid rgba(42, 31, 62, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(34, 23, 54, 0.08);
}
.dbb-games__group + .dbb-games__group {
  margin-top: 34px;
}
.dbb-games__group--modern {
  background: linear-gradient(145deg, #171124, #0b1621);
  color: #fff;
}
.dbb-games__group--live {
  background: linear-gradient(145deg, #120d20, #17102b 60%, #09202a);
  color: #fff;
}
.dbb-games__group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 36px;
}
.dbb-games__group-heading h3,
.dbb-games__live-intro h3 {
  margin: 7px 0 0;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.dbb-games__group-heading > p {
  margin: 0;
  color: #716a7a;
  line-height: 1.72;
}
.dbb-games__group--modern .dbb-games__group-heading > p {
  color: #aaa6b5;
}
.dbb-games__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.dbb-game-card {
  overflow: hidden;
  border: 1px solid rgba(41, 31, 58, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(30, 20, 46, 0.09);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.dbb-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(30, 20, 46, 0.16);
}
.dbb-game-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.dbb-game-card > div {
  padding: 23px 22px 25px;
}
.dbb-game-card > div > span {
  color: #7130d9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-game-card h4 {
  margin: 8px 0 10px;
  color: #1b1722;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
}
.dbb-game-card p {
  margin: 0;
  color: #6e6876;
  font-size: 13px;
  line-height: 1.7;
}
.dbb-games__group--modern .dbb-game-card {
  border-color: rgba(111, 244, 255, 0.15);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}
.dbb-games__group--modern .dbb-game-card h4 {
  color: #fff;
}
.dbb-games__group--modern .dbb-game-card p {
  color: #ada9b9;
}
.dbb-games__group--modern .dbb-game-card > div > span {
  color: var(--dbb-cyan);
}
.dbb-game-card--jackpot {
  box-shadow:
    0 0 0 1px rgba(247, 201, 104, 0.22),
    0 18px 48px rgba(125, 53, 237, 0.2);
}
.dbb-game-card--jackpot > div > span {
  color: var(--dbb-gold) !important;
}
.dbb-games__live-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 42px;
}
.dbb-games__live-intro h3 strong {
  display: block;
  color: var(--dbb-cyan);
  font-weight: inherit;
}
.dbb-games__live-intro p {
  margin: 18px 0;
  color: #b7b4c3;
  line-height: 1.75;
}
.dbb-games__live-intro ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-games__live-intro li {
  position: relative;
  padding-left: 21px;
  color: #e2dfea;
  font-size: 13px;
}
.dbb-games__live-intro li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dbb-cyan);
  box-shadow: 0 0 12px rgba(111, 244, 255, 0.55);
}
.dbb-games__live-intro > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid rgba(111, 244, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.dbb-games__group--live .dbb-game-card {
  border-color: rgba(111, 244, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.dbb-games__group--live .dbb-game-card h4 {
  color: #fff;
}
.dbb-games__group--live .dbb-game-card p {
  color: #b3afbf;
}
.dbb-games__group--live .dbb-game-card > div > span {
  color: var(--dbb-cyan);
}
.dbb-games__note {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 25px 30px;
  border: 1px solid rgba(108, 46, 215, 0.16);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(34, 23, 54, 0.06);
}
.dbb-games__note strong {
  flex: 0 0 auto;
  color: #211929;
}
.dbb-games__note p {
  margin: 0;
  color: #716a79;
  line-height: 1.65;
}
@media (max-width: 1199px) {
  .dbb-games__group {
    padding: 40px;
  }
  .dbb-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .dbb-games {
    padding: 82px 0;
  }
  .dbb-games__header {
    margin-bottom: 48px;
  }
  .dbb-games__group {
    padding: 27px 18px;
    border-radius: 22px;
  }
  .dbb-games__group-heading,
  .dbb-games__live-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dbb-games__grid {
    grid-template-columns: 1fr;
  }
  .dbb-games__note {
    display: block;
    padding: 22px;
  }
  .dbb-games__note p {
    margin-top: 8px;
  }
}
/* Semantic icons instead of decorative numbering */
.dbb-casino__live-steps {
  counter-reset: none;
}
.dbb-casino__live-steps article {
  padding-left: 62px;
  counter-increment: none;
}
.dbb-casino__live-steps article::before {
  content: none;
  display: none;
}
.dbb-casino__live-steps article > i {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: linear-gradient(145deg, #ff55b4, #8242dd);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 7px 16px rgba(29, 5, 54, 0.2);
}
.dbb-casino__game-map b i {
  font-size: 12px;
}
.dbb-casino-game--baccarat::after {
  content: "◉";
  color: rgba(222, 139, 48, 0.08);
}
/* ==================================================
                    BONUSES SECTION START
================================================== */
.dbb-bonuses {
  position: relative;
  overflow: hidden;
  padding: 120px 0 105px;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(125, 53, 237, 0.2),
      transparent 25%
    ),
    radial-gradient(
      circle at 89% 78%,
      rgba(111, 244, 255, 0.11),
      transparent 24%
    ),
    linear-gradient(180deg, #080811 0%, #120b22 50%, #080a13 100%);
  color: #fff;
}
.dbb-bonuses::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 18%,
    black 85%,
    transparent
  );
}
.dbb-bonuses > .container {
  position: relative;
  max-width: 1480px;
}
.dbb-bonuses__header {
  max-width: 930px;
  margin: 0 auto 42px;
  text-align: center;
}
.dbb-bonuses__header > span,
.dbb-bonuses__section-heading span,
.dbb-bonuses__how > div > span,
.dbb-bonuses__terms > div > span {
  color: var(--dbb-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-bonuses__header h2 {
  margin: 12px 0 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.01;
  font-weight: 900;
  letter-spacing: -0.052em;
}
.dbb-bonuses__header h2 strong {
  display: block;
  color: var(--dbb-cyan);
  font-weight: inherit;
}
.dbb-bonuses__header p {
  max-width: 780px;
  margin: 0 auto;
  color: #b7b4c3;
  font-size: 16px;
  line-height: 1.75;
}
.dbb-bonuses__reminder {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 66px;
  padding: 23px 27px;
  border: 1px solid rgba(247, 201, 104, 0.25);
  border-radius: 16px;
  background: rgba(247, 201, 104, 0.07);
}
.dbb-bonuses__reminder strong {
  flex: 0 0 auto;
  color: var(--dbb-gold);
}
.dbb-bonuses__reminder p {
  margin: 0;
  color: #cac5d3;
  font-size: 13px;
  line-height: 1.7;
}
.dbb-bonuses__welcome,
.dbb-bonuses__reloads,
.dbb-bonuses__cashback,
.dbb-bonuses__sports {
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}
.dbb-bonuses__reloads,
.dbb-bonuses__cashback,
.dbb-bonuses__sports {
  margin-top: 30px;
}
.dbb-bonuses__reloads {
  background: linear-gradient(
    145deg,
    rgba(125, 53, 237, 0.15),
    rgba(255, 255, 255, 0.03)
  );
}
.dbb-bonuses__sports {
  background: linear-gradient(
    145deg,
    rgba(11, 80, 89, 0.32),
    rgba(255, 255, 255, 0.03)
  );
}
.dbb-bonuses__section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}
.dbb-bonuses__section-heading h3,
.dbb-bonuses__how h3,
.dbb-bonuses__terms h3 {
  margin: 8px 0 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.dbb-bonuses__section-heading > p {
  margin: 0;
  color: #aaa6b5;
  line-height: 1.72;
}
.dbb-bonuses__welcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.dbb-bonus-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: rgba(7, 8, 18, 0.62);
}
.dbb-bonus-card--featured {
  border-color: rgba(247, 201, 104, 0.28);
  background: linear-gradient(
    145deg,
    rgba(125, 53, 237, 0.24),
    rgba(7, 8, 18, 0.8)
  );
}
.dbb-bonus-card--sport {
  border-color: rgba(111, 244, 255, 0.3);
}
.dbb-bonus-card--crypto,
.dbb-bonus-card--crypto-sport {
  border-color: rgba(241, 59, 181, 0.23);
}
.dbb-bonus-card > span,
.dbb-bonuses__reload-grid article > span,
.dbb-bonuses__cashback-grid article > span,
.dbb-bonuses__sports-grid article > span {
  color: var(--dbb-cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-bonus-card h4 {
  margin: 9px 0 2px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.04em;
}
.dbb-bonus-card > strong {
  display: block;
  margin-bottom: 17px;
  color: var(--dbb-gold);
  font-size: 15px;
}
.dbb-bonus-card > p {
  min-height: 72px;
  margin: 0 0 19px;
  color: #aaa6b6;
  font-size: 13px;
  line-height: 1.7;
}
.dbb-bonus-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-bonus-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6d2de;
  font-size: 12px;
}
.dbb-bonus-card li b {
  color: #fff;
}
.dbb-bonus-card li span {
  text-align: right;
}
.dbb-bonuses__reload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.dbb-bonuses__reload-grid article {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(7, 8, 18, 0.56);
}
.dbb-bonuses__reload-grid h4 {
  margin: 7px 0 18px;
  color: #fff;
  font-size: 21px;
}
.dbb-bonuses__reload-grid dl {
  margin: 0 0 17px;
}
.dbb-bonuses__reload-grid dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.dbb-bonuses__reload-grid dt {
  color: #aaa6b5;
  font-size: 12px;
  font-weight: 500;
}
.dbb-bonuses__reload-grid dd {
  margin: 0;
  color: var(--dbb-gold);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}
.dbb-bonuses__reload-grid p,
.dbb-bonuses__cashback-grid p,
.dbb-bonuses__sports-grid p {
  margin: 0;
  color: #aaa6b5;
  font-size: 12px;
  line-height: 1.7;
}
.dbb-bonuses__cashback-grid,
.dbb-bonuses__sports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dbb-bonuses__cashback-grid article,
.dbb-bonuses__sports-grid article {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(7, 8, 18, 0.58);
}
.dbb-bonuses__cashback-grid h4 {
  margin: 12px 0 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
}
.dbb-bonuses__cashback-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--dbb-gold);
}
.dbb-bonuses__sports-grid h4 {
  min-height: 55px;
  margin: 11px 0 16px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}
.dbb-bonuses__how {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 70px;
  align-items: start;
  margin-top: 30px;
  padding: 50px;
  border-radius: 26px;
  background: #f4f1f8;
  color: #1c1823;
}
.dbb-bonuses__how h3 {
  color: #1c1823;
}
.dbb-bonuses__how > div > p {
  color: #6e6876;
  line-height: 1.7;
}
.dbb-bonuses__how ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-bonuses__how li {
  position: relative;
  padding: 23px 20px 20px 34px;
  border: 1px solid #ded8e7;
  border-radius: 15px;
  background: #fff;
}
.dbb-bonuses__how li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6c2ed7;
  box-shadow: 0 0 10px rgba(108, 46, 215, 0.35);
}
.dbb-bonuses__how li strong {
  display: block;
  margin-bottom: 5px;
}
.dbb-bonuses__how li span {
  color: #746e7c;
  font-size: 12px;
  line-height: 1.55;
}
.dbb-bonuses__terms {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  margin-top: 30px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.035);
}
.dbb-bonuses__terms ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-bonuses__terms li {
  padding: 17px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}
.dbb-bonuses__terms li strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}
.dbb-bonuses__terms li span {
  color: #aaa6b5;
  font-size: 12px;
  line-height: 1.55;
}
.dbb-bonuses__notice {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-top: 30px;
  padding: 25px 28px;
  border: 1px solid rgba(111, 244, 255, 0.2);
  border-radius: 17px;
  background: rgba(111, 244, 255, 0.055);
}
.dbb-bonuses__notice strong {
  display: grid;
  place-items: center;
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  border: 2px solid var(--dbb-cyan);
  border-radius: 50%;
  color: #fff;
}
.dbb-bonuses__notice p {
  margin: 0;
  color: #bbb7c5;
  line-height: 1.65;
}
.dbb-bonuses__geo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 8, 18, 0.75);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}
.dbb-bonuses__geo span {
  font-size: 20px;
}
.dbb-bonuses__geo strong {
  font-size: 13px;
}
@media (max-width: 991px) {
  .dbb-bonuses__welcome,
  .dbb-bonuses__reloads,
  .dbb-bonuses__cashback,
  .dbb-bonuses__sports {
    padding: 38px;
  }
  .dbb-bonuses__section-heading,
  .dbb-bonuses__how,
  .dbb-bonuses__terms {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dbb-bonuses__cashback-grid,
  .dbb-bonuses__sports-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-bonuses {
    padding: 82px 0 75px;
  }
  .dbb-bonuses__reminder {
    display: block;
  }
  .dbb-bonuses__reminder p {
    margin-top: 7px;
  }
  .dbb-bonuses__welcome,
  .dbb-bonuses__reloads,
  .dbb-bonuses__cashback,
  .dbb-bonuses__sports,
  .dbb-bonuses__how,
  .dbb-bonuses__terms {
    padding: 27px 18px;
    border-radius: 21px;
  }
  .dbb-bonuses__welcome-grid,
  .dbb-bonuses__reload-grid,
  .dbb-bonuses__how ol,
  .dbb-bonuses__terms ul {
    grid-template-columns: 1fr;
  }
  .dbb-bonus-card > p {
    min-height: 0;
  }
  .dbb-bonuses__notice {
    align-items: flex-start;
  }
}
/* ==================================================
                     BONUSES SECTION END
================================================== */ /* ==================================================
                    SPORTS SECTION START
================================================== */
.dbb-sports {
  padding: 120px 0;
  background: linear-gradient(180deg, #f7f6fa 0%, #eeebf4 52%, #f8f7fa 100%);
  color: #191620;
}
.dbb-sports > .container {
  max-width: 1480px;
}
.dbb-sports__hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  padding: 58px;
  border-radius: 30px;
  background: linear-gradient(145deg, #0a0d17, #15112a 60%, #092630);
  color: #fff;
  box-shadow: 0 30px 85px rgba(28, 20, 44, 0.2);
}
.dbb-sports__hero-copy > span,
.dbb-sports__heading span,
.dbb-sports__extended span {
  color: var(--dbb-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-sports__hero h2 {
  margin: 12px 0 21px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.dbb-sports__hero h2 strong {
  display: block;
  color: var(--dbb-cyan);
  font-weight: inherit;
}
.dbb-sports__hero-copy > p {
  color: #d0ccd8;
  font-size: 16px;
  line-height: 1.76;
}
.dbb-sports__description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 22px;
}
.dbb-sports__description p {
  margin: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #aaa7b5;
  font-size: 12px;
  line-height: 1.67;
}
.dbb-sports__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}
.dbb-sports__pills span {
  padding: 8px 12px;
  border: 1px solid rgba(111, 244, 255, 0.24);
  border-radius: 999px;
  color: #e7fcff;
  font-size: 11px;
}
.dbb-sports__hero figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 244, 255, 0.18);
  border-radius: 23px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.dbb-sports__hero figure img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}
.dbb-sports__journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 24px;
}
.dbb-sports__journey article {
  position: relative;
  padding: 26px 23px 23px;
  border: 1px solid #ddd8e6;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(31, 22, 47, 0.06);
}
.dbb-sports__journey article::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, #6c2ed7, var(--dbb-cyan));
}
.dbb-sports__journey strong {
  display: block;
  margin-bottom: 7px;
  color: #211b29;
}
.dbb-sports__journey p {
  margin: 0;
  color: #746d7c;
  font-size: 12px;
  line-height: 1.6;
}
.dbb-sports__coverage,
.dbb-sports__modes,
.dbb-sports__tools {
  margin-top: 34px;
  padding: 54px;
  border: 1px solid #ddd8e6;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(31, 22, 47, 0.07);
}
.dbb-sports__modes {
  background: linear-gradient(145deg, #171124, #0a1721);
  color: #fff;
}
.dbb-sports__heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  gap: 65px;
  align-items: end;
  margin-bottom: 34px;
}
.dbb-sports__heading h3 {
  margin: 8px 0 0;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.dbb-sports__heading > p {
  margin: 0;
  color: #746d7d;
  line-height: 1.7;
}
.dbb-sports__modes .dbb-sports__heading > p {
  color: #aaa6b5;
}
.dbb-sports__visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.dbb-sports__visual-grid article {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid #e1dce8;
  border-radius: 19px;
  background: #f8f6fa;
}
.dbb-sports__visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}
.dbb-sports__visual-grid article > div {
  padding: 24px;
}
.dbb-sports__visual-grid article span,
.dbb-sports__mode-grid article > span {
  color: #6c2ed7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-sports__visual-grid h4 {
  margin: 8px 0 11px;
  color: #201a27;
  font-size: 19px;
  line-height: 1.25;
}
.dbb-sports__visual-grid p {
  margin: 0;
  color: #746d7c;
  font-size: 12px;
  line-height: 1.65;
}
.dbb-sports__more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.dbb-sports__more span {
  padding: 9px 13px;
  border: 1px solid #dfdae7;
  border-radius: 999px;
  background: #f7f5f9;
  color: #61596b;
  font-size: 11px;
  font-weight: 700;
}
.dbb-sports__mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dbb-sports__mode-grid article {
  padding: 28px;
  border: 1px solid rgba(111, 244, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}
.dbb-sports__mode-grid article > span {
  color: var(--dbb-cyan);
}
.dbb-sports__mode-grid h4 {
  margin: 9px 0 13px;
  color: #fff;
  font-size: 19px;
}
.dbb-sports__mode-grid p {
  margin: 0;
  color: #aaa6b5;
  font-size: 12px;
  line-height: 1.7;
}
.dbb-sports__tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dbb-sports__tools-grid article {
  padding: 26px;
  border-radius: 17px;
  background: #f6f3f8;
}
.dbb-sports__tools-grid article::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #6c2ed7;
  box-shadow: 0 0 0 7px rgba(108, 46, 215, 0.09);
}
.dbb-sports__tools-grid h4 {
  margin: 0 0 10px;
  color: #201a27;
}
.dbb-sports__tools-grid p {
  margin: 0;
  color: #746d7c;
  font-size: 12px;
  line-height: 1.68;
}
.dbb-sports__extended {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.dbb-sports__extended article {
  padding: 30px;
  border: 1px solid #ddd8e6;
  border-radius: 19px;
  background: #fff;
}
.dbb-sports__extended span {
  color: #6c2ed7;
}
.dbb-sports__extended h3 {
  margin: 8px 0 11px;
  color: #201a27;
  font-size: 21px;
}
.dbb-sports__extended p {
  margin: 0;
  color: #746d7c;
  font-size: 12px;
  line-height: 1.68;
}
.dbb-sports__notice {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  padding: 25px 28px;
  border-radius: 18px;
  background: #20192b;
  color: #fff;
}
.dbb-sports__notice strong {
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--dbb-cyan);
  border-radius: 50%;
}
.dbb-sports__notice p {
  margin: 0;
  color: #c5c1cc;
  line-height: 1.68;
}
@media (max-width: 1199px) {
  .dbb-sports__hero {
    grid-template-columns: 1fr;
  }
  .dbb-sports__hero figure img {
    min-height: 430px;
  }
  .dbb-sports__journey,
  .dbb-sports__mode-grid,
  .dbb-sports__tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .dbb-sports {
    padding: 82px 0;
  }
  .dbb-sports__hero,
  .dbb-sports__coverage,
  .dbb-sports__modes,
  .dbb-sports__tools {
    padding: 27px 18px;
    border-radius: 21px;
  }
  .dbb-sports__description,
  .dbb-sports__heading,
  .dbb-sports__visual-grid,
  .dbb-sports__journey,
  .dbb-sports__mode-grid,
  .dbb-sports__tools-grid,
  .dbb-sports__extended {
    grid-template-columns: 1fr;
  }
  .dbb-sports__heading {
    gap: 22px;
  }
  .dbb-sports__visual-grid article {
    grid-template-columns: 1fr;
  }
  .dbb-sports__hero figure img {
    min-height: 300px;
  }
  .dbb-sports__notice {
    align-items: flex-start;
  }
}
/* ==================================================
                     SPORTS SECTION END
================================================== */ /* ==================================================
                    PAYMENTS SECTION START
================================================== */
.dbb-payments-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: linear-gradient(180deg, #090a14 0%, #111024 52%, #080a12 100%);
  color: #fff;
}
.dbb-payments-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 20%,
    black 85%,
    transparent
  );
}
.dbb-payments-section > .container {
  position: relative;
  max-width: 1480px;
}
.dbb-payment__payments {
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(125, 53, 237, 0.12),
    rgba(255, 255, 255, 0.025) 45%,
    rgba(111, 244, 255, 0.055)
  );
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}
.dbb-payment__payments-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.68fr);
  gap: 70px;
  align-items: end;
}
.dbb-payment__card-label {
  margin: 0 0 10px;
  color: var(--dbb-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.dbb-payment__payments-heading h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 4.3vw, 65px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.dbb-payment__payments-heading > p {
  margin: 0;
  color: #aaa7b5;
  line-height: 1.75;
}
.dbb-payment__intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 38px 0;
}
.dbb-payment__intro article {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}
.dbb-payment__intro article::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--dbb-purple), var(--dbb-cyan));
}
.dbb-payment__intro strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}
.dbb-payment__intro p {
  margin: 0;
  color: #aaa7b5;
  font-size: 12px;
  line-height: 1.67;
}
.dbb-payment__payment-switcher {
  position: relative;
}
.dbb-payment__payment-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.dbb-payment__payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(4, 5, 13, 0.65);
}
.dbb-payment__payment-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  margin: 0;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #aaa7b5;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.dbb-payment__payment-tab-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--dbb-cyan);
  font-size: 18px;
}
.dbb-payment__payment-tab strong,
.dbb-payment__payment-tab small {
  display: block;
}
.dbb-payment__payment-tab strong {
  color: inherit;
  font-size: 15px;
}
.dbb-payment__payment-tab small {
  margin-top: 3px;
  color: #817c8d;
  font-size: 11px;
}
#dbb-payment-control-deposit:checked
  ~ .dbb-payment__payment-tabs
  .dbb-payment__payment-tab--deposit,
#dbb-payment-control-withdrawal:checked
  ~ .dbb-payment__payment-tabs
  .dbb-payment__payment-tab--withdrawal {
  border-color: rgba(111, 244, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(125, 53, 237, 0.35),
    rgba(111, 244, 255, 0.1)
  );
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.dbb-payment__payment-panel {
  display: none;
}
#dbb-payment-control-deposit:checked
  ~ .dbb-payment__payment-panels
  .dbb-payment__payment-panel--deposit,
#dbb-payment-control-withdrawal:checked
  ~ .dbb-payment__payment-panels
  .dbb-payment__payment-panel--withdrawal {
  display: block;
  animation: ww-payment-in 0.24s ease;
}
@keyframes ww-payment-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.dbb-payment__panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 23px 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}
.dbb-payment__panel-heading > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.dbb-payment__panel-heading > p {
  margin: 0;
  color: #aaa7b5;
  font-size: 12px;
}
.dbb-payment__status-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dbb-cyan);
  box-shadow: 0 0 14px rgba(111, 244, 255, 0.65);
}
.dbb-payment__status-dot--pink {
  background: var(--dbb-pink);
  box-shadow: 0 0 14px rgba(241, 59, 181, 0.6);
}
.dbb-payment__method-group {
  margin-top: 20px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(4, 5, 13, 0.5);
}
.dbb-payment__method-group--crypto {
  background: linear-gradient(
    145deg,
    rgba(125, 53, 237, 0.12),
    rgba(4, 5, 13, 0.65)
  );
}
.dbb-payment__method-group-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}
.dbb-payment__method-group-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: rgba(111, 244, 255, 0.09);
  color: var(--dbb-cyan);
}
.dbb-payment__method-group-heading strong,
.dbb-payment__method-group-heading small {
  display: block;
}
.dbb-payment__method-group-heading strong {
  color: #fff;
}
.dbb-payment__method-group-heading small {
  margin-top: 3px;
  color: #8f8a99;
  font-size: 11px;
}
.dbb-payment__method-count {
  padding: 7px 10px;
  border: 1px solid rgba(111, 244, 255, 0.18);
  border-radius: 999px;
  color: var(--dbb-cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.dbb-payment__method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.dbb-payment__method {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}
.dbb-payment__method:hover {
  border-color: rgba(111, 244, 255, 0.3);
  background: rgba(111, 244, 255, 0.065);
  transform: translateY(-2px);
}
.dbb-payment__method-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 11px;
  background: linear-gradient(145deg, #211a35, #0c0b16);
  color: #f7f4ff;
  box-shadow: inset 0 0 18px rgba(124, 58, 237, 0.08);
  font-size: 22px;
}
.dbb-payment__method-icon img {
  display: block;
  width: 58px;
  max-width: calc(100% - 6px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}
.dbb-payment__method-icon b {
  color: #f7f4ff;
  font-size: 10px;
}
.dbb-payment__method-icon--apple i {
  color: #f7f4ff;
}
.dbb-payment__method-icon--paypal i {
  color: #bba2ff;
}
.dbb-payment__method > div:last-child {
  min-width: 0;
}
.dbb-payment__method strong,
.dbb-payment__method small {
  display: block;
}
.dbb-payment__method strong {
  overflow-wrap: anywhere;
  color: #f4f2f7;
  font-size: 12px;
  line-height: 1.3;
}
.dbb-payment__method small {
  margin-top: 4px;
  color: #8f8a9a;
  font-size: 10px;
  line-height: 1.3;
}
.dbb-payment__method--crypto {
  border-color: rgba(125, 53, 237, 0.18);
}
.dbb-payment__method--crypto .dbb-payment__method-icon {
  background: linear-gradient(145deg, #251c3b, #0d0c17);
  box-shadow: inset 0 0 0 1px rgba(125, 53, 237, 0.12);
}
@media (max-width: 1199px) {
  .dbb-payment__method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .dbb-payment__payments {
    padding: 38px;
  }
  .dbb-payment__payments-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .dbb-payment__intro {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-payments-section {
    padding: 82px 0;
  }
  .dbb-payment__payments {
    padding: 27px 18px;
    border-radius: 21px;
  }
  .dbb-payment__payment-tabs {
    grid-template-columns: 1fr;
  }
  .dbb-payment__panel-heading {
    display: block;
  }
  .dbb-payment__panel-heading > p {
    margin-top: 8px;
  }
  .dbb-payment__method-group {
    padding: 18px 14px;
  }
  .dbb-payment__method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dbb-payment__method {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 11px;
  }
  .dbb-payment__method-icon {
    width: 56px;
    height: 44px;
  }
}
@media (max-width: 420px) {
  .dbb-payment__method-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
                DOUBLE BUBBLE BINGO ABOUT SECTION START
================================================== */
.dbb-header .site-navigation {
  background: linear-gradient(
    90deg,
    rgba(20, 51, 57, 0.985),
    rgba(49, 29, 55, 0.98) 62%,
    rgba(42, 25, 48, 0.985)
  );
  border-bottom-color: rgba(84, 212, 202, 0.2);
}
.dbb-header .logo img {
  width: 240px !important;
  max-height: 64px;
  filter: none;
}
.dbb-header .btn-primary,
.dbb-hero__cta {
  background: linear-gradient(135deg, #e96f68, #ee8a65) !important;
  box-shadow:
    0 5px 0 #a7444b,
    0 13px 30px rgba(233, 111, 104, 0.28);
}
.dbb-hero__background img {
  filter: saturate(0.86) brightness(0.72);
}
.dbb-hero__background span {
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(84, 212, 202, 0.12),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(18, 27, 38, 0.99) 0%,
      rgba(31, 25, 43, 0.96) 34%,
      rgba(31, 25, 43, 0.68) 58%,
      rgba(17, 24, 33, 0.14) 100%
    );
}
.dbb-hero__facts {
  display: flex;
  gap: 13px 25px;
  margin: 29px 0 0;
  flex-wrap: wrap;
  color: #d9d6df;
  font-size: 12px;
  font-weight: 700;
}
.dbb-hero__facts strong,
.dbb-hero__facts span {
  position: relative;
  padding-left: 17px;
}
.dbb-hero__facts strong::before,
.dbb-hero__facts span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54d4ca;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(84, 212, 202, 0.11);
}
.dbb-library-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 35px 0 42px;
}
.dbb-library-facts article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(84, 212, 202, 0.08),
    rgba(255, 255, 255, 0.035)
  );
}
.dbb-library-facts strong,
.dbb-library-facts span {
  display: block;
}
.dbb-library-facts strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
}
.dbb-library-facts span {
  margin-top: 5px;
  color: #a8a6b2;
  font-size: 11px;
}
/* Complete rules section */
.dbb-rules {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 10%,
      rgba(84, 212, 202, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #f4eee4, #eee5db);
  color: #251f2c;
}
.dbb-rules .container {
  max-width: 1480px;
}
.dbb-rules__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px 70px;
  align-items: end;
  margin-bottom: 52px;
}
.dbb-rules__header > span {
  grid-column: 1 / -1;
  color: #2a8885;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-rules__header h2 {
  margin: 0;
  color: #241d2b;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.dbb-rules__header p {
  margin: 0;
  color: #6f6873;
  font-size: 15px;
  line-height: 1.75;
}
.dbb-rule {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(42, 31, 47, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 55px rgba(54, 38, 50, 0.08);
}
.dbb-rule:nth-of-type(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}
.dbb-rule:nth-of-type(even) figure {
  order: 2;
}
.dbb-rule figure {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #182830;
}
.dbb-rule figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dbb-rule figure figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(15, 24, 32, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
.dbb-rule__copy {
  padding: 46px;
}
.dbb-rule__copy > span {
  color: #2a8885;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-rule__copy h3 {
  margin: 10px 0 20px;
  color: #261f2d;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.dbb-rule__copy > p {
  margin: 0 0 16px;
  color: #6f6873;
  font-size: 13px;
  line-height: 1.78;
}
.dbb-rule__outcome {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid #e96f68;
  border-radius: 0 14px 14px 0;
  background: #f5e6df;
}
.dbb-rule__outcome strong {
  display: block;
  margin-bottom: 6px;
  color: #342532;
  font-size: 13px;
}
.dbb-rule__outcome p {
  margin: 0;
  color: #705f69;
  font-size: 12px;
  line-height: 1.7;
}
.dbb-rule__copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-rule__copy li {
  position: relative;
  padding-left: 22px;
  color: #5f5964;
  font-size: 12px;
  line-height: 1.55;
}
.dbb-rule__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #21877f;
  font-weight: 900;
}
.dbb-rules__note {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) 1fr;
  gap: 28px;
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: 19px;
  background: linear-gradient(135deg, #173f46, #32243b);
  color: #fff;
}
.dbb-rules__note p {
  margin: 0;
  color: #c8c3cc;
  font-size: 12px;
  line-height: 1.7;
}
/* Payment logos must remain readable */
.dbb-payment__method {
  background: rgba(255, 255, 255, 0.065);
}
.dbb-payment__method-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: #fffaf2;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
}
.dbb-payment__method-icon img {
  width: 52px;
  max-height: 40px;
  filter: none;
}
.dbb-payment__method-icon b,
.dbb-payment__method-icon i {
  color: #243742;
}
.dbb-footer__logo img {
  width: 260px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
@media (min-width: 1200px) {
  .dbb-rules > .container {
    width: calc(100% - 70px);
    padding-right: 28px;
    padding-left: 28px;
  }
}
@media (max-width: 991px) {
  .dbb-header .logo img {
    width: 205px !important;
  }
  .dbb-library-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dbb-rules {
    padding: 84px 0;
  }
  .dbb-rules__header,
  .dbb-rule,
  .dbb-rule:nth-of-type(even),
  .dbb-rules__note {
    grid-template-columns: 1fr;
  }
  .dbb-rule:nth-of-type(even) figure {
    order: 0;
  }
  .dbb-rule figure {
    min-height: 430px;
  }
}
@media (max-width: 575px) {
  .dbb-header .logo img {
    width: 188px !important;
  }
  .dbb-hero__facts {
    display: grid;
    gap: 11px;
  }
  .dbb-library-facts {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-library-facts article {
    padding: 17px;
  }
  .dbb-library-facts strong {
    font-size: 22px;
  }
  .dbb-rules {
    padding: 66px 0;
  }
  .dbb-rules__header {
    margin-bottom: 34px;
  }
  .dbb-rule {
    border-radius: 21px;
  }
  .dbb-rule figure {
    min-height: 300px;
  }
  .dbb-rule__copy {
    padding: 27px 20px;
  }
  .dbb-rules__note {
    padding: 22px;
  }
  .dbb-footer__logo img {
    width: 220px;
  }
}
/* ==================================================
                 LEGAL PAGES START
================================================== */
.dbb-legal-page {
  background: #f4f1f7;
}
.dbb-legal-header .site-navigation {
  background: linear-gradient(90deg, #070711, #120d20 58%, #071923);
}
.dbb-legal-header .navbar {
  min-height: 104px;
}
.dbb-legal-header__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.dbb-legal-header__links a {
  color: #b6b0bf;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.dbb-legal-header__links a:hover {
  color: #69e7f2;
}
.dbb-legal {
  background: linear-gradient(180deg, #f8f6fa, #efebf4);
}
.dbb-legal__hero {
  position: relative;
  padding: 82px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(111, 244, 255, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(125, 53, 237, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #090812, #181026 62%, #09202a);
}
.dbb-legal__hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 28px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.018),
    0 0 0 76px rgba(255, 255, 255, 0.012);
}
.dbb-legal__hero .container {
  position: relative;
  z-index: 1;
}
.dbb-legal__hero span {
  display: block;
  margin-bottom: 14px;
  color: #65e7f3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-legal__hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}
.dbb-legal__hero p {
  max-width: 730px;
  margin: 0 0 21px;
  color: #b3adbc;
  font-size: 16px;
  line-height: 1.75;
}
.dbb-legal__hero small {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(155, 99, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #d6d1dd;
  font-size: 10px;
}
.dbb-legal__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 62px;
  padding-bottom: 86px;
}
.dbb-legal__toc {
  position: sticky;
  top: 125px;
  padding: 24px;
  border: 1px solid #ddd7e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 35px rgba(29, 23, 43, 0.06);
}
.dbb-legal__toc > strong {
  display: block;
  margin-bottom: 15px;
  color: #211c29;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dbb-legal__toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid #eee9f2;
  color: #756e7e;
  font-size: 11px;
  line-height: 1.35;
  text-decoration: none;
}
.dbb-legal__toc a:last-child {
  border: 0;
}
.dbb-legal__toc a:hover {
  color: #7040e8;
}
.dbb-legal__content {
  min-width: 0;
}
.dbb-legal__content section {
  scroll-margin-top: 125px;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid #dbd5e2;
}
.dbb-legal__content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.dbb-legal__content h2 {
  margin: 0 0 17px;
  color: #1b1722;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.dbb-legal__content p,
.dbb-legal__content li {
  color: #6f6876;
  font-size: 14px;
  line-height: 1.8;
}
.dbb-legal__content p {
  margin: 0 0 14px;
}
.dbb-legal__content p:last-child {
  margin-bottom: 0;
}
.dbb-legal__content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}
.dbb-legal__content a {
  color: #6534dc;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dbb-legal__callout {
  margin: 22px 0 0;
  padding: 22px;
  border: 1px solid rgba(112, 64, 232, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #eee7fb, #eaf8fa);
}
.dbb-legal__callout strong {
  display: block;
  margin-bottom: 6px;
  color: #231d2d;
  font-size: 13px;
}
.dbb-legal__callout p {
  color: #645e6c;
}
.dbb-legal__table {
  display: grid;
  gap: 10px;
}
.dbb-legal__table > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid #dfd9e7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}
.dbb-legal__table strong {
  color: #26202e;
  font-size: 12px;
}
.dbb-legal__table span {
  color: #716a78;
  font-size: 12px;
  line-height: 1.65;
}
.dbb-legal-footer {
  padding-top: 52px;
}
.dbb-legal-footer .dbb-footer__main {
  padding-bottom: 34px;
}
@media (max-width: 991px) {
  .dbb-legal-header__links {
    gap: 16px;
  }
  .dbb-legal__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .dbb-legal__toc {
    position: static;
  }
  .dbb-legal__toc nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }
}
@media (max-width: 767px) {
  .dbb-legal-header .navbar {
    min-height: 86px;
  }
  .dbb-legal-header__links {
    display: none;
  }
  .dbb-legal__hero {
    padding: 62px 0 58px;
  }
  .dbb-legal__layout {
    padding-top: 42px;
    padding-bottom: 64px;
  }
  .dbb-legal__toc nav {
    grid-template-columns: 1fr;
  }
  .dbb-legal__table > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}
/* ==================================================
                  LEGAL PAGES END
================================================== */ /* ==================================================
                     PAYMENTS SECTION END
================================================== */ /* ==================================================
              DOUBLE BUBBLE BINGO REDESIGN V3 — AUGUST 2026
================================================== */
:root {
  --dbb-ink: #14252c;
  --dbb-teal: #087e78;
  --dbb-coral: #f26454;
  --dbb-cream: #fff8ed;
  --dbb-mint: #e5f3ed;
  --dbb-line: rgba(20, 58, 61, 0.14);
}
.dbb-hero {
  min-height: 760px;
  background: #eaf4ee;
}
.dbb-hero__background::after {
  background: linear-gradient(
    90deg,
    rgba(4, 22, 31, 0.34),
    rgba(4, 22, 31, 0.08) 48%,
    transparent 67%
  );
}
.dbb-hero__background img {
  filter: saturate(1.05) brightness(1.03);
  object-position: center;
}
.dbb-hero .slider-content .col-xl-7 {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.dbb-hero .slide-sub-title {
  color: #fffaf0;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.28);
}
.dbb-hero .hero-description p {
  color: #d7e4e3;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.dbb-hero__facts {
  border-color: rgba(94, 218, 207, 0.22);
  background: rgba(7, 39, 48, 0.7);
}
.dbb-hero__facts span,
.dbb-hero__facts strong {
  color: #f4fbf8;
}
.dbb-hero__note {
  color: #aabdbc;
}
.dbb-header .logo img {
  width: 285px !important;
  max-height: 72px;
}
.dbb-header .btn-primary,
.dbb-hero__cta {
  border: 1px solid rgba(255, 180, 94, 0.82) !important;
  background: linear-gradient(
    135deg,
    #ff714f 0%,
    #f0443f 58%,
    #cf313d 100%
  ) !important;
  color: #fff !important;
  box-shadow:
    0 10px 0 #8f2733,
    0 19px 38px rgba(239, 68, 62, 0.28) !important;
}
.dbb-header .btn-primary:hover,
.dbb-hero__cta:hover {
  background: linear-gradient(135deg, #ff8759, #ef4c40 58%, #d1333c) !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #8f2733,
    0 19px 42px rgba(239, 68, 62, 0.38) !important;
}
/* Hero brightness and gold-line controls */
.dbb-hero__background img {
  filter: saturate(1.24) contrast(1.08) brightness(1.18);
}
.dbb-hero__background span {
  background: linear-gradient(
    90deg,
    rgba(5, 19, 30, 0.42) 0%,
    rgba(5, 19, 30, 0.18) 36%,
    transparent 56%
  );
}
.dbb-hero::before {
  background: linear-gradient(180deg, transparent 82%, rgba(5, 14, 24, 0.15));
  border-bottom-color: transparent;
}
.dbb-hero__background::after {
  display: none;
  content: none;
}
.dbb-hero__facts {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.dbb-hero__facts strong::before,
.dbb-hero__facts span::before {
  background: #ffc451;
  box-shadow: 0 0 12px rgba(255, 181, 55, 0.8);
}
.dbb-header .btn-primary,
.dbb-hero__cta {
  border: 1px solid #ffe18a !important;
  background: linear-gradient(
    135deg,
    #ffd56b 0%,
    #ffad38 52%,
    #f47732 100%
  ) !important;
  color: #172632 !important;
  text-shadow: none !important;
  box-shadow:
    0 8px 0 #a84f26,
    0 16px 34px rgba(255, 151, 44, 0.3) !important;
}
.dbb-header .btn-primary:hover,
.dbb-hero__cta:hover {
  background: linear-gradient(135deg, #ffe386, #ffbd48 52%, #ff8139) !important;
  box-shadow:
    0 6px 0 #a84f26,
    0 17px 38px rgba(255, 163, 48, 0.4) !important;
}
.dbb-games {
  padding: 108px 0;
  background: #11333a;
}
.dbb-games__header h2,
.dbb-games__header h2 strong {
  color: #fff;
}
.dbb-games__header p {
  color: #c4d1cf;
}
.dbb-games__group--classic,
.dbb-games__group--modern,
.dbb-games__grid--live,
.dbb-games__note {
  display: none !important;
}
.dbb-games__group--live {
  margin-top: 44px;
  padding: 0;
  background: transparent;
}
.dbb-games__live-intro {
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 30px;
  background: #f8efe1;
}
.dbb-games__live-intro > div {
  padding: 56px;
}
.dbb-games__live-intro h3,
.dbb-games__live-intro h3 strong {
  color: var(--dbb-ink);
}
.dbb-games__live-intro p,
.dbb-games__live-intro li {
  color: #526465;
}
.dbb-games__live-intro img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
}
.dbb-live-formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.dbb-live-formats article {
  padding: 27px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}
.dbb-live-formats span {
  color: #70d8cc;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-live-formats h4 {
  margin: 11px 0 8px;
  color: #fff;
  font-size: 18px;
}
.dbb-live-formats p {
  margin: 0;
  color: #b7c7c5;
  font-size: 11px;
  line-height: 1.68;
}
.dbb-rules {
  background: linear-gradient(180deg, #fffaf0, #f0f6ef);
}
.dbb-rule {
  border-color: var(--dbb-line);
  box-shadow: 0 20px 54px rgba(22, 59, 58, 0.08);
}
.dbb-rule figure {
  min-height: 620px;
  background: #153b3d;
}
.dbb-rule figure img {
  object-position: center;
}
.dbb-rule figure figcaption {
  padding: 15px 18px;
  background: rgba(7, 35, 38, 0.88);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.dbb-poker-visual > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 100%;
  min-height: 620px;
  background: radial-gradient(circle at 50% 45%, #17665d, #0c3737 60%, #082729);
}
.dbb-poker-visual i {
  display: grid;
  place-items: center;
  width: 72px;
  height: 104px;
  border-radius: 9px;
  background: #fffaf0;
  color: #182c32;
  font:
    800 21px/1 Georgia,
    serif;
  transform: rotate(var(--r, 0deg));
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.dbb-poker-visual i:nth-child(1) {
  --r: -10deg;
}
.dbb-poker-visual i:nth-child(2) {
  --r: -5deg;
}
.dbb-poker-visual i:nth-child(4) {
  --r: 5deg;
}
.dbb-poker-visual i:nth-child(5) {
  --r: 10deg;
}
.dbb-bonuses {
  background: linear-gradient(145deg, #102e34 0%, #173e40 52%, #28253c 100%);
}
.dbb-bonuses__header h2,
.dbb-bonuses__section-heading h3 {
  color: #fff;
}
.dbb-bonuses__header p,
.dbb-bonuses__section-heading p {
  color: #c4d2ce;
}
.dbb-bonuses__welcome-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dbb-bonus-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fffaf0;
  box-shadow: none;
}
.dbb-bonuses__reload-grid article,
.dbb-bonuses__cashback-grid article,
.dbb-bonuses__sports-grid article,
.dbb-bonuses__how article {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
}
.dbb-bonuses__reload-grid h4,
.dbb-bonuses__cashback-grid h4,
.dbb-bonuses__sports-grid h4,
.dbb-bonuses__how h4 {
  color: #fff;
}
.dbb-bonuses__reload-grid p,
.dbb-bonuses__cashback-grid p,
.dbb-bonuses__sports-grid p,
.dbb-bonuses__how p {
  color: #b8c7c4;
}
.dbb-sports {
  background: linear-gradient(180deg, #f7f2e8, #edf4ed);
}
.dbb-sports__hero {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 25px 65px rgba(24, 58, 57, 0.1);
}
.dbb-sports__hero-copy {
  padding: 58px;
}
.dbb-sports__hero-copy h2 {
  color: var(--dbb-ink);
}
.dbb-sports__hero-copy h2 strong {
  color: var(--dbb-teal);
}
.dbb-sports__hero-copy > p,
.dbb-sports__description p {
  color: #536666;
  opacity: 1;
}
.dbb-sports__hero figure {
  margin: 0;
  min-height: 680px;
}
.dbb-sports__hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dbb-sports__visual-grid {
  grid-template-columns: repeat(4, 1fr);
}
.dbb-sports__visual-grid article {
  min-height: 250px;
  border: 1px solid var(--dbb-line);
  background: #fffdf8;
}
.dbb-sports__visual-grid article img {
  display: none;
}
.dbb-sports__visual-grid article > div {
  padding: 28px;
}
.dbb-payments-section {
  background: linear-gradient(145deg, #0d3034, #153f3e 60%, #24263a);
}
.dbb-payments-section::before,
.dbb-payments-section::after {
  display: none !important;
  content: none !important;
}
.dbb-payment__payments {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 31, 34, 0.72);
  box-shadow: none;
}
.dbb-payment__payments-heading h3,
.dbb-payment__payments-heading p,
.dbb-payment__intro strong {
  color: #fff;
}
.dbb-payment__intro p {
  color: #b9c9c6;
}
.dbb-payment__method {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}
.dbb-payment__method strong {
  color: #fff;
}
.dbb-payment__method p {
  color: #b8c6c4;
}
@media (max-width: 991px) {
  .dbb-games__live-intro,
  .dbb-sports__hero {
    grid-template-columns: 1fr;
  }
  .dbb-games__live-intro img,
  .dbb-sports__hero figure {
    min-height: 460px;
  }
  .dbb-live-formats {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-sports__visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .dbb-hero {
    min-height: 700px;
  }
  .dbb-hero__background::after {
    background: linear-gradient(
      180deg,
      rgba(4, 22, 31, 0.18),
      rgba(4, 22, 31, 0.88) 64%
    );
  }
  .dbb-hero .slider-content .col-xl-7 {
    margin: 0 14px;
    padding: 0;
  }
  .dbb-games__live-intro > div,
  .dbb-sports__hero-copy {
    padding: 28px 22px;
  }
  .dbb-live-formats,
  .dbb-bonuses__welcome-grid {
    grid-template-columns: 1fr;
  }
  .dbb-sports__visual-grid {
    grid-template-columns: 1fr;
  }
  .dbb-games__live-intro img,
  .dbb-sports__hero figure {
    min-height: 310px;
  }
  .dbb-rule figure,
  .dbb-poker-visual > div {
    min-height: 330px;
  }
  .dbb-poker-visual i {
    width: 49px;
    height: 74px;
    font-size: 15px;
  }
}
/* ==================================================
                 DOUBLE BUBBLE BINGO REDESIGN V3 END
================================================== */ /* ==================================================
             DOUBLE BUBBLE BINGO INTRODUCTION SECTION START
================================================== */
.dbb-intro {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: linear-gradient(
    180deg,
    #082c39 0,
    #0b3440 520px,
    #dce8e2 700px,
    #f7f0e4 900px,
    #f7f0e4 100%
  );
}
.dbb-intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #2edbd6 28%,
    #ffc44f 72%,
    transparent
  );
  box-shadow: 0 0 22px rgba(255, 176, 58, 0.55);
}
.dbb-intro > .container {
  position: relative;
  z-index: 1;
}
.dbb-intro__header {
  max-width: 950px;
  margin: 0 auto 52px;
  text-align: center;
}
.dbb-intro__eyebrow,
.dbb-intro__label,
.dbb-intro__practical-heading > span,
.dbb-intro__mobile > div > span {
  display: block;
  color: #ffc457;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-intro__header h2 {
  max-width: 820px;
  margin: 14px auto 18px;
  color: #fffaf0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.dbb-intro__header p {
  max-width: 800px;
  margin: 0 auto;
  color: #c6d7d5;
  font-size: 15px;
  line-height: 1.75;
}
.dbb-intro__feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border: 1px solid rgba(76, 226, 215, 0.22);
  border-radius: 30px;
  background: #0a2834;
  box-shadow: 0 34px 80px rgba(6, 31, 39, 0.22);
}
.dbb-intro__visual {
  position: relative;
  min-height: 790px;
  margin: 0;
  overflow: hidden;
}
.dbb-intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(10, 40, 52, 0.75));
  pointer-events: none;
}
.dbb-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dbb-intro__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(5, 28, 36, 0.82);
  color: #f5fbf8;
  font-size: 11px;
  backdrop-filter: blur(8px);
}
.dbb-intro__content {
  padding: 54px 48px;
}
.dbb-intro__content h3 {
  margin: 13px 0 22px;
  color: #fff9ed;
  font-size: clamp(31px, 3.5vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.dbb-intro__content > p {
  margin: 0 0 17px;
  color: #b9ccca;
  font-size: 12px;
  line-height: 1.76;
}
.dbb-intro__content > .dbb-intro__lead {
  color: #ecf4ef;
  font-size: 14px;
}
.dbb-intro__checks {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-intro__checks li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(68, 213, 205, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}
.dbb-intro__checks i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #16a6ae, #ff9e3f);
  color: #fff;
}
.dbb-intro__checks strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}
.dbb-intro__checks span {
  display: block;
  color: #aebfbe;
  font-size: 10px;
  line-height: 1.55;
}
.dbb-intro__areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.dbb-intro__area {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(17, 72, 76, 0.14);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 16px 38px rgba(21, 59, 58, 0.08);
}
.dbb-intro__area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--area-accent);
}
.dbb-intro__area--casino {
  --area-accent: linear-gradient(90deg, #14b9bf, #54e4d5);
}
.dbb-intro__area--live {
  --area-accent: linear-gradient(90deg, #ffbd4a, #ff7748);
}
.dbb-intro__area--sports {
  --area-accent: linear-gradient(90deg, #0e7895, #18b7b9);
}
.dbb-intro__area--payments {
  --area-accent: linear-gradient(90deg, #d95b44, #ffae44);
}
.dbb-intro__area-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: #0d3440;
  color: #ffc34f;
  font-size: 18px;
}
.dbb-intro__area > span {
  color: #167d82;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dbb-intro__area h3 {
  margin: 9px 0 13px;
  color: #142b32;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.dbb-intro__area p {
  margin: 0;
  color: #5e6e6e;
  font-size: 12px;
  line-height: 1.7;
}
.dbb-intro__area-details {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.dbb-intro__area-details span {
  padding: 7px 10px;
  border: 1px solid #d7e2dc;
  border-radius: 999px;
  background: #eef4ee;
  color: #385657;
  font-size: 9px;
  font-weight: 750;
}
.dbb-intro__practical {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  margin-top: 58px;
  padding: 46px;
  border-radius: 26px;
  background: #e0e8e1;
}
.dbb-intro__practical-heading > span {
  color: #117d82;
}
.dbb-intro__practical-heading h3 {
  margin: 12px 0 15px;
  color: #142b32;
  font-size: clamp(31px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.dbb-intro__practical-heading p {
  margin: 0;
  color: #5f706e;
  font-size: 12px;
  line-height: 1.72;
}
.dbb-intro__practical-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dbb-intro__practical-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(23, 81, 80, 0.12);
  border-radius: 16px;
  background: #fffdf8;
}
.dbb-intro__practical-list i {
  color: #dd713f;
  font-size: 17px;
}
.dbb-intro__practical-list strong {
  display: block;
  margin-bottom: 5px;
  color: #183037;
  font-size: 12px;
}
.dbb-intro__practical-list p {
  margin: 0;
  color: #697775;
  font-size: 10px;
  line-height: 1.6;
}
.dbb-intro__footer {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  margin-top: 20px;
}
.dbb-intro__mobile,
.dbb-intro__responsible {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 32px;
  border-radius: 21px;
}
.dbb-intro__mobile {
  border: 1px solid #d7dfd8;
  background: #fffdf8;
}
.dbb-intro__mobile > i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: #103b45;
  color: #4ee1d8;
  font-size: 21px;
}
.dbb-intro__mobile > div > span {
  color: #187f83;
}
.dbb-intro__mobile h3,
.dbb-intro__responsible h3 {
  margin: 8px 0 9px;
  font-size: 21px;
  line-height: 1.18;
}
.dbb-intro__mobile h3 {
  color: #183037;
}
.dbb-intro__mobile p {
  margin: 0;
  color: #687775;
  font-size: 11px;
  line-height: 1.65;
}
.dbb-intro__responsible {
  background: linear-gradient(135deg, #123a43, #263142);
}
.dbb-intro__responsible > strong {
  color: #ffc24e;
  font-size: 27px;
}
.dbb-intro__responsible h3 {
  color: #fff9ed;
}
.dbb-intro__responsible p {
  margin: 0;
  color: #bdcecb;
  font-size: 11px;
  line-height: 1.65;
}
@media (min-width: 1200px) {
  .dbb-intro > .container {
    width: min(1600px, calc(100% - 96px));
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
  .dbb-intro__feature {
    grid-template-columns: 1.12fr 0.88fr;
  }
  .dbb-intro__areas {
    gap: 22px;
  }
}
@media (max-width: 991px) {
  .dbb-intro__feature,
  .dbb-intro__practical,
  .dbb-intro__footer {
    grid-template-columns: 1fr;
  }
  .dbb-intro__visual {
    min-height: 540px;
  }
}
@media (max-width: 767px) {
  .dbb-intro {
    padding: 78px 0;
  }
  .dbb-intro__areas,
  .dbb-intro__practical-list {
    grid-template-columns: 1fr;
  }
  .dbb-intro__content,
  .dbb-intro__practical {
    padding: 30px 24px;
  }
}
@media (max-width: 575px) {
  .dbb-intro__header {
    text-align: left;
  }
  .dbb-intro__visual {
    min-height: 340px;
  }
  .dbb-intro__area {
    padding: 28px 22px;
  }
  .dbb-intro__mobile,
  .dbb-intro__responsible {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
}
/* ==================================================
              DOUBLE BUBBLE BINGO INTRODUCTION SECTION END
================================================== */ /* ==================================================
          DOUBLE BUBBLE BINGO SLOTS AND GAME LIBRARY START
================================================== */
.dbb-slots-catalogue,
.dbb-game-library {
  --dbb-ink: #102a33;
  --dbb-muted: #607273;
  --dbb-teal: #0db8bd;
  --dbb-cyan: #52e0dc;
  --dbb-gold: #ffb347;
  --dbb-coral: #f36f4d;
}
.dbb-slots-catalogue > .container,
.dbb-game-library > .container {
  width: min(1600px, calc(100% - 96px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}
.dbb-slots-catalogue {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(35, 211, 207, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 38%,
      rgba(255, 166, 67, 0.12),
      transparent 24%
    ),
    linear-gradient(145deg, #071923 0%, #102d38 48%, #0a202a 100%);
  color: #e8f5f2;
}
.dbb-slots-catalogue__header,
.dbb-game-library__header {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}
.dbb-slots-catalogue__eyebrow,
.dbb-slots-catalogue__subheading span,
.dbb-game-library__header > span,
.dbb-game-family__header span {
  color: var(--dbb-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-slots-catalogue__header h2,
.dbb-game-library__header h2 {
  margin: 15px 0 20px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.dbb-slots-catalogue__header h2 {
  color: #fff9ed;
}
.dbb-game-library__header h2 {
  color: var(--dbb-ink);
}
.dbb-slots-catalogue__header p,
.dbb-game-library__header p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.8;
}
.dbb-slots-catalogue__header p {
  color: #b8cac8;
}
.dbb-game-library__header p {
  color: var(--dbb-muted);
}
.dbb-slots-catalogue__introduction {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dbb-slots-catalogue__introduction article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 25px;
  border: 1px solid rgba(76, 226, 219, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}
.dbb-slots-catalogue__introduction i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #0bb7bd, #ff9d3d);
  color: #fff;
}
.dbb-slots-catalogue__introduction strong {
  color: #fff;
  font-size: 14px;
}
.dbb-slots-catalogue__introduction p {
  margin: 7px 0 0;
  color: #afc2c0;
  font-size: 11px;
  line-height: 1.65;
}
.dbb-slots-catalogue__categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 70px;
  flex-wrap: wrap;
}
.dbb-slots-catalogue__categories span {
  padding: 10px 15px;
  border: 1px solid rgba(82, 224, 220, 0.2);
  border-radius: 999px;
  background: rgba(3, 16, 24, 0.38);
  color: #d8e9e6;
  font-size: 10px;
  font-weight: 750;
}
.dbb-slots-catalogue__categories i {
  margin-right: 7px;
  color: var(--dbb-gold);
}
.dbb-slots-catalogue__subheading,
.dbb-game-family__header {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}
.dbb-slots-catalogue__subheading h3,
.dbb-game-family__header h3 {
  margin: 9px 0 0;
  font-size: clamp(29px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.dbb-slots-catalogue__subheading h3 {
  color: #fff9ed;
}
.dbb-slots-catalogue__subheading p {
  color: #afc2c0;
}
.dbb-slots-catalogue__subheading p,
.dbb-game-family__header p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}
.dbb-slots-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.dbb-slot {
  overflow: hidden;
  border: 1px solid rgba(81, 224, 217, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}
.dbb-slot__visual,
.dbb-game-detail figure,
.dbb-game-family__live-feature figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.dbb-slot__visual {
  aspect-ratio: 16 / 10;
}
.dbb-slot__visual img,
.dbb-game-detail figure img,
.dbb-game-family__live-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.dbb-slot:hover img,
.dbb-game-detail:hover img {
  transform: scale(1.035);
}
.dbb-slot__visual figcaption,
.dbb-game-detail figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 20, 29, 0.84);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.dbb-slot__content {
  padding: 25px 25px 27px;
}
.dbb-slot__content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
}
.dbb-slot__content p {
  margin: 0;
  color: #b4c6c4;
  font-size: 11px;
  line-height: 1.7;
}
.dbb-slot__content ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-slot__content li {
  position: relative;
  padding-left: 17px;
  color: #deebe8;
  font-size: 10px;
}
.dbb-slot__content li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dbb-cyan), var(--dbb-gold));
}
.dbb-slots-catalogue__guidance,
.dbb-game-library__notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 18px;
}
.dbb-slots-catalogue__guidance {
  border: 1px solid rgba(255, 180, 72, 0.24);
  background: rgba(255, 174, 67, 0.08);
}
.dbb-slots-catalogue__guidance i {
  color: var(--dbb-gold);
  font-size: 22px;
}
.dbb-slots-catalogue__guidance strong {
  color: #fff;
}
.dbb-slots-catalogue__guidance p {
  margin: 6px 0 0;
  color: #b9c9c7;
  font-size: 11px;
  line-height: 1.7;
}
.dbb-game-library {
  padding: 112px 0;
  background:
    radial-gradient(
      circle at 90% 7%,
      rgba(255, 181, 69, 0.12),
      transparent 23%
    ),
    linear-gradient(180deg, #f2eee5 0%, #e5ece7 52%, #f3eee5 100%);
  color: var(--dbb-ink);
}
.dbb-game-family {
  margin-top: 78px;
}
.dbb-game-family__header {
  align-items: center;
}
.dbb-game-family__header h3 {
  color: var(--dbb-ink);
}
.dbb-game-family__header p {
  color: var(--dbb-muted);
}
.dbb-game-family__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.dbb-game-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(16, 69, 73, 0.12);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 17px 40px rgba(25, 58, 56, 0.08);
}
.dbb-game-detail figure {
  min-height: 100%;
}
.dbb-game-detail > div {
  align-self: center;
  padding: 28px;
}
.dbb-game-detail > div > span,
.dbb-game-family__live-feature > div > span {
  color: #14858a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-game-detail h4,
.dbb-game-family__live-feature h4 {
  margin: 9px 0 13px;
  color: #142b32;
  font-size: 21px;
  line-height: 1.18;
}
.dbb-game-detail p,
.dbb-game-family__live-feature p {
  margin: 0;
  color: #657574;
  font-size: 11px;
  line-height: 1.7;
}
.dbb-game-detail strong {
  display: block;
  margin-top: 16px;
  color: #294a4b;
  font-size: 10px;
  line-height: 1.65;
}
.dbb-game-family--modern {
  margin-right: -48px;
  margin-left: -48px;
  padding: 66px 48px;
  border-radius: 30px;
  background: linear-gradient(140deg, #0d2833, #163b44);
}
.dbb-game-family--modern .dbb-game-family__header h3 {
  color: #fff9ed;
}
.dbb-game-family--modern .dbb-game-family__header p {
  color: #b6c7c5;
}
.dbb-game-family--modern .dbb-game-detail {
  border-color: rgba(80, 224, 219, 0.14);
  background: #102c36;
}
.dbb-game-family--modern .dbb-game-detail h4,
.dbb-game-family--modern .dbb-game-detail strong {
  color: #fff;
}
.dbb-game-family--modern .dbb-game-detail p {
  color: #afc1bf;
}
.dbb-game-family__live-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 26px;
  background: #103440;
}
.dbb-game-family__live-feature figure {
  min-height: 500px;
}
.dbb-game-family__live-feature figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(16, 52, 64, 0.75));
  pointer-events: none;
}
.dbb-game-family__live-feature figure figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #d7e7e4;
  font-size: 10px;
}
.dbb-game-family__live-feature > div {
  align-self: center;
  padding: 46px;
}
.dbb-game-family__live-feature h4 {
  color: #fff;
  font-size: 30px;
}
.dbb-game-family__live-feature p {
  color: #bacbc8;
}
.dbb-game-family__live-feature ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-game-family__live-feature li {
  position: relative;
  padding-left: 20px;
  color: #e1ece9;
  font-size: 10px;
}
.dbb-game-family__live-feature li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--dbb-gold);
  font-size: 18px;
  line-height: 0.7;
}
.dbb-game-family__grid--live .dbb-game-detail {
  grid-template-columns: 1fr;
}
.dbb-game-family__grid--live .dbb-game-detail figure {
  aspect-ratio: 16 / 10;
}
.dbb-game-library__notice {
  align-items: center;
  border: 1px solid rgba(19, 79, 81, 0.14);
  background: #dce7df;
}
.dbb-game-library__notice strong {
  color: #df6747;
  font-size: 27px;
}
.dbb-game-library__notice p {
  margin: 0;
  color: #526665;
  font-size: 11px;
  line-height: 1.7;
}
@media (max-width: 1199px) {
  .dbb-slots-catalogue > .container,
  .dbb-game-library > .container {
    width: min(100% - 48px, 1120px);
  }
  .dbb-slots-catalogue__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dbb-game-family__grid {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--modern {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .dbb-slots-catalogue,
  .dbb-game-library {
    padding: 78px 0;
  }
  .dbb-slots-catalogue > .container,
  .dbb-game-library > .container {
    width: calc(100% - 30px);
  }
  .dbb-slots-catalogue__introduction,
  .dbb-slots-catalogue__grid,
  .dbb-slots-catalogue__subheading,
  .dbb-game-family__header,
  .dbb-game-family__live-feature {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--modern {
    padding: 42px 18px;
    border-radius: 22px;
  }
  .dbb-game-detail {
    grid-template-columns: 1fr;
  }
  .dbb-game-detail figure {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .dbb-game-family__live-feature figure {
    min-height: 360px;
  }
  .dbb-game-family__live-feature figure::after {
    background: linear-gradient(0deg, rgba(16, 52, 64, 0.7), transparent 40%);
  }
  .dbb-game-family__live-feature > div {
    padding: 30px 24px;
  }
}
@media (max-width: 480px) {
  .dbb-slots-catalogue__header,
  .dbb-game-library__header {
    text-align: left;
  }
  .dbb-slot__content,
  .dbb-game-detail > div {
    padding: 22px 20px;
  }
  .dbb-slots-catalogue__guidance,
  .dbb-game-library__notice {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
/* ==================================================
           DOUBLE BUBBLE BINGO SLOTS AND GAME LIBRARY END
================================================== */ /* ==================================================
       COMPACT CATALOGUE / EDITORIAL GAMES REVISION
================================================== */
[hidden] {
  display: none !important;
}
.dbb-slots-catalogue {
  padding: 88px 0 94px;
}
.dbb-slots-catalogue__header {
  margin-bottom: 34px;
}
.dbb-slots-catalogue__introduction {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}
.dbb-slots-catalogue__categories {
  margin: 22px 0 42px;
}
.dbb-slots-catalogue__subheading {
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: 22px;
}
.dbb-slots-catalogue__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.dbb-slot {
  position: relative;
  min-width: 0;
  border-radius: 16px;
  background: #0d2631;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.dbb-slot:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(255, 179, 71, 0.58);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}
.dbb-slot__visual {
  aspect-ratio: 4 / 5;
}
.dbb-slot__visual::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(4, 17, 25, 0.95));
  pointer-events: none;
}
.dbb-slot__visual figcaption {
  top: 10px;
  right: 10px;
  bottom: auto;
  z-index: 2;
  max-width: calc(100% - 20px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dbb-slot__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 18px 14px;
}
.dbb-slot__content h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}
.dbb-slot__content p,
.dbb-slot__content ul {
  display: none;
}
.dbb-slots-catalogue__guidance {
  margin-top: 24px;
}
.dbb-game-family--classic .dbb-game-family__grid {
  grid-template-columns: 1fr;
  gap: 32px;
}
.dbb-game-family--classic .dbb-game-detail {
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 430px;
  border-radius: 28px;
}
.dbb-game-family--classic .dbb-game-detail:nth-child(even) {
  grid-template-columns: 0.92fr 1.08fr;
}
.dbb-game-family--classic .dbb-game-detail:nth-child(even) figure {
  order: 2;
}
.dbb-game-family--classic .dbb-game-detail > div {
  padding: 50px;
}
.dbb-game-family--classic .dbb-game-detail h4 {
  max-width: 560px;
  font-size: clamp(27px, 3vw, 42px);
}
.dbb-game-family--classic .dbb-game-detail p {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.78;
}
.dbb-game-family--classic .dbb-game-detail strong {
  max-width: 620px;
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid #f0a13f;
  background: #edf4ef;
  font-size: 12px;
}
.dbb-game-family--classic .dbb-game-detail figcaption {
  top: 22px;
  bottom: auto;
  left: 22px;
  right: auto;
  padding: 10px 15px;
  background: #0c3540;
  color: #fff;
  font-size: 11px;
}
.dbb-game-family--modern .dbb-game-family__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.dbb-game-family--modern .dbb-game-detail {
  display: block;
  min-height: 0;
}
.dbb-game-family--modern .dbb-game-detail figure {
  aspect-ratio: 16 / 11;
  min-height: 0;
}
.dbb-game-family--modern .dbb-game-detail > div {
  padding: 24px;
}
.dbb-game-family--modern .dbb-game-detail h4 {
  font-size: 19px;
}
.dbb-game-family--live {
  margin-top: 90px;
}
.dbb-game-family__live-feature {
  grid-template-columns: 1.22fr 0.78fr;
  margin-bottom: 32px;
}
.dbb-game-family__live-feature > div {
  padding: 52px;
}
.dbb-game-family__grid--live {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.dbb-game-family__grid--live .dbb-game-detail {
  display: block;
  min-height: 0;
}
.dbb-game-family__grid--live .dbb-game-detail > div {
  padding: 24px;
}
.dbb-game-family__grid--live .dbb-game-detail h4 {
  font-size: 19px;
}
.dbb-game-family__grid--live .dbb-game-detail p {
  font-size: 11px;
}
.dbb-game-family__grid--live .dbb-game-detail strong {
  font-size: 10px;
}
.dbb-game-family__grid--live .dbb-game-detail figcaption {
  top: 14px;
  bottom: auto;
  left: 14px;
  right: auto;
  background: #0c3540;
}
@media (max-width: 1399px) {
  .dbb-slots-catalogue__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .dbb-game-family--modern .dbb-game-family__grid,
  .dbb-game-family__grid--live {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .dbb-slots-catalogue__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .dbb-game-family--classic .dbb-game-detail,
  .dbb-game-family--classic .dbb-game-detail:nth-child(even),
  .dbb-game-family__live-feature {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--classic .dbb-game-detail:nth-child(even) figure {
    order: 0;
  }
  .dbb-game-family--classic .dbb-game-detail figure {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .dbb-slots-catalogue__introduction {
    grid-template-columns: 1fr;
  }
  .dbb-slots-catalogue__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dbb-game-family--modern .dbb-game-family__grid,
  .dbb-game-family__grid--live {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--classic .dbb-game-detail > div {
    padding: 30px 24px;
  }
}
/* ==================================================
       COMPACT CATALOGUE / EDITORIAL GAMES END
================================================== */ /* ==================================================
             ORIGINAL ANIMATED SLOT COVERS
================================================== */
.dbb-slots-catalogue__introduction,
.dbb-slots-catalogue__categories,
.dbb-slots-catalogue__subheading,
.dbb-slots-catalogue__guidance {
  display: none;
}
.dbb-slots-catalogue__header {
  max-width: 920px;
  margin-bottom: 40px;
}
.dbb-slots-catalogue__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.dbb-slot {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: #101721;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.27);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.dbb-slot:hover {
  border-color: rgba(82, 224, 220, 0.58);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(82, 224, 220, 0.13);
  transform: translateY(-7px) scale(1.018);
}
.dbb-slot__visual {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
}
.dbb-slot__visual::after,
.dbb-slot__visual figcaption,
.dbb-slot__content {
  display: none;
}
.dbb-slot__visual img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}
.dbb-slot:hover .dbb-slot__visual img {
  transform: scale(1.025);
}
@media (max-width: 1199px) {
  .dbb-slots-catalogue__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .dbb-slots-catalogue__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .dbb-slot__visual img {
    min-height: 280px;
  }
}
@media (max-width: 420px) {
  .dbb-slot__visual img {
    min-height: 240px;
  }
}
/* ==================================================
             ORIGINAL ANIMATED SLOT COVERS END
================================================== */ /* ==================================================
          TEXT-FIRST CASINO GUIDE REVISION
================================================== */
.dbb-game-library__header {
  max-width: 1040px;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
}
.dbb-game-library__header p {
  max-width: 900px;
  margin-left: 0;
  font-size: 16px;
}
.dbb-game-family__header {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}
.dbb-game-family--classic .dbb-game-detail,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) {
  grid-template-columns: 1.25fr 0.75fr;
}
.dbb-game-family--classic .dbb-game-detail > div,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) > div {
  order: 1;
}
.dbb-game-family--classic .dbb-game-detail figure,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) figure {
  order: 2;
}
.dbb-game-family--classic .dbb-game-detail > div {
  padding: 54px 58px;
}
.dbb-game-family--classic .dbb-game-detail p {
  color: #536968;
  font-size: 14px;
}
.dbb-game-family--classic .dbb-game-detail strong {
  color: #183b3d;
  font-size: 12px;
  line-height: 1.75;
}
.dbb-game-family--modern .dbb-game-family__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dbb-game-family--modern .dbb-game-detail {
  display: flex;
  flex-direction: column;
}
.dbb-game-family--modern .dbb-game-detail > div {
  order: 1;
  min-height: 280px;
  padding: 34px;
}
.dbb-game-family--modern .dbb-game-detail figure {
  order: 2;
  aspect-ratio: 16 / 8;
}
.dbb-game-family--modern .dbb-game-detail h4 {
  font-size: 25px;
}
.dbb-game-family--modern .dbb-game-detail p {
  font-size: 12px;
  line-height: 1.78;
}
.dbb-game-family__live-feature {
  grid-template-columns: 0.86fr 1.14fr;
}
.dbb-game-family__live-feature > div {
  order: 1;
  padding: 58px;
}
.dbb-game-family__live-feature figure {
  order: 2;
}
.dbb-game-family__grid--live {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dbb-game-family__grid--live .dbb-game-detail {
  display: flex;
  flex-direction: column;
}
.dbb-game-family__grid--live .dbb-game-detail > div {
  order: 1;
  min-height: 260px;
  padding: 34px;
}
.dbb-game-family__grid--live .dbb-game-detail figure {
  order: 2;
  aspect-ratio: 16 / 8.5;
}
.dbb-game-family__grid--live .dbb-game-detail h4 {
  font-size: 25px;
}
.dbb-game-family__grid--live .dbb-game-detail p,
.dbb-game-family__grid--live .dbb-game-detail strong {
  font-size: 12px;
  line-height: 1.75;
}
@media (max-width: 991px) {
  .dbb-game-family--classic .dbb-game-detail,
  .dbb-game-family--classic .dbb-game-detail:nth-child(even),
  .dbb-game-family__live-feature {
    grid-template-columns: 1fr;
  }
  .dbb-game-family__live-feature > div,
  .dbb-game-family__live-feature figure {
    order: initial;
  }
}
@media (max-width: 767px) {
  .dbb-game-library__header {
    text-align: left;
  }
  .dbb-game-family--modern .dbb-game-family__grid,
  .dbb-game-family__grid--live {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--classic .dbb-game-detail > div {
    padding: 34px 25px;
  }
  .dbb-game-family--modern .dbb-game-detail > div,
  .dbb-game-family__grid--live .dbb-game-detail > div {
    min-height: 0;
    padding: 28px 24px;
  }
}
/* ==================================================
          TEXT-FIRST CASINO GUIDE REVISION END
================================================== */ /* ==================================================
          COMPACT IMAGES / APPROVED COPY REVISION
================================================== */
.dbb-game-library {
  padding: 92px 0;
}
.dbb-game-library__header {
  max-width: 960px;
  margin-bottom: 60px;
}
.dbb-game-library__header h2 {
  max-width: 850px;
  font-size: clamp(38px, 4.5vw, 62px);
}
.dbb-game-family {
  margin-top: 64px;
}
.dbb-game-family__header {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  margin-bottom: 28px;
}
.dbb-game-family__header h3 {
  font-size: clamp(30px, 3vw, 44px);
}
.dbb-game-family--classic .dbb-game-family__grid {
  gap: 22px;
}
.dbb-game-family--classic .dbb-game-detail,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1.58fr) minmax(280px, 0.72fr);
  min-height: 350px;
}
.dbb-game-family--classic .dbb-game-detail > div {
  padding: 42px 48px;
}
.dbb-game-family--classic .dbb-game-detail h4 {
  margin-top: 10px;
  font-size: clamp(26px, 2.6vw, 38px);
}
.dbb-game-family--classic .dbb-game-detail figure {
  min-height: 350px;
}
.dbb-game-family--classic .dbb-game-detail figure img {
  object-position: center;
}
.dbb-game-family--classic .dbb-game-detail figcaption {
  top: 18px;
  left: 18px;
  padding: 11px 15px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.dbb-game-family--modern {
  padding: 50px 44px;
}
.dbb-game-family--modern .dbb-game-family__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dbb-game-family--modern .dbb-game-detail > div {
  min-height: 300px;
  padding: 30px;
}
.dbb-game-family--modern .dbb-game-detail figure {
  aspect-ratio: 16 / 6.5;
}
.dbb-game-family--modern .dbb-game-detail figcaption {
  top: auto;
  bottom: 10px;
}
.dbb-game-family__live-feature {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  min-height: 0;
}
.dbb-game-family__live-feature > div {
  padding: 46px 50px;
}
.dbb-game-family__live-feature figure {
  min-height: 340px;
}
.dbb-game-family__live-feature figure::after {
  display: none;
}
.dbb-game-family__grid--live {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.dbb-game-family__grid--live .dbb-game-detail {
  display: block;
  min-height: 0;
  border-left: 4px solid #16aeb3;
}
.dbb-game-family__grid--live .dbb-game-detail:nth-child(even) {
  border-left-color: #ee9a3c;
}
.dbb-game-family__grid--live .dbb-game-detail > div {
  min-height: 0;
  padding: 28px 30px;
}
.dbb-game-family__grid--live .dbb-game-detail figure {
  display: none;
}
.dbb-game-family__grid--live .dbb-game-detail h4 {
  margin: 8px 0 12px;
  font-size: 23px;
}
@media (max-width: 1199px) {
  .dbb-game-family--modern .dbb-game-family__grid {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--modern .dbb-game-detail {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
  }
  .dbb-game-family--modern .dbb-game-detail figure {
    order: 2;
    aspect-ratio: auto;
  }
  .dbb-game-family--modern .dbb-game-detail > div {
    min-height: 0;
  }
}
@media (max-width: 991px) {
  .dbb-game-family__header,
  .dbb-game-family--classic .dbb-game-detail,
  .dbb-game-family--classic .dbb-game-detail:nth-child(even),
  .dbb-game-family__live-feature {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--classic .dbb-game-detail figure {
    min-height: 260px;
  }
  .dbb-game-family__live-feature figure {
    min-height: 280px;
  }
}
@media (max-width: 767px) {
  .dbb-game-family--modern {
    padding: 36px 18px;
  }
  .dbb-game-family--modern .dbb-game-detail {
    display: flex;
  }
  .dbb-game-family--modern .dbb-game-detail figure {
    aspect-ratio: 16 / 7;
  }
  .dbb-game-family__grid--live {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
          COMPACT IMAGES / APPROVED COPY REVISION END
================================================== */ /* ==================================================
          CLASSIC GAMES FOUR-CARD LAYOUT START
================================================== */
.dbb-game-family--classic .dbb-game-family__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}
.dbb-game-family--classic .dbb-game-detail,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}
.dbb-game-family--classic .dbb-game-detail figure,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) figure {
  order: 0;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
}
.dbb-game-family--classic .dbb-game-detail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dbb-game-family--classic .dbb-game-detail > div,
.dbb-game-family--classic .dbb-game-detail:nth-child(even) > div {
  order: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 24px 30px;
}
.dbb-game-family--classic .dbb-game-detail h4 {
  margin: 9px 0 17px;
  font-size: clamp(23px, 1.65vw, 29px);
  line-height: 1.12;
}
.dbb-game-family--classic .dbb-game-detail p {
  font-size: 15px;
  line-height: 1.75;
}
.dbb-game-family--classic .dbb-game-detail strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  line-height: 1.65;
}
@media (max-width: 1199px) {
  .dbb-game-family--classic .dbb-game-family__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .dbb-game-family--classic .dbb-game-family__grid {
    grid-template-columns: 1fr;
  }
  .dbb-game-family--classic .dbb-game-detail figure,
  .dbb-game-family--classic .dbb-game-detail:nth-child(even) figure {
    aspect-ratio: 4 / 4.4;
  }
}
/* ==================================================
          CLASSIC GAMES FOUR-CARD LAYOUT END
================================================== */ /* ==================================================
          SPORTS EDITORIAL REDESIGN START
================================================== */
.dbb-sports--editorial,
.dbb-sports {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(19, 177, 185, 0.1), transparent 29%),
    linear-gradient(180deg, #f5efe4 0%, #fffaf1 46%, #eef4f1 100%);
}
.dbb-sports__hero {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 54, 61, 0.14);
  border-radius: 30px;
  background: #fffaf2;
  box-shadow: 0 30px 70px rgba(21, 37, 48, 0.13);
}
.dbb-sports__hero figure {
  order: 0;
  width: 100%;
  aspect-ratio: 16 / 8;
  min-height: 0;
  margin: 0;
}
.dbb-sports__hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dbb-sports__hero-copy {
  order: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  padding: 52px 58px 58px;
  color: #152d35;
}
.dbb-sports__hero-copy > span,
.dbb-sports__heading span,
.dbb-sports__visual-grid article span,
.dbb-sports__mode-grid article > span {
  color: #087d86;
}
.dbb-sports__hero-copy h2 {
  margin: 10px 0 22px;
  color: #102b34;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
}
.dbb-sports__hero-copy h2 strong {
  display: block;
  color: #d87227;
}
.dbb-sports__hero-copy > p {
  font-size: 18px;
  line-height: 1.75;
}
.dbb-sports__description {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  padding-left: 42px;
  border-left: 1px solid rgba(8, 125, 134, 0.22);
}
.dbb-sports__description p {
  color: #53676c;
  font-size: 16px;
  line-height: 1.8;
}
.dbb-sports__pills {
  grid-column: 1;
}
.dbb-sports__journey,
.dbb-sports__coverage,
.dbb-sports__modes,
.dbb-sports__tools,
.dbb-sports__extended {
  margin-top: 68px;
}
.dbb-sports__visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.dbb-sports__visual-grid article {
  min-height: 100%;
  border: 1px solid rgba(18, 54, 61, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(21, 37, 48, 0.08);
}
.dbb-sports__visual-grid article > div {
  padding: 28px 25px 30px;
}
.dbb-sports__visual-grid article h4 {
  margin: 8px 0 13px;
  color: #142f37;
  font-size: 24px;
  line-height: 1.18;
}
.dbb-sports__visual-grid article p {
  color: #607176;
  line-height: 1.72;
}
.dbb-sports__notice {
  margin-top: 58px;
}
@media (max-width: 1100px) {
  .dbb-sports__hero-copy {
    grid-template-columns: 1fr;
  }
  .dbb-sports__description {
    grid-column: 1;
    grid-row: auto;
    padding: 26px 0 0;
    border-top: 1px solid rgba(8, 125, 134, 0.22);
    border-left: 0;
  }
  .dbb-sports__visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .dbb-sports {
    padding: 64px 0;
  }
  .dbb-sports__hero {
    border-radius: 22px;
  }
  .dbb-sports__hero figure {
    aspect-ratio: 16 / 10;
  }
  .dbb-sports__hero-copy {
    padding: 34px 23px 38px;
  }
  .dbb-sports__visual-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
          SPORTS EDITORIAL REDESIGN END
================================================== */ /* ==================================================
          SPORTS TITLE / IMAGE / TEXT FLOW START
================================================== */
.dbb-sports__section-title {
  margin: 0 0 38px;
  text-align: center;
}
.dbb-sports__section-title span,
.dbb-sports__overview-heading > span {
  display: block;
  margin-bottom: 12px;
  color: #087d86;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-sports__section-title h2 {
  margin: 0;
  color: #102b34;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.98;
}
.dbb-sports__hero {
  display: block;
  border-radius: 30px;
  background: #092b38;
}
.dbb-sports__hero figure {
  aspect-ratio: 16 / 8.2;
}
.dbb-sports__overview {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px 68px;
  margin-top: 54px;
  padding: 58px;
  border: 1px solid rgba(18, 54, 61, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(21, 37, 48, 0.08);
}
.dbb-sports__overview-heading h3 {
  margin: 0;
  color: #122f38;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
}
.dbb-sports__overview-copy {
  padding-left: 44px;
  border-left: 1px solid rgba(8, 125, 134, 0.23);
}
.dbb-sports__overview-copy p {
  margin: 0 0 18px;
  color: #53686e;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-sports__overview-copy p:last-child {
  margin-bottom: 0;
}
.dbb-sports__definitions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.dbb-sports__definitions article {
  padding: 24px 25px;
  border-radius: 18px;
  background: #102f3a;
}
.dbb-sports__definitions article:nth-child(2) {
  background: #12424a;
}
.dbb-sports__definitions article:nth-child(3) {
  background: #704021;
}
.dbb-sports__definitions strong {
  display: block;
  margin-bottom: 8px;
  color: #f4b64f;
  font-size: 19px;
}
.dbb-sports__definitions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.62;
}
.dbb-sports__overview > .dbb-sports__pills {
  grid-column: 1 / -1;
  margin-top: -8px;
}
@media (max-width: 991px) {
  .dbb-sports__overview {
    grid-template-columns: 1fr;
    padding: 42px 34px;
  }
  .dbb-sports__overview-copy {
    padding: 28px 0 0;
    border-top: 1px solid rgba(8, 125, 134, 0.23);
    border-left: 0;
  }
}
@media (max-width: 650px) {
  .dbb-sports__section-title {
    margin-bottom: 26px;
  }
  .dbb-sports__hero figure {
    aspect-ratio: 16 / 10;
  }
  .dbb-sports__overview {
    margin-top: 30px;
    padding: 32px 22px;
  }
  .dbb-sports__definitions {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
          SPORTS TITLE / IMAGE / TEXT FLOW END
================================================== */ /* ==================================================
          SPORTS CONTENT BALANCE REVISION START
================================================== */
.dbb-sports__visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.dbb-sports__visual-grid article > div {
  min-height: 100%;
  padding: 34px 36px 38px;
}
.dbb-sports__visual-grid article h4 {
  max-width: 520px;
  font-size: clamp(25px, 2vw, 32px);
}
.dbb-sports__visual-grid article p {
  max-width: 650px;
  font-size: 16px;
}
.dbb-sports__modes {
  margin-top: 68px;
}
.dbb-sports__mode-grid article {
  display: flex;
  flex-direction: column;
}
.dbb-sports__mode-grid article strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: #eeb052;
  font-size: 14px;
  line-height: 1.6;
}
.dbb-sports__tools-grid article {
  height: auto;
  min-height: 290px;
}
@media (max-width: 760px) {
  .dbb-sports__visual-grid {
    grid-template-columns: 1fr;
  }
  .dbb-sports__visual-grid article > div {
    padding: 28px 24px 31px;
  }
}
/* ==================================================
          SPORTS CONTENT BALANCE REVISION END
================================================== */ /* ==================================================
          SPORTS COMPACT TEXT CARDS FIX START
================================================== */
.dbb-sports__visual-grid {
  align-items: start;
  gap: 16px;
}
.dbb-sports__visual-grid article {
  display: block;
  grid-template-columns: none;
  width: 100%;
  min-height: 0;
  height: auto;
}
.dbb-sports__visual-grid article > div {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 28px 30px 31px;
}
.dbb-sports__visual-grid article h4,
.dbb-sports__visual-grid article p {
  width: 100%;
  max-width: none;
}
.dbb-sports__visual-grid article h4 {
  margin-bottom: 14px;
  font-size: clamp(24px, 1.8vw, 30px);
}
.dbb-sports__visual-grid article p {
  font-size: 15px;
  line-height: 1.68;
}
/* ==================================================
          SPORTS COMPACT TEXT CARDS FIX END
================================================== */ /* ==================================================
          BONUSES CLEAR INFORMATION DESIGN START
================================================== */
.dbb-bonuses--clear {
  padding: 104px 0;
  background:
    radial-gradient(
      circle at 90% 6%,
      rgba(237, 143, 47, 0.12),
      transparent 26%
    ),
    radial-gradient(circle at 7% 24%, rgba(13, 145, 153, 0.1), transparent 25%),
    linear-gradient(180deg, #f7f1e8 0%, #fffaf2 52%, #eef5f1 100%);
  color: #173039;
}
.dbb-bonuses__new-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: start;
  margin-bottom: 58px;
}
.dbb-bonuses__new-header > span,
.dbb-bonuses__section-title span,
.dbb-bonuses__crypto-welcome span,
.dbb-offer__top > span,
.dbb-bonuses__reload-table article > span,
.dbb-bonuses__cashback-row article > span,
.dbb-bonuses__sports-row article > span,
.dbb-bonuses__conditions > div > span {
  color: #087d86;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dbb-bonuses__new-header h2 {
  grid-column: 1;
  margin: 12px 0 0;
  color: #112c35;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.92;
}
.dbb-bonuses__new-header > div {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-left: 44px;
  border-left: 1px solid rgba(8, 125, 134, 0.24);
}
.dbb-bonuses__new-header p {
  margin: 0 0 18px;
  color: #53676d;
  font-size: 17px;
  line-height: 1.82;
}
.dbb-bonuses__route,
.dbb-bonuses__welcome-new,
.dbb-bonuses__returning,
.dbb-bonuses__cashback-new,
.dbb-bonuses__sports-new {
  margin-top: 72px;
}
.dbb-bonuses__route {
  padding: 46px;
  border-radius: 28px;
  background: linear-gradient(135deg, #102f39, #112332 58%, #352137);
  color: #fff;
  box-shadow: 0 24px 60px rgba(19, 39, 48, 0.17);
}
.dbb-bonuses__section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 30px;
}
.dbb-bonuses__section-title h3 {
  margin: 9px 0 0;
  color: #142f38;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
}
.dbb-bonuses__section-title > p {
  margin: 0;
  color: #637277;
  line-height: 1.72;
}
.dbb-bonuses__route .dbb-bonuses__section-title h3 {
  color: #fff;
}
.dbb-bonuses__route .dbb-bonuses__section-title > p {
  color: rgba(255, 255, 255, 0.68);
}
.dbb-bonuses__route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-bonuses__route-grid li {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}
.dbb-bonuses__route-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(108, 227, 229, 0.27);
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    rgba(24, 181, 187, 0.18),
    rgba(244, 167, 67, 0.12)
  );
  color: #72dfe1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.15);
  font-size: 20px;
}
.dbb-bonuses__route-grid li:nth-child(even) .dbb-bonuses__route-icon {
  border-color: rgba(244, 174, 73, 0.3);
  color: #f4ae49;
}
.dbb-bonuses__route-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
}
.dbb-bonuses__route-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.65;
}
.dbb-bonuses__welcome-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.dbb-offer {
  padding: 38px;
  border: 1px solid rgba(18, 54, 61, 0.13);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(21, 37, 48, 0.08);
}
.dbb-offer--casino {
  border-top: 5px solid #0b969e;
}
.dbb-offer--sports {
  border-top: 5px solid #e58b31;
}
.dbb-offer__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}
.dbb-offer__top > strong {
  color: #738085;
  font-size: 13px;
}
.dbb-offer h4 {
  margin: 22px 0 3px;
  color: #112e38;
  font-size: clamp(35px, 3.6vw, 53px);
  line-height: 1;
}
.dbb-offer > b {
  color: #d87729;
  font-size: 20px;
}
.dbb-offer > p {
  margin: 23px 0;
  color: #5b6d72;
  line-height: 1.75;
}
.dbb-offer dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}
.dbb-offer dl > div {
  padding: 15px 16px;
  border-radius: 14px;
  background: #f2f5f1;
}
.dbb-offer dt {
  color: #798488;
  font-size: 12px;
}
.dbb-offer dd {
  margin: 5px 0 0;
  color: #17343c;
  font-weight: 800;
}
.dbb-bonuses__crypto-welcome {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 15px;
  align-items: start;
  margin-top: 18px;
  padding: 30px;
  border-radius: 22px;
  background: #e8f1ed;
}
.dbb-bonuses__crypto-welcome > div,
.dbb-bonuses__crypto-welcome article {
  padding: 6px 12px;
}
.dbb-bonuses__crypto-welcome article {
  border-left: 1px solid rgba(12, 105, 111, 0.18);
}
.dbb-bonuses__crypto-welcome h4 {
  margin: 8px 0 10px;
  color: #17343d;
  font-size: 25px;
}
.dbb-bonuses__crypto-welcome strong {
  display: block;
  margin: 8px 0 10px;
  color: #17343d;
  font-size: 23px;
}
.dbb-bonuses__crypto-welcome p {
  margin: 0;
  color: #647478;
  line-height: 1.65;
}
.dbb-bonuses__reload-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.dbb-bonuses__reload-table article {
  padding: 30px;
  border: 1px solid rgba(18, 54, 61, 0.13);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.82);
}
.dbb-bonuses__reload-table h4 {
  margin: 8px 0 20px;
  color: #18333c;
  font-size: 27px;
}
.dbb-bonuses__reload-table article > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid rgba(18, 54, 61, 0.11);
}
.dbb-bonuses__reload-table article > div b {
  color: #748286;
}
.dbb-bonuses__reload-table article > div strong {
  color: #d57628;
  text-align: right;
}
.dbb-bonuses__reload-table p {
  margin: 17px 0 0;
  color: #68777b;
  line-height: 1.65;
}
.dbb-bonuses__cashback-row,
.dbb-bonuses__sports-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.dbb-bonuses__cashback-row article,
.dbb-bonuses__sports-row article {
  padding: 29px;
  border-radius: 21px;
}
.dbb-bonuses__cashback-row article {
  background: #133640;
  color: #fff;
}
.dbb-bonuses__cashback-row article:nth-child(2) {
  background: #14505a;
}
.dbb-bonuses__cashback-row article:nth-child(3) {
  background: #784523;
}
.dbb-bonuses__cashback-row > article > span {
  color: #72d9dc;
}
.dbb-bonuses__cashback-row article:nth-child(3) > span {
  color: #ffc064;
}
.dbb-bonuses__cashback-row article > strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 52px;
  line-height: 1;
}
.dbb-bonuses__cashback-row article > b {
  display: block;
  margin-top: 6px;
  color: #f3b14c;
}
.dbb-bonuses__cashback-row p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.dbb-bonuses__sports-row article {
  border: 1px solid rgba(18, 54, 61, 0.13);
  background: rgba(255, 255, 255, 0.82);
}
.dbb-bonuses__sports-row h4 {
  margin: 10px 0 13px;
  color: #17333c;
  font-size: 25px;
  line-height: 1.18;
}
.dbb-bonuses__sports-row p {
  margin: 0;
  color: #66767a;
  line-height: 1.68;
}
.dbb-bonuses__conditions {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 55px;
  margin-top: 72px;
  padding: 45px;
  border-radius: 27px;
  background: linear-gradient(135deg, #182d38, #202033);
  color: #fff;
}
.dbb-bonuses__conditions h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 35px;
  line-height: 1.12;
}
.dbb-bonuses__conditions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-bonuses__conditions li {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.dbb-bonuses__conditions li:last-child {
  grid-column: 1 / -1;
}
.dbb-bonuses__conditions li strong {
  display: block;
  margin-bottom: 5px;
  color: #f1ad48;
}
.dbb-bonuses__conditions li span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.dbb-bonuses__notice-new {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 23px 28px;
  border: 1px solid rgba(213, 104, 39, 0.24);
  border-radius: 18px;
  background: rgba(255, 245, 232, 0.9);
}
.dbb-bonuses__notice-new strong {
  color: #d56727;
  font-size: 30px;
}
.dbb-bonuses__notice-new p {
  margin: 0;
  color: #687479;
  line-height: 1.65;
}
@media (max-width: 1050px) {
  .dbb-bonuses__new-header,
  .dbb-bonuses__section-title,
  .dbb-bonuses__conditions {
    grid-template-columns: 1fr;
  }
  .dbb-bonuses__new-header > div {
    grid-column: 1;
    grid-row: auto;
    padding: 27px 0 0;
    border-top: 1px solid rgba(8, 125, 134, 0.24);
    border-left: 0;
  }
  .dbb-bonuses__route-grid,
  .dbb-bonuses__welcome-pair,
  .dbb-bonuses__cashback-row,
  .dbb-bonuses__sports-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dbb-bonuses__crypto-welcome {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-bonuses__crypto-welcome > div {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  .dbb-bonuses--clear {
    padding: 72px 0;
  }
  .dbb-bonuses__route {
    padding: 31px 21px;
  }
  .dbb-bonuses__route-grid,
  .dbb-bonuses__welcome-pair,
  .dbb-bonuses__crypto-welcome,
  .dbb-bonuses__reload-table,
  .dbb-bonuses__cashback-row,
  .dbb-bonuses__sports-row,
  .dbb-bonuses__conditions ul {
    grid-template-columns: 1fr;
  }
  .dbb-bonuses__conditions {
    padding: 33px 23px;
  }
  .dbb-bonuses__conditions li:last-child {
    grid-column: auto;
  }
  .dbb-bonuses__notice-new {
    align-items: flex-start;
  }
}
/* ==================================================
          BONUSES CLEAR INFORMATION DESIGN END
================================================== */ /* ==================================================
          TRADITIONAL PAYMENT ICONS FIX START
================================================== */
.dbb-payment__method-icon,
.dbb-payment__method-icon--cards,
.dbb-payment__method-icon--apple,
.dbb-payment__method-icon--paypal,
.dbb-payment__method-icon--bank,
.dbb-payment__method-icon--paysafe,
.dbb-payment__method-icon--cash2code {
  border-color: rgba(97, 218, 216, 0.24);
  background: linear-gradient(145deg, #17333c, #0b1b24);
  color: #eefbfa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
}
.dbb-payment__method-icon i,
.dbb-payment__method-icon b {
  color: inherit;
}
.dbb-payment__method-icon--apple i {
  color: #f5fbfa;
  font-size: 27px;
}
.dbb-payment__method-icon .fa-google-pay {
  color: #dceeed;
  font-size: 28px;
}
.dbb-payment__method-icon--paypal i {
  color: #64c4dc;
  font-size: 25px;
}
.dbb-payment__method-icon--skrill b {
  color: #dc69ca;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.dbb-payment__method-icon--neteller b {
  color: #80ce64;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.dbb-payment__method-icon--bank i {
  color: #65d0c9;
  font-size: 21px;
}
.dbb-payment__method-icon--paysafe b {
  color: #b6da5c;
  font-size: 10px;
  letter-spacing: 0.01em;
}
.dbb-payment__method-icon--cash2code i {
  color: #efa84e;
  font-size: 21px;
}
.dbb-payment__card-marks {
  position: relative;
  display: flex;
  width: 54px;
  height: 35px;
  align-items: flex-start;
  padding-top: 3px;
}
.dbb-payment__card-marks > i {
  position: absolute;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
}
.dbb-payment__card-marks > i:first-child {
  left: 8px;
  background: #e94b35;
}
.dbb-payment__card-marks > i:nth-child(2) {
  left: 19px;
  background: #f1a33a;
  opacity: 0.95;
}
.dbb-payment__card-marks > b {
  position: absolute;
  right: 2px;
  bottom: 1px;
  color: #eaf6ff;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.02em;
}
/* ==================================================
          TRADITIONAL PAYMENT ICONS FIX END
================================================== */ /* ==================================================
             MOBILE ACCESS SECTION START
================================================== */
.dbb-mobile-access {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(
      circle at 13% 18%,
      rgba(35, 205, 207, 0.15),
      transparent 29%
    ),
    radial-gradient(
      circle at 84% 78%,
      rgba(245, 159, 55, 0.13),
      transparent 26%
    ),
    linear-gradient(135deg, #071d25 0%, #102f38 49%, #221a35 100%);
}
.dbb-mobile-access::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.dbb-mobile-access > .container {
  position: relative;
  z-index: 1;
  display: grid;
  width: calc(100% - 70px);
  max-width: 1480px;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  gap: 78px;
  align-items: center;
}
.dbb-mobile-access__visual {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(98, 225, 224, 0.15);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(30, 184, 190, 0.18),
      transparent 35%
    ),
    rgba(4, 15, 22, 0.44);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 30px 70px rgba(0, 0, 0, 0.24);
}
.dbb-mobile-access__orbit {
  position: absolute;
  border: 1px solid rgba(65, 224, 224, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(53, 215, 215, 0.08);
}
.dbb-mobile-access__orbit--one {
  inset: 84px 42px 80px;
  transform: rotate(-13deg);
}
.dbb-mobile-access__orbit--two {
  inset: 132px 84px 126px;
  border-color: rgba(245, 166, 67, 0.28);
  transform: rotate(17deg);
}
.dbb-device {
  position: absolute;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.35));
}
.dbb-device__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, #102c38, #17152b);
}
.dbb-device__screen::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 26%,
    rgba(255, 255, 255, 0.09) 45%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: dbb-device-shine 8s ease-in-out infinite;
}
.dbb-device__bar {
  display: block;
  width: 72%;
  height: 8px;
  margin: 16px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #42d8d5 0 30%,
    #f3ae52 30% 55%,
    rgba(255, 255, 255, 0.15) 55%
  );
}
.dbb-device__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 3px 16px 12px;
}
.dbb-device__tiles i {
  display: block;
  min-height: 55px;
  border-radius: 7px;
  background: linear-gradient(145deg, #7040c5, #1c8e9b 58%, #ef9942);
}
.dbb-device__tiles i:nth-child(2n) {
  background: linear-gradient(145deg, #db7044, #742f87 60%, #1da9aa);
}
.dbb-device__market {
  display: grid;
  gap: 7px;
  padding: 0 16px;
}
.dbb-device__market b {
  display: block;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.09);
}
.dbb-device--laptop {
  top: 118px;
  left: 42px;
  width: 72%;
  height: 270px;
}
.dbb-device--laptop .dbb-device__screen {
  border: 10px solid #121821;
  border-radius: 17px 17px 7px 7px;
}
.dbb-device__base {
  display: block;
  width: 116%;
  height: 15px;
  margin-left: -8%;
  border-radius: 3px 3px 16px 16px;
  background: linear-gradient(#46505b, #151a20);
}
.dbb-device--tablet {
  right: 34px;
  bottom: 47px;
  z-index: 2;
  width: 36%;
  height: 280px;
  padding: 9px;
  border-radius: 20px;
  background: #111820;
}
.dbb-device--tablet .dbb-device__screen {
  border-radius: 12px;
}
.dbb-device__live {
  display: grid;
  height: 105px;
  margin: 5px 14px 12px;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle, rgba(236, 158, 63, 0.42), transparent 48%),
    linear-gradient(145deg, #3a1935, #123943);
  color: #ffd17d;
}
.dbb-device__live i {
  font-size: 29px;
}
.dbb-device__live span {
  margin-top: -27px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.dbb-device--phone {
  left: 30px;
  bottom: 35px;
  z-index: 3;
  width: 132px;
  height: 252px;
  padding: 8px;
  border-radius: 24px;
  background: #0b1118;
}
.dbb-device--phone .dbb-device__screen {
  border-radius: 17px;
}
.dbb-device--phone .dbb-device__bar {
  height: 6px;
  margin: 17px 10px 10px;
}
.dbb-device--phone .dbb-device__tiles {
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 2px 9px 9px;
}
.dbb-device--phone .dbb-device__tiles i {
  min-height: 43px;
}
.dbb-device--phone .dbb-device__market {
  gap: 5px;
  padding: 0 9px;
}
.dbb-device--phone .dbb-device__market b {
  height: 13px;
}
.dbb-device__speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: #4a5660;
  transform: translateX(-50%);
}
.dbb-mobile-access__eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #55ddd8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-mobile-access__content h2 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.dbb-mobile-access__lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: #bdc9ca;
  font-size: 16px;
  line-height: 1.78;
}
.dbb-mobile-access__points {
  display: grid;
  gap: 12px;
}
.dbb-mobile-access__points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}
.dbb-mobile-access__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(75, 222, 216, 0.25);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(47, 211, 206, 0.16),
    rgba(242, 161, 66, 0.1)
  );
  color: #5de3dd;
  font-size: 18px;
}
.dbb-mobile-access__points h3 {
  margin: 1px 0 6px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}
.dbb-mobile-access__points p {
  margin: 0;
  color: #aababb;
  font-size: 12px;
  line-height: 1.65;
}
.dbb-mobile-access__note {
  display: flex;
  gap: 14px;
  margin-top: 17px;
  padding: 17px 19px;
  border-left: 3px solid #efa646;
  border-radius: 0 14px 14px 0;
  background: rgba(5, 14, 22, 0.45);
}
.dbb-mobile-access__note i {
  margin-top: 3px;
  color: #f2b053;
}
.dbb-mobile-access__note p {
  margin: 0;
  color: #9fadaf;
  font-size: 11px;
  line-height: 1.65;
}
@keyframes dbb-device-shine {
  0%,
  55% {
    transform: translateX(-130%);
  }
  74%,
  100% {
    transform: translateX(130%);
  }
}
/* ==================================================
                  FAQ SECTION START
================================================== */
.dbb-faq {
  position: relative;
  padding: 104px 0 112px;
  background:
    radial-gradient(
      circle at 84% 10%,
      rgba(56, 211, 204, 0.1),
      transparent 25%
    ),
    linear-gradient(145deg, #f8f4eb, #eef5f1 58%, #f8eee5);
}
.dbb-faq > .container {
  width: calc(100% - 70px);
  max-width: 1480px;
}
.dbb-faq__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px 70px;
  align-items: end;
  margin-bottom: 46px;
}
.dbb-faq__eyebrow {
  grid-column: 1/-1;
  color: #168c90;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-faq__header h2 {
  margin: 0;
  color: #17343a;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.dbb-faq__header h2 strong {
  display: block;
  color: #b76a2f;
  font-weight: inherit;
}
.dbb-faq__header p {
  margin: 0 0 4px;
  color: #687776;
  font-size: 15px;
  line-height: 1.78;
}
.dbb-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.dbb-faq__column {
  display: grid;
  gap: 14px;
}
.dbb-faq__item {
  overflow: hidden;
  border: 1px solid #d5ded9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(25, 61, 59, 0.055);
}
.dbb-faq__item[open] {
  border-color: rgba(24, 144, 147, 0.35);
  box-shadow: 0 18px 42px rgba(25, 61, 59, 0.09);
}
.dbb-faq__item summary {
  position: relative;
  display: grid;
  min-height: 82px;
  padding: 22px 68px 22px 62px;
  align-items: center;
  color: #19363c;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}
.dbb-faq__item summary::-webkit-details-marker {
  display: none;
}
.dbb-faq__item summary::before {
  position: absolute;
  left: 20px;
  top: 50%;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #164852, #1b8f91);
  color: #75ebe3;
  content: "?";
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-50%);
}
.dbb-faq__item summary i {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid #d2ddd9;
  border-radius: 50%;
  transform: translateY(-50%);
}
.dbb-faq__item summary i::before,
.dbb-faq__item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #168c90;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.dbb-faq__item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.dbb-faq__item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}
.dbb-faq__item p {
  margin: 0;
  padding: 0 62px 24px;
  color: #697776;
  font-size: 13px;
  line-height: 1.75;
}
.dbb-faq__item[open] summary {
  color: #0f767a;
}
/* Mobile device screen content */
.dbb-device__brand {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 16px 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.dbb-device__brand strong {
  color: #55dfda;
}
.dbb-device__brand span {
  color: #f2aa4c;
}
.dbb-device__tabs {
  display: flex;
  gap: 5px;
  padding: 0 16px 9px;
}
.dbb-device__tabs b {
  padding: 4px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #c9d4d5;
  font-size: 7px;
}
.dbb-device__tiles img {
  display: block;
  width: 100%;
  height: 72px;
  border-radius: 7px;
  object-fit: cover;
}
.dbb-device--phone .dbb-device__brand {
  padding: 18px 9px 8px;
  font-size: 7px;
}
.dbb-device--phone .dbb-device__tiles img {
  height: 43px;
}
.dbb-device__live {
  position: relative;
  display: block;
  overflow: hidden;
}
.dbb-device__live img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dbb-device__live span {
  position: absolute;
  left: 9px;
  bottom: 8px;
  margin: 0;
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(5, 18, 25, 0.78);
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.dbb-device__market {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dbb-device__market b {
  display: grid;
  place-items: center;
  color: #aebdbf;
  font-size: 7px;
  font-weight: 800;
}
/* Simple FAQ heading */
.dbb-faq__header {
  display: block;
  margin-bottom: 34px;
}
.dbb-faq__header h2 {
  max-width: none;
  margin: 0;
  color: #17343a;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
@media (max-width: 991px) {
  .dbb-mobile-access > .container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dbb-mobile-access__visual {
    max-width: 680px;
    width: 100%;
    min-height: 520px;
    margin: 0 auto;
  }
  .dbb-faq__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .dbb-faq__eyebrow {
    grid-column: 1;
  }
}
@media (max-width: 767px) {
  .dbb-mobile-access,
  .dbb-faq {
    padding: 72px 0;
  }
  .dbb-mobile-access__visual {
    min-height: 420px;
    border-radius: 24px;
  }
  .dbb-device--laptop {
    top: 83px;
    left: 7%;
    width: 76%;
    height: 220px;
  }
  .dbb-device--tablet {
    right: 4%;
    bottom: 28px;
    height: 224px;
  }
  .dbb-device--phone {
    left: 4%;
    bottom: 20px;
    width: 104px;
    height: 205px;
  }
  .dbb-device__tiles i {
    min-height: 38px;
  }
  .dbb-faq > .container {
    width: 100%;
  }
  .dbb-faq__grid {
    grid-template-columns: 1fr;
  }
  .dbb-faq__item summary {
    min-height: 76px;
    padding: 19px 55px 19px 52px;
    font-size: 14px;
  }
  .dbb-faq__item summary::before {
    left: 15px;
  }
  .dbb-faq__item summary i {
    right: 15px;
  }
  .dbb-faq__item p {
    padding: 0 20px 21px 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-device__screen::after {
    animation: none;
  }
}
/* ==================================================
                   FAQ SECTION END
================================================== */ /* ==================================================
                    SITE FOOTER START
================================================== */
.dbb-footer {
  position: relative;
  padding: 78px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(39, 204, 202, 0.11), transparent 25%),
    radial-gradient(
      circle at 93% 20%,
      rgba(236, 150, 55, 0.1),
      transparent 24%
    ),
    linear-gradient(135deg, #061820, #111d2b 55%, #21152b);
  color: #fff;
}
.dbb-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
      90deg,
      rgba(71, 220, 214, 0.36),
      rgba(239, 160, 58, 0.4),
      transparent 72%
    )
    top/100% 2px no-repeat;
}
.dbb-footer > .container {
  position: relative;
  width: calc(100% - 70px);
  max-width: 1480px;
}
.dbb-footer__main {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  padding-bottom: 48px;
}
.dbb-footer__brand p {
  max-width: 460px;
  margin: 24px 0 0;
  color: #9eafb1;
  font-size: 12px;
  line-height: 1.75;
}
.dbb-footer__logo {
  display: inline-flex;
}
.dbb-footer__logo img {
  display: block;
  width: 250px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}
.dbb-footer__navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}
.dbb-footer__navigation h3 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}
.dbb-footer__navigation a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  color: #9eafb1;
  font-size: 11px;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.dbb-footer__navigation a:hover,
.dbb-footer__legal a:hover {
  color: #5ce2dc;
  transform: translateX(2px);
}
.dbb-footer__legal {
  display: flex;
  gap: 13px 25px;
  align-items: center;
  padding: 18px 22px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}
.dbb-footer__legal span {
  margin-right: auto;
  color: #f1ab50;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-footer__legal a {
  color: #b5c1c2;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dbb-footer__responsible {
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(242, 170, 78, 0.18);
  border-radius: 19px;
  background: linear-gradient(
    115deg,
    rgba(232, 148, 50, 0.1),
    rgba(255, 255, 255, 0.035)
  );
}
.dbb-footer__responsible > strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(244, 178, 84, 0.35);
  border-radius: 17px;
  color: #ffc066;
  font-size: 22px;
}
.dbb-footer__responsible h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
}
.dbb-footer__responsible p {
  margin: 0;
  color: #98a7aa;
  font-size: 10px;
  line-height: 1.65;
}
.dbb-footer__payments {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 22px 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.dbb-footer__payments span,
.dbb-footer__payments strong {
  display: block;
}
.dbb-footer__payments > div:first-child > span {
  margin-bottom: 5px;
  color: #5cded9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dbb-footer__payments > div:first-child > strong {
  color: #d6dddd;
  font-size: 11px;
}
.dbb-footer__payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dbb-footer__pay-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 38px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
}
.dbb-footer__pay-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 44px;
  height: 24px;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 10px);
  margin: 0;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  filter: none;
}
.dbb-footer__pay-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #233d46;
  font-size: 22px;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.dbb-footer__pay-icon--card {
  border-color: rgba(244, 178, 75, 0.34);
  background: linear-gradient(145deg, #352533, #191b25);
}
.dbb-footer__pay-icon--apple {
  border-color: rgba(80, 215, 209, 0.24);
  background: linear-gradient(145deg, #173640, #101d27);
}
.dbb-footer__pay-icon--apple i {
  color: #f2f7f6;
}
.dbb-footer__pay-icon--google {
  border-color: rgba(80, 215, 209, 0.24);
  background: linear-gradient(145deg, #173640, #101d27);
}
.dbb-footer__pay-icon--google i {
  color: #f2f7f6;
}
.dbb-footer__pay-icon--paypal {
  border-color: rgba(71, 168, 205, 0.3);
  background: linear-gradient(145deg, #123448, #111d2b);
}
.dbb-footer__pay-icon--paypal i {
  color: #75c4e2;
}
.dbb-footer__pay-icon--skrill {
  border-color: rgba(224, 101, 204, 0.34);
  background: linear-gradient(145deg, #3b173d, #24162e);
}
.dbb-footer__pay-icon--skrill img {
  width: 44px;
  max-height: 25px;
}
.dbb-footer__pay-icon--neteller {
  border-color: rgba(128, 206, 100, 0.32);
  background: linear-gradient(145deg, #1d342a, #14231d);
}
.dbb-footer__pay-icon--bank {
  border-color: rgba(91, 218, 208, 0.25);
  background: linear-gradient(145deg, #12343c, #0a252e);
}
.dbb-footer__pay-icon--bank img {
  width: 45px;
}
.dbb-footer__pay-icon--bitcoin {
  border-color: rgba(241, 166, 60, 0.3);
  background: linear-gradient(145deg, #29202e, #171822);
}
.dbb-footer__pay-icon--bitcoin img {
  width: 46px;
}
.dbb-footer__pay-icon--ethereum {
  border-color: rgba(129, 137, 238, 0.32);
  background: linear-gradient(145deg, #242341, #171828);
}
.dbb-footer__pay-icon--ethereum img {
  width: 42px;
}
.dbb-footer__bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
}
.dbb-footer__bottom p {
  margin: 0;
  color: #718487;
  font-size: 9px;
}
.dbb-footer__bottom a {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #94a7a8;
  font-size: 9px;
  text-decoration: none;
}
.dbb-footer__bottom a span {
  color: #f0aa4e;
  font-size: 13px;
}
/* Updated Double Bubble Bingo legal pages */
.dbb-legal-page {
  background: #f5f2ea;
}
.dbb-legal-header .site-navigation {
  background: linear-gradient(90deg, #0a2730, #171d30 58%, #2b182e);
}
.dbb-legal-header .logo img {
  width: 245px !important;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}
.dbb-legal-header__links a:hover {
  color: #58ded8;
}
.dbb-legal {
  background: linear-gradient(145deg, #faf6ed, #eef5f1 60%, #f8eee5);
}
.dbb-legal__hero {
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(47, 214, 207, 0.18),
      transparent 27%
    ),
    radial-gradient(
      circle at 16% 90%,
      rgba(238, 157, 59, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #071c24, #123640 55%, #28192f);
}
.dbb-legal__hero span {
  color: #58ddd8;
}
.dbb-legal__hero small {
  border-color: rgba(238, 166, 72, 0.25);
  color: #f5c37c;
}
.dbb-legal__toc {
  border-color: #d7e0da;
  background: rgba(255, 255, 255, 0.82);
}
.dbb-legal__toc a:hover,
.dbb-legal__content a {
  color: #12898d;
}
.dbb-legal__content section {
  border-bottom-color: #d7dfda;
}
.dbb-legal__callout {
  border-color: rgba(27, 151, 151, 0.18);
  background: linear-gradient(135deg, #e7f5f1, #fff3df);
}
.dbb-legal__table > div {
  border-color: #d7e0da;
}
.dbb-legal-footer {
  padding-top: 54px;
}
.dbb-legal-footer .dbb-footer__main {
  padding-bottom: 38px;
}
@media (max-width: 991px) {
  .dbb-footer__main {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .dbb-footer__responsible {
    grid-template-columns: 64px 1fr;
  }
  .dbb-footer__responsible > p {
    grid-column: 1/-1;
  }
  .dbb-footer__payments {
    align-items: flex-start;
    flex-direction: column;
  }
  .dbb-footer__payment-icons {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .dbb-footer {
    padding-top: 60px;
  }
  .dbb-footer > .container {
    width: 100%;
  }
  .dbb-footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
  .dbb-footer__navigation > div:last-child {
    grid-column: 1/-1;
  }
  .dbb-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
  .dbb-footer__legal span {
    margin: 0 0 4px;
  }
  .dbb-footer__responsible {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .dbb-footer__responsible > p {
    grid-column: 1;
  }
  .dbb-footer__bottom {
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    flex-direction: column;
  }
  .dbb-legal-header .logo img {
    width: 205px !important;
  }
}
/* ==================================================
                     SITE FOOTER END
================================================== */ /* ==================================================
          DOUBLE BUBBLE BINGO — HEADER + HERO
================================================== */
:root {
  --dbb-navy: #100525;
  --dbb-purple: #7136e8;
  --dbb-pink: #ff3da9;
  --dbb-blue: #20c8ff;
  --dbb-gold: #ffd45d;
}
.dbb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.dbb-header .site-navigation {
  border-bottom: 1px solid rgba(90, 221, 255, 0.24);
  background: linear-gradient(
    90deg,
    rgba(15, 5, 39, 0.98),
    rgba(49, 14, 92, 0.98) 55%,
    rgba(82, 12, 82, 0.98)
  );
  box-shadow: 0 12px 34px rgba(8, 3, 24, 0.25);
  backdrop-filter: blur(14px);
}
.dbb-logo {
  width: 205px !important;
}
.dbb-logo a {
  display: inline-flex !important;
  align-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 0.92;
  text-decoration: none;
  transform: rotate(-1deg);
}
.dbb-header .dbb-logo img {
  width: 240px !important;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 10px rgba(45, 217, 255, 0.12));
}
.dbb-logo span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.dbb-logo strong {
  margin-left: 7px;
  padding: 8px 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dbb-pink), #bc29eb);
  box-shadow:
    0 0 20px rgba(255, 61, 169, 0.5),
    inset 0 2px 5px rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.dbb-header .navbar-nav > li > .nav-link {
  padding-right: 6px !important;
  padding-left: 6px !important;
  color: #e9e2fb !important;
  font-size: 12px;
  letter-spacing: 0.015em;
}
.dbb-header .navbar-nav > li > .nav-link:hover,
.dbb-header .navbar-nav > li > .nav-link:focus {
  color: #fff !important;
}
.dbb-header .btn-primary,
.dbb-hero .dbb-hero__cta {
  border: 1px solid #fff0a4 !important;
  background: linear-gradient(
    135deg,
    #ffe77c 0%,
    #ffc13d 52%,
    #ff8f32 100%
  ) !important;
  box-shadow:
    0 6px 0 #ad4c29,
    0 14px 32px rgba(255, 174, 51, 0.34) !important;
  color: #26133f !important;
}
.dbb-section-anchor {
  display: block;
  position: relative;
  top: calc(-1 * var(--dbb-header-height));
  visibility: hidden;
}
.dbb-hero {
  min-height: max(720px, calc(100svh - var(--dbb-header-height)));
  background: var(--dbb-navy);
}
.dbb-hero__background {
  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(255, 66, 183, 0.52),
      transparent 18%
    ),
    radial-gradient(
      circle at 67% 75%,
      rgba(32, 200, 255, 0.34),
      transparent 22%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(255, 199, 65, 0.3),
      transparent 17%
    ),
    linear-gradient(128deg, #0e0425 2%, #35106a 52%, #8a176f 100%);
}
.dbb-hero__background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.52) 1px,
    transparent 1.5px
  );
  background-size: 42px 42px;
  opacity: 0.15;
  mask-image: linear-gradient(90deg, transparent 5%, #000 52%);
}
.dbb-hero__background > span {
  position: absolute;
  inset: auto;
}
.dbb-orb {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 24%,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.08) 17%,
    rgba(62, 210, 255, 0.12) 48%,
    rgba(113, 54, 232, 0.2)
  );
  box-shadow:
    inset -15px -18px 35px rgba(33, 8, 80, 0.24),
    0 0 40px rgba(54, 220, 255, 0.2);
  backdrop-filter: blur(3px);
}
.dbb-orb--one {
  top: 10%;
  right: 7%;
  width: 270px;
  height: 270px;
}
.dbb-orb--two {
  right: 30%;
  bottom: 8%;
  width: 112px;
  height: 112px;
}
.dbb-orb--three {
  top: 16%;
  right: 38%;
  width: 54px;
  height: 54px;
}
.dbb-ball,
.dbb-slot {
  display: grid;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  box-shadow:
    0 18px 40px rgba(7, 3, 28, 0.42),
    inset 0 4px 9px rgba(255, 255, 255, 0.35);
  text-shadow: 0 2px 4px rgba(22, 4, 48, 0.3);
}
.dbb-ball--one {
  top: 22%;
  right: 13%;
  width: 102px;
  height: 102px;
  background: linear-gradient(145deg, #29d7ff, #3672e8);
  font-size: 36px;
  transform: rotate(9deg);
}
.dbb-ball--two {
  top: 53%;
  right: 24%;
  width: 86px;
  height: 86px;
  background: linear-gradient(145deg, #ff68bb, #cd27df);
  font-size: 25px;
  transform: rotate(-10deg);
}
.dbb-ball--three {
  right: 6%;
  bottom: 13%;
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, #ffd968, #ff8a35);
  color: #3b164d;
  font-size: 32px;
  transform: rotate(7deg);
}
.dbb-slot {
  border-radius: 25px;
}
.dbb-slot--one {
  top: 10%;
  right: 30%;
  width: 74px;
  height: 74px;
  background: linear-gradient(145deg, #ffcc55, #ff6d46);
  font-size: 30px;
  transform: rotate(-11deg);
}
.dbb-slot--two {
  right: 35%;
  bottom: 19%;
  width: 72px;
  height: 82px;
  background: linear-gradient(145deg, #fc4d9e, #8b35ed);
  font-size: 39px;
  transform: rotate(12deg);
}
.dbb-hero::before {
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 3, 31, 0.94) 0%,
    rgba(20, 5, 53, 0.8) 43%,
    rgba(20, 5, 53, 0.1) 72%
  );
}
.dbb-hero::after {
  background: rgba(255, 61, 169, 0.2);
}
.dbb-hero .slider-content {
  padding-top: 78px;
  padding-bottom: 86px;
}
.dbb-hero__kicker {
  margin: 0 0 18px;
  color: #6ce8ff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-hero .slide-sub-title {
  max-width: 830px;
  margin-bottom: 18px;
  background: linear-gradient(105deg, #fff 8%, #aeeeff 55%, #ffd56e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(56px, 6.2vw, 98px);
  text-shadow: none;
}
.dbb-hero__subtitle {
  max-width: 770px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.36;
}
.dbb-hero .hero-description {
  max-width: 735px;
  color: #d8d0e8;
}
.dbb-hero .dbb-hero__facts {
  max-width: 760px;
  gap: 10px;
}
.dbb-hero .dbb-hero__facts strong,
.dbb-hero .dbb-hero__facts span {
  padding: 8px 12px 8px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 5, 48, 0.5);
  color: #f9f5ff;
  backdrop-filter: blur(7px);
}
.dbb-hero .dbb-hero__facts strong::before,
.dbb-hero .dbb-hero__facts span::before {
  left: 12px;
  background: #54e4ff;
  box-shadow: 0 0 12px rgba(84, 228, 255, 0.8);
}
.dbb-hero .dbb-hero__note {
  color: #c5b9d8;
}
@media (max-width: 1199px) {
  .dbb-header .navbar-nav > li > .nav-link {
    padding-right: 4px !important;
    padding-left: 4px !important;
    font-size: 10.5px;
  }
  .dbb-logo {
    width: 184px !important;
  }
  .dbb-logo span {
    font-size: 12px;
  }
  .dbb-logo strong {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .dbb-header .navbar-collapse {
    background: rgba(19, 5, 47, 0.99);
  }
  .dbb-header .navbar-nav > li > .nav-link {
    font-size: 14px;
  }
  .dbb-ball--one {
    right: 5%;
    opacity: 0.55;
  }
  .dbb-ball--two,
  .dbb-slot--one {
    opacity: 0.38;
  }
  .dbb-orb--one {
    right: -7%;
  }
}
@media (max-width: 575px) {
  .dbb-logo {
    width: 180px !important;
  }
  .dbb-hero {
    min-height: 720px;
  }
  .dbb-hero .slider-content {
    padding: 58px 0 64px;
  }
  .dbb-hero .slide-sub-title {
    font-size: 46px;
  }
  .dbb-hero__subtitle {
    font-size: 18px;
  }
  .dbb-hero__background {
    background:
      radial-gradient(
        circle at 85% 20%,
        rgba(255, 66, 183, 0.45),
        transparent 25%
      ),
      linear-gradient(150deg, #0e0425 6%, #421177 60%, #8a176f);
  }
  .dbb-ball--one {
    top: 9%;
    right: -23px;
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
  .dbb-ball--two,
  .dbb-ball--three,
  .dbb-slot {
    display: none;
  }
  .dbb-orb--one {
    top: 8%;
    right: -32%;
    width: 230px;
    height: 230px;
  }
  .dbb-hero .dbb-hero__facts strong,
  .dbb-hero .dbb-hero__facts span {
    width: auto;
    justify-content: flex-start;
    font-size: 10px;
  }
}
/* Generated Double Bubble hero artwork */
.dbb-hero__background {
  background: #08031d;
}
.dbb-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03) brightness(0.96);
}
.dbb-hero__background::before {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 2, 25, 0.42) 0%,
      rgba(7, 2, 25, 0.18) 42%,
      transparent 66%
    ),
    linear-gradient(
      180deg,
      rgba(7, 2, 25, 0.06),
      transparent 55%,
      rgba(7, 2, 25, 0.28)
    );
  opacity: 1;
  mask-image: none;
}
.dbb-hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at 77% 47%,
    transparent 0,
    transparent 28%,
    rgba(8, 3, 29, 0.05) 65%
  );
  pointer-events: none;
}
.dbb-hero::before {
  background: linear-gradient(
    90deg,
    rgba(7, 2, 25, 0.76) 0%,
    rgba(7, 2, 25, 0.42) 39%,
    rgba(7, 2, 25, 0.05) 67%
  );
}
.dbb-hero::after {
  display: none;
}
@media (max-width: 991px) {
  .dbb-hero__background img {
    object-position: 58% center;
  }
  .dbb-hero::before {
    background: linear-gradient(
      90deg,
      rgba(7, 2, 25, 0.83),
      rgba(7, 2, 25, 0.52) 58%,
      rgba(7, 2, 25, 0.16)
    );
  }
}
@media (max-width: 575px) {
  .dbb-hero__background {
    background: #0a0322;
  }
  .dbb-hero__background img {
    object-position: 63% center;
    opacity: 0.76;
  }
  .dbb-hero::before {
    background: linear-gradient(
      180deg,
      rgba(8, 2, 27, 0.58),
      rgba(8, 2, 27, 0.78) 58%,
      rgba(8, 2, 27, 0.94)
    );
  }
}
/* ==================================================
              DOUBLE BUBBLE OVERVIEW
================================================== */
.dbb-overview {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 73, 177, 0.1), transparent 23%),
    radial-gradient(
      circle at 92% 36%,
      rgba(44, 201, 255, 0.1),
      transparent 25%
    ),
    linear-gradient(180deg, #fbf8ff 0%, #f4effb 52%, #fff9ed 100%);
  color: #2e2340;
}
.dbb-overview::before,
.dbb-overview::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(117, 67, 212, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.dbb-overview::before {
  top: 90px;
  left: -90px;
  width: 230px;
  height: 230px;
}
.dbb-overview::after {
  right: -80px;
  bottom: 180px;
  width: 180px;
  height: 180px;
}
.dbb-overview > .container {
  max-width: 1320px;
}
.dbb-overview__header {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}
.dbb-overview__eyebrow,
.dbb-overview__label,
.dbb-overview__benefits-copy > span {
  display: inline-block;
  margin-bottom: 14px;
  color: #a32f99;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-overview h2,
.dbb-overview h3 {
  color: #231535;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-overview__header h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.dbb-overview__header > p {
  margin: 0;
  color: #655a73;
  font-size: 17px;
  line-height: 1.82;
}
.dbb-overview__stage {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 34px;
  background: linear-gradient(135deg, #16052f, #35105e 55%, #661763);
  box-shadow: 0 30px 80px rgba(58, 25, 91, 0.18);
}
.dbb-overview__copy {
  position: relative;
  z-index: 2;
  padding: 70px 20px 70px 70px;
}
.dbb-overview__copy::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 45px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 74, 180, 0.17);
  filter: blur(45px);
}
.dbb-overview__copy .dbb-overview__label {
  color: #64e9ff;
}
.dbb-overview__copy h3 {
  max-width: 520px;
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.dbb-overview__copy p {
  max-width: 590px;
  margin: 0 0 18px;
  color: #d9cfe8;
  font-size: 15px;
  line-height: 1.78;
}
.dbb-overview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.dbb-overview__chips > span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.dbb-overview__chips > span > span {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: inherit;
  font: inherit;
}
.dbb-orbit {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}
.dbb-orbit::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(48, 209, 255, 0.18),
    rgba(255, 58, 168, 0.12) 37%,
    transparent 66%
  );
  filter: blur(12px);
}
.dbb-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(128, 226, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.dbb-orbit__ring--outer {
  width: 470px;
  height: 470px;
  animation: dbb-orbit-spin 22s linear infinite;
}
.dbb-orbit__ring--inner {
  width: 290px;
  height: 290px;
  border-style: dashed;
  animation: dbb-orbit-spin-reverse 18s linear infinite;
}
.dbb-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 23%,
    #fff 0 3%,
    #f66ac0 8%,
    #b834da 47%,
    #5726b8 100%
  );
  box-shadow:
    inset -20px -20px 40px rgba(29, 7, 80, 0.32),
    0 0 55px rgba(255, 60, 179, 0.42);
  color: #fff;
  transform: translate(-50%, -50%);
  animation: dbb-core-float 5s ease-in-out infinite;
}
.dbb-orbit__core::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 36px;
  width: 43px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(-28deg);
  filter: blur(1px);
}
.dbb-orbit__core small {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-orbit__core strong {
  position: relative;
  z-index: 1;
  margin: 3px 0;
  font-size: 42px;
  line-height: 1;
}
.dbb-orbit__core span {
  position: relative;
  z-index: 1;
  color: #ffe47e;
  font-size: 10px;
  font-weight: 800;
}
.dbb-orbit__bubble {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  box-shadow:
    inset -10px -12px 24px rgba(34, 10, 87, 0.22),
    0 13px 35px rgba(5, 2, 26, 0.28);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  animation: dbb-bubble-float 5.5s ease-in-out infinite;
}
.dbb-orbit__bubble:hover {
  z-index: 5;
  filter: brightness(1.12);
  transform: scale(1.12);
  animation-play-state: paused;
}
.dbb-orbit__bubble b {
  font-size: 26px;
  line-height: 1;
}
.dbb-orbit__bubble span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dbb-orbit__bubble--bingo {
  top: 11%;
  left: 18%;
  background: linear-gradient(145deg, #ff75c5, #c52bcf);
}
.dbb-orbit__bubble--slots {
  top: 20%;
  right: 8%;
  background: linear-gradient(145deg, #ffd864, #ff8e39);
  color: #38184d;
  animation-delay: -1.1s;
}
.dbb-orbit__bubble--slingo {
  bottom: 13%;
  left: 13%;
  background: linear-gradient(145deg, #50e6ff, #3974df);
  animation-delay: -2.2s;
}
.dbb-orbit__bubble--live {
  right: 12%;
  bottom: 16%;
  background: linear-gradient(145deg, #a865ff, #6e35d7);
  animation-delay: -3.3s;
}
.dbb-orbit__spark {
  position: absolute;
  color: #ffe46d;
  font-size: 28px;
  filter: drop-shadow(0 0 10px rgba(255, 214, 83, 0.7));
  animation: dbb-spark 2.6s ease-in-out infinite;
}
.dbb-orbit__spark--one {
  top: 15%;
  left: 51%;
}
.dbb-orbit__spark--two {
  right: 33%;
  bottom: 10%;
  animation-delay: -1.3s;
}
.dbb-overview__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-top: 28px;
}
.dbb-overview__card {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  padding: 34px 28px;
  border: 1px solid rgba(52, 28, 77, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 17px 45px rgba(55, 32, 78, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.dbb-overview__card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(55, 32, 78, 0.14);
}
.dbb-overview__card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.1;
}
.dbb-overview__card--pink::after {
  background: #f43ba7;
}
.dbb-overview__card--blue::after {
  background: #26c9f5;
}
.dbb-overview__card--violet::after {
  background: #7a42e8;
}
.dbb-overview__card--gold::after {
  background: #f2ad31;
}
.dbb-overview__card-icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 10px 20px rgba(74, 41, 101, 0.17);
}
.dbb-overview__card--pink .dbb-overview__card-icon {
  background: linear-gradient(145deg, #ff5db7, #b92bd1);
}
.dbb-overview__card--blue .dbb-overview__card-icon {
  background: linear-gradient(145deg, #55ddff, #3878dd);
}
.dbb-overview__card--violet .dbb-overview__card-icon {
  background: linear-gradient(145deg, #a266ff, #6531cf);
}
.dbb-overview__card--gold .dbb-overview__card-icon {
  background: linear-gradient(145deg, #ffd862, #f28532);
  color: #4a2044;
}
.dbb-overview__card small {
  color: #9a4d91;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dbb-overview__card h3 {
  min-height: 54px;
  margin: 11px 0 16px;
  font-size: 20px;
  line-height: 1.3;
}
.dbb-overview__card p {
  margin: 0;
  color: #746a7e;
  font-size: 13px;
  line-height: 1.72;
}
.dbb-overview__benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-top: 70px;
  padding: 58px 62px;
  border: 1px solid rgba(95, 51, 131, 0.1);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(54, 29, 78, 0.08);
}
.dbb-overview__benefits-copy h3 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.dbb-overview__benefits-copy p {
  margin: 0;
  color: #716678;
  font-size: 14px;
  line-height: 1.78;
}
.dbb-overview__benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-overview__benefits-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  padding: 17px;
  border-radius: 17px;
  background: #f8f4fc;
}
.dbb-overview__benefits-list i {
  margin-top: 2px;
  color: #33a9c9;
  font-size: 17px;
}
.dbb-overview__benefits-list span {
  color: #756a7e;
  font-size: 11px;
  line-height: 1.55;
}
.dbb-overview__benefits-list strong {
  display: block;
  margin-bottom: 3px;
  color: #2b1a3b;
  font-size: 12px;
}
.dbb-overview__notice {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 25px;
  padding: 24px 30px;
  border: 1px solid rgba(239, 151, 49, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8df, #fff 65%, #f7edff);
}
.dbb-overview__notice > strong {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #2d153f;
  color: #ffd65d;
  font-size: 19px;
}
.dbb-overview__notice p {
  margin: 0;
  color: #706574;
  font-size: 12px;
  line-height: 1.65;
}
.dbb-overview__notice b {
  color: #2b1c38;
}
@keyframes dbb-orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes dbb-orbit-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes dbb-core-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(7px);
  }
}
@keyframes dbb-bubble-float {
  0%,
  100% {
    margin-top: -6px;
  }
  50% {
    margin-top: 8px;
  }
}
@keyframes dbb-spark {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.75) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(28deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-orbit__ring,
  .dbb-orbit__core,
  .dbb-orbit__bubble,
  .dbb-orbit__spark {
    animation: none !important;
  }
}
@media (max-width: 1199px) {
  .dbb-overview__cards {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-overview__card {
    min-height: 300px;
  }
  .dbb-overview__stage {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-overview__copy {
    padding-left: 48px;
  }
  .dbb-orbit {
    transform: scale(0.86);
  }
}
@media (max-width: 991px) {
  .dbb-overview {
    padding: 90px 0;
  }
  .dbb-overview__header {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .dbb-overview__stage {
    grid-template-columns: 1fr;
  }
  .dbb-overview__copy {
    padding: 55px 45px 20px;
  }
  .dbb-orbit {
    min-height: 520px;
  }
  .dbb-overview__benefits {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 45px;
  }
}
@media (max-width: 767px) {
  .dbb-overview__cards {
    grid-template-columns: 1fr;
  }
  .dbb-overview__card {
    min-height: auto;
  }
  .dbb-overview__benefits-list {
    grid-template-columns: 1fr;
  }
  .dbb-overview__notice {
    grid-template-columns: 1fr;
  }
  .dbb-orbit {
    margin: -45px -55px;
    transform: scale(0.72);
  }
  .dbb-overview__copy {
    padding: 42px 25px 15px;
  }
  .dbb-overview__benefits {
    padding: 35px 24px;
  }
  .dbb-overview__header h2 {
    font-size: 42px;
  }
}
/* ==================================================
                  BINGO SECTION
================================================== */
.dbb-bingo {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, #16052f 0%, #2f0d58 48%, #140425 100%);
  color: #dcd2e8;
}
.dbb-bingo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 9% 18%,
      rgba(255, 63, 173, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 90% 43%,
      rgba(43, 202, 255, 0.16),
      transparent 28%
    );
  pointer-events: none;
}
.dbb-bingo > .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}
.dbb-bingo__header {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 68px;
}
.dbb-bingo__eyebrow,
.dbb-bingo__label {
  display: inline-block;
  margin-bottom: 14px;
  color: #62e8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-bingo h2,
.dbb-bingo h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-bingo__header h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 69px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-bingo__header p {
  margin: 0;
  color: #c9bdd8;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-bingo__feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 28px 80px rgba(4, 1, 20, 0.3);
  backdrop-filter: blur(12px);
}
.dbb-bingo__machine {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(76, 211, 255, 0.18),
      transparent 42%
    ),
    linear-gradient(145deg, #32105b, #751564);
  isolation: isolate;
}
.dbb-bingo__machine::before,
.dbb-bingo__machine::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.dbb-bingo__machine::before {
  width: 440px;
  height: 440px;
}
.dbb-bingo__machine::after {
  width: 540px;
  height: 540px;
}
.dbb-bingo__machine-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #4fdfff;
  filter: blur(100px);
  opacity: 0.18;
}
.dbb-bingo__ticket {
  position: relative;
  z-index: 3;
  width: 340px;
  padding: 18px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  background: #fff9f0;
  box-shadow: 0 24px 55px rgba(11, 2, 33, 0.42);
  color: #2b1742;
  transform: rotate(-3deg);
  animation: dbb-ticket-float 5s ease-in-out infinite;
}
.dbb-bingo__ticket-head,
.dbb-bingo__ticket-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.dbb-bingo__ticket-head {
  margin-bottom: 7px;
}
.dbb-bingo__ticket-head span {
  display: grid;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #f44aae, #9d2ad3);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}
.dbb-bingo__ticket-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #ded3e6;
  border-radius: 9px;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
}
.dbb-bingo__ticket-grid .is-marked {
  border-color: #ef3fa7;
  background: #f34aad;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(244, 61, 169, 0.13);
  animation: dbb-ticket-mark 2.7s ease-in-out infinite;
}
.dbb-bingo__ticket-grid .is-free {
  background: #54daf6;
  color: #352051;
}
.dbb-bingo__ticket small {
  display: block;
  margin-top: 13px;
  color: #786b80;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.dbb-bingo__floating-ball {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow:
    inset -8px -10px 20px rgba(20, 5, 60, 0.2),
    0 12px 30px rgba(5, 2, 25, 0.32);
  animation: dbb-bingo-ball 5s ease-in-out infinite;
}
.dbb-bingo__floating-ball--one {
  top: 11%;
  left: 10%;
  width: 76px;
  height: 76px;
  background: linear-gradient(145deg, #ff6fc4, #bd2cd8);
}
.dbb-bingo__floating-ball--two {
  top: 17%;
  right: 10%;
  width: 59px;
  height: 59px;
  background: linear-gradient(145deg, #52e4ff, #3975e0);
  animation-delay: -1.7s;
}
.dbb-bingo__floating-ball--three {
  right: 8%;
  bottom: 11%;
  width: 82px;
  height: 82px;
  background: linear-gradient(145deg, #ffdf68, #ff8b37);
  color: #3a194d;
  animation-delay: -3.2s;
}
.dbb-bingo__feature-copy {
  padding: 70px 66px;
}
.dbb-bingo__feature-copy h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.dbb-bingo__feature-copy p {
  margin: 0 0 18px;
  color: #cfc3da;
  font-size: 14px;
  line-height: 1.8;
}
.dbb-bingo__fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 31px;
}
.dbb-bingo__fact-row span {
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #cfc4da;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}
.dbb-bingo__fact-row b {
  display: block;
  margin-bottom: 5px;
  color: #64e9ff;
  font-size: 25px;
}
.dbb-bingo__formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.dbb-bingo__format {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.dbb-bingo__format:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
}
.dbb-bingo__format-number {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  box-shadow: 0 13px 28px rgba(4, 1, 17, 0.25);
}
.dbb-bingo__format--pink .dbb-bingo__format-number {
  background: linear-gradient(145deg, #ff68bd, #c02bd4);
}
.dbb-bingo__format--blue .dbb-bingo__format-number {
  background: linear-gradient(145deg, #58e2ff, #3c76dd);
}
.dbb-bingo__format--gold .dbb-bingo__format-number {
  background: linear-gradient(145deg, #ffe06e, #f48b35);
  color: #37184b;
}
.dbb-bingo__format small {
  color: #64e9ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-bingo__format h3 {
  margin: 10px 0 15px;
  color: #fff;
  font-size: 22px;
  line-height: 1.28;
}
.dbb-bingo__format p {
  margin: 0;
  color: #c7bbd2;
  font-size: 13px;
  line-height: 1.72;
}
.dbb-bingo__rooms {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 65px;
  margin-top: 75px;
  padding: 62px;
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(4, 1, 18, 0.24);
}
.dbb-bingo__rooms-copy h3 {
  margin: 0 0 20px;
  color: #28163b;
  font-size: 39px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.dbb-bingo__rooms-copy p {
  margin: 0;
  color: #746a7d;
  font-size: 14px;
  line-height: 1.78;
}
.dbb-bingo__rooms-copy .dbb-bingo__label {
  color: #a6329c;
}
.dbb-bingo__room-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dbb-bingo__room-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid #ece5f2;
  border-radius: 18px;
  background: #faf7fc;
}
.dbb-bingo__room-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #f348ab, #8436dd);
  color: #fff;
  font-size: 17px;
}
.dbb-bingo__room-list h3 {
  margin: 1px 0 7px;
  color: #2d1c3d;
  font-size: 14px;
  line-height: 1.3;
}
.dbb-bingo__room-list p {
  margin: 0;
  color: #807487;
  font-size: 10px;
  line-height: 1.55;
}
.dbb-bingo__notice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}
.dbb-bingo__notice-row article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.06);
}
.dbb-bingo__notice-row i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: rgba(93, 226, 255, 0.12);
  color: #62e8ff;
}
.dbb-bingo__notice-row strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 12px;
}
.dbb-bingo__notice-row p {
  margin: 0;
  color: #bfb3ca;
  font-size: 10px;
  line-height: 1.55;
}
@keyframes dbb-ticket-float {
  0%,
  100% {
    transform: rotate(-3deg) translateY(-6px);
  }
  50% {
    transform: rotate(-1deg) translateY(8px);
  }
}
@keyframes dbb-bingo-ball {
  0%,
  100% {
    transform: translateY(-8px) rotate(-5deg);
  }
  50% {
    transform: translateY(10px) rotate(7deg);
  }
}
@keyframes dbb-ticket-mark {
  0%,
  100% {
    filter: brightness(0.94);
  }
  50% {
    filter: brightness(1.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-bingo__ticket,
  .dbb-bingo__floating-ball,
  .dbb-bingo__ticket-grid .is-marked {
    animation: none !important;
  }
}
@media (max-width: 1199px) {
  .dbb-bingo__feature-copy {
    padding: 55px 42px;
  }
  .dbb-bingo__rooms {
    padding: 45px;
    gap: 40px;
  }
  .dbb-bingo__room-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .dbb-bingo {
    padding: 90px 0;
  }
  .dbb-bingo__header,
  .dbb-bingo__feature,
  .dbb-bingo__rooms {
    grid-template-columns: 1fr;
  }
  .dbb-bingo__header {
    gap: 25px;
  }
  .dbb-bingo__machine {
    min-height: 560px;
  }
  .dbb-bingo__formats {
    grid-template-columns: 1fr;
  }
  .dbb-bingo__format {
    min-height: auto;
  }
  .dbb-bingo__notice-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .dbb-bingo__header h2 {
    font-size: 40px;
  }
  .dbb-bingo__machine {
    min-height: 480px;
  }
  .dbb-bingo__ticket {
    width: 285px;
    padding: 14px;
  }
  .dbb-bingo__ticket-head span {
    height: 38px;
  }
  .dbb-bingo__feature-copy {
    padding: 40px 24px;
  }
  .dbb-bingo__fact-row {
    grid-template-columns: 1fr;
  }
  .dbb-bingo__rooms {
    padding: 34px 22px;
  }
  .dbb-bingo__rooms-copy h3 {
    font-size: 32px;
  }
  .dbb-bingo__floating-ball--one {
    left: 2%;
  }
  .dbb-bingo__floating-ball--two {
    right: 2%;
  }
  .dbb-bingo__floating-ball--three {
    right: 1%;
    bottom: 5%;
  }
}
/* ==================================================
                  SLOTS SECTION
================================================== */
.dbb-slots {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 80, 180, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 4% 43%,
      rgba(48, 203, 255, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #f9f5ff, #eee8f8 55%, #fff8ee);
  color: #312440;
}
.dbb-slots > .container {
  max-width: 1320px;
}
.dbb-slots__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}
.dbb-slots__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #a42e9b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-slots h2,
.dbb-slots h3 {
  color: #28173a;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-slots__header h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 69px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-slots__header p {
  margin: 0;
  color: #6f6478;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-slots__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 25px;
  padding: 13px;
  border: 1px solid rgba(64, 31, 90, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(60, 32, 82, 0.07);
}
.dbb-slots__toolbar span {
  padding: 10px 15px;
  border-radius: 12px;
  color: #796d82;
  font-size: 10px;
  font-weight: 800;
}
.dbb-slots__toolbar .is-active {
  background: linear-gradient(135deg, #e942a9, #7936dc);
  color: #fff;
  box-shadow: 0 8px 18px rgba(148, 48, 190, 0.24);
}
.dbb-slots__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
}
.dbb-slot-card {
  overflow: hidden;
  border: 1px solid rgba(49, 25, 71, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(54, 31, 74, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.dbb-slot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(54, 31, 74, 0.18);
}
.dbb-slot-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}
.dbb-slot-card__visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #210b43;
}
.dbb-slot-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(14, 4, 31, 0.48));
  pointer-events: none;
}
.dbb-slot-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.dbb-slot-card:hover .dbb-slot-card__visual img {
  transform: scale(1.045);
}
.dbb-slot-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(21, 7, 46, 0.72);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.dbb-slot-card__symbols {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.dbb-slot-card__symbols span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: linear-gradient(145deg, #ffcf56, #ed4aa8);
  color: #351641;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 7px 17px rgba(8, 2, 23, 0.25);
}
.dbb-slot-card__body {
  padding: 25px 24px 27px;
}
.dbb-slot-card--featured .dbb-slot-card__body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
.dbb-slot-card__body small {
  color: #a03a98;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dbb-slot-card__body h3 {
  margin: 8px 0 12px;
  font-size: 20px;
  line-height: 1.25;
}
.dbb-slot-card--featured .dbb-slot-card__body h3 {
  font-size: 32px;
}
.dbb-slot-card__body p {
  margin: 0;
  color: #786d80;
  font-size: 11px;
  line-height: 1.68;
}
.dbb-slot-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.dbb-slot-card__tags span {
  padding: 7px 9px;
  border-radius: 8px;
  background: #f4eff8;
  color: #685871;
  font-size: 8px;
  font-weight: 800;
}
.dbb-slots__details {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  margin-top: 72px;
  padding: 58px 62px;
  border-radius: 30px;
  background: linear-gradient(135deg, #19062e, #391060 58%, #65165f);
  box-shadow: 0 25px 65px rgba(49, 20, 78, 0.23);
}
.dbb-slots__details .dbb-slots__eyebrow {
  color: #64e8ff;
}
.dbb-slots__details-copy h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 37px;
  line-height: 1.13;
  letter-spacing: -0.04em;
}
.dbb-slots__details-copy p {
  margin: 0;
  color: #cfc3d9;
  font-size: 13px;
  line-height: 1.78;
}
.dbb-slots__detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.dbb-slots__detail-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}
.dbb-slots__detail-list i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(91, 224, 255, 0.12);
  color: #62e8ff;
}
.dbb-slots__detail-list strong {
  display: block;
  margin: 2px 0 5px;
  color: #fff;
  font-size: 11px;
}
.dbb-slots__detail-list p {
  margin: 0;
  color: #bfb3ca;
  font-size: 9px;
  line-height: 1.5;
}
.dbb-slots__notice {
  display: grid;
  grid-template-columns: 63px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 23px 28px;
  border: 1px solid rgba(215, 146, 44, 0.25);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.78);
}
.dbb-slots__notice > strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #28133c;
  color: #ffda63;
  font-size: 18px;
}
.dbb-slots__notice p {
  margin: 0;
  color: #706476;
  font-size: 11px;
  line-height: 1.62;
}
.dbb-slots__notice b {
  color: #2a193a;
}
@media (max-width: 1199px) {
  .dbb-slots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .dbb-slot-card--featured {
    grid-column: span 2;
  }
  .dbb-slots__details {
    padding: 48px;
  }
}
@media (max-width: 991px) {
  .dbb-slots {
    padding: 90px 0;
  }
  .dbb-slots__header,
  .dbb-slots__details {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dbb-slots__grid {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-slots__detail-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-slots__grid {
    grid-template-columns: 1fr;
  }
  .dbb-slot-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .dbb-slot-card__visual {
    min-height: 430px;
  }
  .dbb-slot-card--featured .dbb-slot-card__body {
    padding: 30px 24px;
  }
  .dbb-slots__details {
    padding: 38px 24px;
  }
  .dbb-slots__detail-list {
    grid-template-columns: 1fr;
  }
  .dbb-slots__notice {
    grid-template-columns: 1fr;
  }
  .dbb-slots__header h2 {
    font-size: 41px;
  }
}
.dbb-slot-card__visual .dbb-slot-card__game-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 68%;
  height: 45%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 12px rgba(13, 3, 30, 0.28));
}
.dbb-slot-card:hover .dbb-slot-card__visual .dbb-slot-card__game-logo {
  transform: translate(-50%, -50%) scale(1.04);
}
/* Keep the eight Double Bubble titles in a balanced 4 × 2 grid. */
.dbb-slot-card--featured {
  grid-column: span 1;
  display: block;
}
.dbb-slot-card--featured .dbb-slot-card__body {
  display: block;
  padding: 25px 24px 27px;
}
.dbb-slot-card--featured .dbb-slot-card__body h3 {
  font-size: 20px;
}
@media (max-width: 1199px) {
  .dbb-slots__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dbb-slot-card--featured {
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .dbb-slots__grid {
    grid-template-columns: 1fr;
  }
}
/* Equal slot-card geometry */
.dbb-slot-card,
.dbb-slot-card--featured {
  display: flex;
  flex-direction: column;
}
.dbb-slot-card__visual {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
}
.dbb-slot-card__visual > img:not(.dbb-slot-card__game-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dbb-slot-card__body,
.dbb-slot-card--featured .dbb-slot-card__body {
  display: flex;
  min-height: 285px;
  padding: 25px 24px 27px;
  flex: 1 1 auto;
  flex-direction: column;
}
.dbb-slot-card__body h3,
.dbb-slot-card--featured .dbb-slot-card__body h3 {
  min-height: 50px;
  margin: 8px 0 12px;
  font-size: 20px;
}
.dbb-slot-card__body p {
  margin-bottom: 18px;
}
.dbb-slot-card__tags {
  margin-top: auto;
}
@media (max-width: 767px) {
  .dbb-slot-card__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .dbb-slot-card__body,
  .dbb-slot-card--featured .dbb-slot-card__body {
    min-height: 0;
  }
  .dbb-slot-card__body h3,
  .dbb-slot-card--featured .dbb-slot-card__body h3 {
    min-height: 0;
  }
}
/* ==================================================
                  SLINGO SECTION
================================================== */
.dbb-slingo {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(31, 210, 246, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at 91% 47%,
      rgba(255, 72, 177, 0.17),
      transparent 27%
    ),
    linear-gradient(145deg, #0c2438, #162144 48%, #32134f);
  color: #cbd7df;
}
.dbb-slingo > .container {
  max-width: 1320px;
}
.dbb-slingo__header {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 66px;
}
.dbb-slingo__eyebrow,
.dbb-slingo__label {
  display: inline-block;
  margin-bottom: 14px;
  color: #60e8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-slingo h2,
.dbb-slingo h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-slingo__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 5vw, 69px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-slingo__header p {
  margin: 0;
  color: #c0ccd5;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-slingo__feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 80px rgba(2, 8, 24, 0.34);
}
.dbb-slingo-board {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 55px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 82, 183, 0.28),
      transparent 38%
    ),
    linear-gradient(145deg, #5b1c84, #1d4985);
}
.dbb-slingo-board__top {
  display: flex;
  width: 390px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dbb-slingo-board__top span {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.dbb-slingo-board__top small {
  color: #99efff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dbb-slingo-board__grid {
  display: grid;
  width: 390px;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: #faf7ff;
  box-shadow: 0 22px 50px rgba(6, 7, 31, 0.36);
  transform: rotate(-1deg);
}
.dbb-slingo-board__grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #ddd5e8;
  border-radius: 11px;
  background: #fff;
  color: #302143;
  font-size: 16px;
  font-weight: 900;
}
.dbb-slingo-board__grid .is-hit {
  background: linear-gradient(145deg, #ff5bb8, #9837df);
  color: #fff;
  animation: dbb-slingo-hit 2.8s ease-in-out infinite;
}
.dbb-slingo-board__grid .is-wild {
  background: linear-gradient(145deg, #ffdf68, #f79437);
  color: #3d1c4c;
}
.dbb-slingo-board__reel {
  display: grid;
  width: 390px;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 17px;
  background: #111a39;
  box-shadow: 0 14px 32px rgba(2, 5, 19, 0.34);
}
.dbb-slingo-board__reel span {
  display: grid;
  height: 53px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  background: linear-gradient(145deg, #2d4780, #24335d);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.dbb-slingo-board__reel .is-wild {
  background: linear-gradient(145deg, #ffd65c, #ed4da8);
  color: #331743;
  font-size: 10px;
}
.dbb-slingo-board__status {
  display: flex;
  width: 390px;
  justify-content: space-between;
  margin-top: 18px;
  color: #d6e8ef;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.dbb-slingo-board__status b {
  margin-right: 5px;
  color: #65e8ff;
  font-size: 18px;
}
.dbb-slingo__explanation {
  padding: 66px 62px;
}
.dbb-slingo__explanation h3 {
  margin: 0 0 23px;
  color: #fff;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-slingo__explanation p {
  margin: 0 0 17px;
  color: #c2ced6;
  font-size: 13px;
  line-height: 1.78;
}
.dbb-slingo__symbol-key {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 27px;
}
.dbb-slingo__symbol-key span {
  padding: 13px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: #c5d1da;
  font-size: 8px;
  text-align: center;
}
.dbb-slingo__symbol-key b {
  display: block;
  margin-bottom: 5px;
  color: #61e9ff;
  font-size: 17px;
}
.dbb-slingo__difference {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 55px;
  align-items: center;
  margin-top: 28px;
  padding: 45px 50px;
  border-radius: 25px;
  background: #fff;
  color: #30213f;
}
.dbb-slingo__difference > div > h3 {
  margin: 0;
  color: #29183a;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}
.dbb-slingo__difference .dbb-slingo__label {
  color: #a4319b;
}
.dbb-slingo__difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.dbb-slingo__difference-grid article {
  padding: 20px;
  border-radius: 16px;
  background: #f7f3fa;
}
.dbb-slingo__difference-grid i {
  color: #b336a4;
  font-size: 19px;
}
.dbb-slingo__difference-grid h3 {
  margin: 12px 0 8px;
  color: #2d1b3d;
  font-size: 13px;
}
.dbb-slingo__difference-grid p {
  margin: 0;
  color: #796f80;
  font-size: 9px;
  line-height: 1.55;
}
.dbb-slingo__games-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin: 78px 0 28px;
}
.dbb-slingo__games-head h3 {
  margin: 0;
  color: #fff;
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.dbb-slingo__games-head > p {
  margin: 0;
  color: #b9c7d0;
  font-size: 13px;
  line-height: 1.75;
}
.dbb-slingo__games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.dbb-slingo-game {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 33px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.065);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.dbb-slingo-game:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.09);
}
.dbb-slingo-game__icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: linear-gradient(145deg, #ff5db8, #7f38dc);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 13px 28px rgba(3, 7, 26, 0.28);
}
.dbb-slingo-game--book .dbb-slingo-game__icon,
.dbb-slingo-game--wheel .dbb-slingo-game__icon {
  background: linear-gradient(145deg, #54e2ff, #3579de);
}
.dbb-slingo-game--deal .dbb-slingo-game__icon,
.dbb-slingo-game--fire .dbb-slingo-game__icon {
  background: linear-gradient(145deg, #ffe069, #f18737);
  color: #36194a;
}
.dbb-slingo-game small {
  color: #62e8ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-slingo-game h3 {
  margin: 9px 0 14px;
  color: #fff;
  font-size: 20px;
  line-height: 1.28;
}
.dbb-slingo-game p {
  margin: 0;
  color: #bdcad2;
  font-size: 11px;
  line-height: 1.68;
}
.dbb-slingo-game > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.dbb-slingo-game > div span {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #c9d4db;
  font-size: 8px;
  font-weight: 800;
}
.dbb-slingo__practical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 70px;
}
.dbb-slingo__practical > article {
  padding: 36px;
  border-radius: 22px;
  background: #fff;
}
.dbb-slingo__practical article > span {
  color: #a5319d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dbb-slingo__practical article h3 {
  margin: 10px 0 14px;
  color: #2a193a;
  font-size: 22px;
}
.dbb-slingo__practical article p {
  margin: 0;
  color: #786e7e;
  font-size: 11px;
  line-height: 1.7;
}
.dbb-slingo__practical aside {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 63px 1fr;
  gap: 20px;
  align-items: center;
  padding: 23px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.07);
}
.dbb-slingo__practical aside strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #ffda62;
  color: #301745;
  font-size: 18px;
}
.dbb-slingo__practical aside p {
  margin: 0;
  color: #c0ccd4;
  font-size: 11px;
  line-height: 1.62;
}
.dbb-slingo__practical aside b {
  color: #fff;
}
@keyframes dbb-slingo-hit {
  0%,
  100% {
    filter: brightness(0.95);
  }
  50% {
    filter: brightness(1.18);
    box-shadow: 0 0 0 4px rgba(255, 81, 181, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-slingo-board__grid .is-hit {
    animation: none !important;
  }
}
@media (max-width: 1199px) {
  .dbb-slingo__feature {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-slingo-board {
    padding: 38px 25px;
  }
  .dbb-slingo-board__top,
  .dbb-slingo-board__grid,
  .dbb-slingo-board__reel,
  .dbb-slingo-board__status {
    width: 350px;
  }
  .dbb-slingo__explanation {
    padding: 52px 40px;
  }
}
@media (max-width: 991px) {
  .dbb-slingo {
    padding: 90px 0;
  }
  .dbb-slingo__header,
  .dbb-slingo__feature,
  .dbb-slingo__difference,
  .dbb-slingo__games-head {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .dbb-slingo-board {
    min-height: 600px;
  }
  .dbb-slingo__difference-grid,
  .dbb-slingo__games {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-slingo__header h2 {
    font-size: 41px;
  }
  .dbb-slingo-board {
    min-height: 520px;
    padding: 30px 10px;
  }
  .dbb-slingo-board__top,
  .dbb-slingo-board__grid,
  .dbb-slingo-board__reel,
  .dbb-slingo-board__status {
    width: 300px;
  }
  .dbb-slingo-board__grid {
    gap: 4px;
    padding: 11px;
  }
  .dbb-slingo-board__reel {
    gap: 4px;
    padding: 8px;
  }
  .dbb-slingo__explanation {
    padding: 42px 24px;
  }
  .dbb-slingo__symbol-key,
  .dbb-slingo__difference-grid,
  .dbb-slingo__games,
  .dbb-slingo__practical {
    grid-template-columns: 1fr;
  }
  .dbb-slingo__difference {
    padding: 35px 24px;
  }
  .dbb-slingo__practical aside {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}
/* Double Bubble brand history */
.dbb-casino__history {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  margin: 28px 0;
  padding: 60px 62px;
  border: 1px solid rgba(57, 28, 79, 0.1);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(45, 24, 65, 0.1);
}
.dbb-casino__history-copy h3 {
  margin: 0 0 22px;
  color: #29183a;
  font-size: 39px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.dbb-casino__history-copy p {
  margin: 0 0 15px;
  color: #746a7c;
  font-size: 12px;
  line-height: 1.75;
}
.dbb-casino__timeline {
  position: relative;
  display: grid;
  gap: 12px;
}
.dbb-casino__timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 20px;
  width: 2px;
  background: linear-gradient(#3ed9f2, #da3fa8, #f0aa3e);
}
.dbb-casino__timeline article {
  position: relative;
  padding: 19px 20px 19px 55px;
  border-radius: 17px;
  background: #f7f3fa;
}
.dbb-casino__timeline article::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #b53aa6;
  box-shadow: 0 0 0 3px rgba(181, 58, 166, 0.13);
}
.dbb-casino__timeline span {
  color: #a32f9a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.dbb-casino__timeline strong {
  display: block;
  margin: 5px 0 6px;
  color: #2c1a3c;
  font-size: 13px;
}
.dbb-casino__timeline p {
  margin: 0;
  color: #7b7082;
  font-size: 9px;
  line-height: 1.55;
}
@media (max-width: 991px) {
  .dbb-casino__history {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .dbb-casino__history {
    padding: 38px 24px;
  }
  .dbb-casino__history-copy h3 {
    font-size: 32px;
  }
}
/* ==================================================
                  CASINO SECTION
================================================== */
.dbb-casino {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 95% 12%,
      rgba(255, 70, 172, 0.11),
      transparent 25%
    ),
    radial-gradient(
      circle at 3% 42%,
      rgba(35, 190, 184, 0.11),
      transparent 26%
    ),
    linear-gradient(180deg, #fbf8f1, #eef5f1 50%, #f8f1fa);
  color: #334847;
}
.dbb-casino > .container {
  max-width: 1320px;
}
.dbb-casino__eyebrow,
.dbb-casino__label {
  display: inline-block;
  margin-bottom: 14px;
  color: #0f8e8b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.dbb-casino h2,
.dbb-casino h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-casino__header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 65px;
}
.dbb-casino__header h2 {
  margin: 0;
  color: #173438;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-casino__header p {
  margin: 0;
  color: #667876;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-casino__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dbb-casino__split-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 45px;
  border-radius: 27px;
  color: #fff;
  box-shadow: 0 22px 55px rgba(27, 55, 56, 0.15);
}
.dbb-casino__split-card--digital {
  background: linear-gradient(140deg, #073d46, #126b70);
}
.dbb-casino__split-card--live {
  background: linear-gradient(140deg, #31134e, #762563);
}
.dbb-casino__split-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.dbb-casino__split-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #7df4ee;
  font-size: 20px;
}
.dbb-casino__split-card--live .dbb-casino__split-icon {
  color: #ff8ed0;
}
.dbb-casino__split-card small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-casino__split-card h3 {
  margin: 10px 0 16px;
  color: #fff;
  font-size: 30px;
}
.dbb-casino__split-card p {
  max-width: 535px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.72;
}
.dbb-casino__split-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-casino__split-card li {
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 8px;
  font-weight: 800;
}
.dbb-casino__feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 610px;
  overflow: hidden;
  border-radius: 32px;
  background: #143f3c;
  box-shadow: 0 27px 70px rgba(28, 57, 55, 0.21);
}
.dbb-casino-table {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(
    ellipse at 50% 70%,
    #168074,
    #0a4d4b 56%,
    #062d35
  );
}
.dbb-casino-table::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 310px;
  border: 3px solid rgba(240, 198, 83, 0.5);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.04);
}
.dbb-casino-table__wheel {
  position: absolute;
  top: 75px;
  left: 70px;
  width: 190px;
  height: 190px;
  border: 15px solid #b77a36;
  border-radius: 50%;
  background: conic-gradient(
    #bd263e 0 12.5%,
    #1a2227 12.5% 25%,
    #bd263e 25% 37.5%,
    #1a2227 37.5% 50%,
    #bd263e 50% 62.5%,
    #1a2227 62.5% 75%,
    #bd263e 75% 87.5%,
    #1a2227 87.5%
  );
  box-shadow: 0 18px 40px rgba(1, 18, 21, 0.42);
  animation: dbb-wheel 18s linear infinite;
}
.dbb-casino-table__wheel b {
  position: absolute;
  inset: 31%;
  border: 8px solid #d4a558;
  border-radius: 50%;
  background: #0e3337;
}
.dbb-casino-table__wheel span {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.dbb-casino-table__wheel span:nth-child(1) {
  top: 9px;
  left: 86px;
}
.dbb-casino-table__wheel span:nth-child(2) {
  top: 85px;
  right: 9px;
}
.dbb-casino-table__wheel span:nth-child(3) {
  bottom: 9px;
  left: 83px;
}
.dbb-casino-table__wheel span:nth-child(4) {
  top: 85px;
  left: 9px;
}
.dbb-casino-table__cards {
  position: absolute;
  right: 70px;
  top: 135px;
  display: flex;
}
.dbb-casino-table__cards span {
  display: flex;
  width: 105px;
  height: 145px;
  padding: 13px;
  border: 2px solid #ddd4c8;
  border-radius: 12px;
  background: #fff;
  color: #bd263e;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  box-shadow: 0 17px 32px rgba(1, 17, 19, 0.32);
  transform: rotate(-7deg);
}
.dbb-casino-table__cards span + span {
  margin-left: -45px;
  color: #1d2730;
  transform: rotate(9deg) translateY(12px);
}
.dbb-casino-table__cards small {
  margin-left: 4px;
  font-size: 23px;
}
.dbb-casino-table__chips {
  position: absolute;
  bottom: 110px;
  display: flex;
  gap: 12px;
}
.dbb-casino-table__chips span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 8px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #d13a8e;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 23px rgba(2, 20, 20, 0.32);
}
.dbb-casino-table__chips span:nth-child(2) {
  background: #286fc7;
}
.dbb-casino-table__chips span:nth-child(3) {
  background: #e2a82e;
}
.dbb-casino-table__status {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(3, 27, 31, 0.7);
  color: #fff;
  backdrop-filter: blur(8px);
}
.dbb-casino-table__status span {
  margin-right: auto;
  font-size: 9px;
}
.dbb-casino-table__status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #50e4b3;
  box-shadow: 0 0 10px #50e4b3;
}
.dbb-casino-table__status strong {
  color: #67f0d0;
  font-size: 9px;
  letter-spacing: 0.09em;
}
.dbb-casino-table__status small {
  font-size: 9px;
}
.dbb-casino__feature-copy {
  display: flex;
  justify-content: center;
  padding: 64px;
  flex-direction: column;
  background: linear-gradient(145deg, #113d3c, #183b4d);
}
.dbb-casino__feature-copy .dbb-casino__label {
  color: #71edd7;
}
.dbb-casino__feature-copy h3 {
  margin: 0 0 23px;
  color: #fff;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-casino__feature-copy p {
  margin: 0 0 17px;
  color: #c4d7d5;
  font-size: 13px;
  line-height: 1.78;
}
.dbb-casino__feature-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 22px;
}
.dbb-casino__feature-facts span {
  padding: 15px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #bcd0cf;
  font-size: 8px;
  text-align: center;
}
.dbb-casino__feature-facts b {
  display: block;
  margin-bottom: 5px;
  color: #71edd7;
  font-size: 16px;
}
.dbb-casino__games-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: end;
  margin: 78px 0 28px;
}
.dbb-casino__games-head h3 {
  margin: 0;
  color: #173438;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-casino__games-head p {
  margin: 0;
  color: #6e7d7b;
  font-size: 13px;
  line-height: 1.75;
}
.dbb-casino__games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dbb-casino-game {
  position: relative;
  min-height: 480px;
  padding: 38px;
  border: 1px solid rgba(29, 61, 59, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 17px 46px rgba(37, 62, 59, 0.08);
}
.dbb-casino-game__number {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 25px;
  place-items: center;
  border: 5px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: linear-gradient(145deg, #d52f91, #8739d5);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(91, 40, 113, 0.2);
}
.dbb-casino-game--blackjack .dbb-casino-game__number,
.dbb-casino-game--first .dbb-casino-game__number {
  background: linear-gradient(145deg, #118b88, #175b74);
}
.dbb-casino-game--baccarat .dbb-casino-game__number,
.dbb-casino-game--shows .dbb-casino-game__number {
  background: linear-gradient(145deg, #e4b338, #e16a39);
}
.dbb-casino-game small {
  color: #168f8b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dbb-casino-game h3 {
  margin: 8px 0 15px;
  color: #203638;
  font-size: 27px;
}
.dbb-casino-game p {
  margin: 0 0 13px;
  color: #70807e;
  font-size: 11px;
  line-height: 1.7;
}
.dbb-casino-game p b {
  color: #354c4b;
}
.dbb-casino-game > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.dbb-casino-game > div span {
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef5f2;
  color: #57706e;
  font-size: 8px;
  font-weight: 800;
}
.dbb-casino__live {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
  margin-top: 70px;
  padding: 55px;
  border-radius: 28px;
  background: linear-gradient(140deg, #301149, #721f63);
}
.dbb-casino__live-copy .dbb-casino__label {
  color: #ff8ed0;
}
.dbb-casino__live-copy h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.dbb-casino__live-copy p {
  margin: 0;
  color: #d6c4d8;
  font-size: 12px;
  line-height: 1.72;
}
.dbb-casino__live-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  counter-reset: live-step;
}
.dbb-casino__live-steps article {
  position: relative;
  padding: 20px 20px 20px 55px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  counter-increment: live-step;
}
.dbb-casino__live-steps article::before {
  content: counter(live-step);
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #f054ad;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}
.dbb-casino__live-steps b {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 11px;
}
.dbb-casino__live-steps p {
  margin: 0;
  color: #ccbcd0;
  font-size: 9px;
  line-height: 1.5;
}
.dbb-casino__checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 25px;
}
.dbb-casino__checklist article {
  padding: 24px;
  border: 1px solid rgba(33, 67, 64, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}
.dbb-casino__checklist i {
  color: #168f89;
  font-size: 19px;
}
.dbb-casino__checklist h3 {
  margin: 13px 0 8px;
  color: #284443;
  font-size: 13px;
}
.dbb-casino__checklist p {
  margin: 0;
  color: #71817f;
  font-size: 9px;
  line-height: 1.55;
}
.dbb-casino__notice {
  display: grid;
  grid-template-columns: 63px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 23px 28px;
  border: 1px solid rgba(224, 155, 48, 0.23);
  border-radius: 19px;
  background: #fff;
}
.dbb-casino__notice strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #173c3d;
  color: #ffdb68;
  font-size: 18px;
}
.dbb-casino__notice p {
  margin: 0;
  color: #687b79;
  font-size: 11px;
  line-height: 1.62;
}
.dbb-casino__notice b {
  color: #294745;
}
@keyframes dbb-wheel {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-casino-table__wheel {
    animation: none !important;
  }
}
@media (max-width: 1199px) {
  .dbb-casino__feature-copy {
    padding: 48px 40px;
  }
  .dbb-casino-table__wheel {
    left: 35px;
  }
  .dbb-casino-table__cards {
    right: 35px;
  }
  .dbb-casino__history {
    padding: 48px;
  }
}
@media (max-width: 991px) {
  .dbb-casino {
    padding: 90px 0;
  }
  .dbb-casino__header,
  .dbb-casino__feature,
  .dbb-casino__games-head,
  .dbb-casino__live {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dbb-casino__split {
    grid-template-columns: 1fr;
  }
  .dbb-casino-table {
    min-height: 590px;
  }
  .dbb-casino__checklist {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-casino__header h2 {
    font-size: 41px;
  }
  .dbb-casino__split-card {
    min-height: auto;
    padding: 34px 25px;
  }
  .dbb-casino__games {
    grid-template-columns: 1fr;
  }
  .dbb-casino-game {
    min-height: auto;
    padding: 31px 24px;
  }
  .dbb-casino__feature-copy {
    padding: 42px 24px;
  }
  .dbb-casino__feature-facts,
  .dbb-casino__live-steps,
  .dbb-casino__checklist {
    grid-template-columns: 1fr;
  }
  .dbb-casino__live {
    padding: 40px 24px;
  }
  .dbb-casino__notice {
    grid-template-columns: 1fr;
  }
  .dbb-casino-table__wheel {
    top: 70px;
    left: 25px;
    width: 155px;
    height: 155px;
  }
  .dbb-casino-table__cards {
    top: 145px;
    right: 20px;
  }
  .dbb-casino-table__cards span {
    width: 82px;
    height: 115px;
    font-size: 29px;
  }
  .dbb-casino-table__chips span {
    width: 52px;
    height: 52px;
  }
}
/* Casino catalogue: grouped games, compact rules and playful motion */
.dbb-casino__game-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 20px;
  padding: 12px;
  border: 1px solid rgba(47, 34, 66, 0.08);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(40, 35, 58, 0.06);
}
.dbb-casino__game-map span {
  display: flex;
  gap: 10px;
  min-height: 48px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 13px;
  background: #f5f0f8;
  color: #493b53;
  font-size: 10px;
  font-weight: 850;
}
.dbb-casino__game-map b {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #de3ca9, #7045df);
  color: #fff;
  font-size: 8px;
}
.dbb-casino__game-map span:nth-child(2) b {
  background: linear-gradient(145deg, #ff9c42, #e45391);
}
.dbb-casino__game-map span:nth-child(3) b {
  background: linear-gradient(145deg, #28c9d0, #246fbd);
}
.dbb-casino__game-map span:nth-child(4) b {
  background: linear-gradient(145deg, #28a77f, #0f6572);
}
.dbb-casino-game {
  overflow: hidden;
  min-height: 0;
  padding-top: 44px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.dbb-casino-game::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, #df3aa7, #7443dc, #24c9dc);
}
.dbb-casino-game::after {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(126, 52, 151, 0.07);
  content: "●";
  font-size: 90px;
  line-height: 1;
  pointer-events: none;
  animation: dbb-casino-bubble 5.5s ease-in-out infinite;
}
.dbb-casino-game--blackjack::after {
  content: "♠";
  color: rgba(18, 123, 126, 0.07);
}
.dbb-casino-game--baccarat::after {
  content: "9";
  color: rgba(222, 139, 48, 0.08);
  font-weight: 900;
}
.dbb-casino-game--dice::after {
  content: "⚄";
  color: rgba(216, 66, 140, 0.07);
}
.dbb-casino-game--shows::after {
  content: "★";
  color: rgba(229, 151, 44, 0.09);
}
.dbb-casino-game--first::after {
  content: "◉";
  color: rgba(23, 127, 126, 0.08);
}
.dbb-casino-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(48, 49, 76, 0.13);
}
.dbb-casino-game__round {
  display: grid;
  gap: 7px;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}
.dbb-casino-game__round li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid rgba(31, 91, 88, 0.08);
  border-radius: 11px;
  background: linear-gradient(90deg, #f2f8f5, #f8f4fa);
}
.dbb-casino-game__round b {
  color: #263f40;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dbb-casino-game__round span {
  color: #687a78;
  font-size: 9px;
  line-height: 1.4;
}
.dbb-casino__feature-facts span {
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dbb-casino__feature-facts b {
  font-size: 12px;
  letter-spacing: 0.07em;
}
.dbb-casino__live {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 100%,
      rgba(42, 216, 221, 0.17),
      transparent 30%
    ),
    linear-gradient(135deg, #250d49, #7b1d69);
  box-shadow: 0 25px 60px rgba(58, 22, 77, 0.2);
}
.dbb-casino__live::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 35px rgba(255, 255, 255, 0.025),
    0 0 0 70px rgba(255, 255, 255, 0.018);
}
.dbb-casino__live-copy,
.dbb-casino__live-steps {
  position: relative;
  z-index: 1;
}
.dbb-casino__live-copy p {
  font-size: 12px;
  line-height: 1.82;
}
.dbb-casino__live-steps article {
  min-height: 118px;
  padding: 22px 20px 20px 58px;
}
.dbb-casino__live-steps b {
  font-size: 12px;
}
.dbb-casino__live-steps p {
  font-size: 9px;
  line-height: 1.65;
}
@keyframes dbb-casino-bubble {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(9px) rotate(4deg);
  }
}
@media (max-width: 991px) {
  .dbb-casino__game-map {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-casino__game-map {
    grid-template-columns: 1fr;
  }
  .dbb-casino-game__round li {
    grid-template-columns: 68px 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-casino-game::after {
    animation: none;
  }
  .dbb-casino-game {
    transition: none;
  }
}
/* Playful Double Bubble casino scene */
.dbb-casino-playground {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(98, 61, 221, 0.72),
      transparent 27%
    ),
    radial-gradient(
      circle at 16% 16%,
      rgba(36, 217, 255, 0.45),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 56, 165, 0.48),
      transparent 29%
    ),
    linear-gradient(145deg, #13052f, #32105d 55%, #0d4073);
}
.dbb-casino-playground::before {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 47% 53% 45% 55%;
  content: "";
  box-shadow:
    0 0 0 35px rgba(255, 255, 255, 0.025),
    inset 0 0 70px rgba(45, 221, 255, 0.1);
  transform: rotate(-8deg);
}
.dbb-casino-playground__bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 24%,
    #fff 0 4%,
    #63e8ff 7%,
    #963bea 48%,
    #ff42ac
  );
  box-shadow:
    inset -12px -14px 22px rgba(47, 6, 92, 0.28),
    0 15px 35px rgba(13, 3, 44, 0.32);
  color: #fff;
  font-weight: 900;
  animation: dbb-casino-float 4.8s ease-in-out infinite;
}
.dbb-casino-playground__bubble--one {
  top: 62px;
  left: 48px;
  width: 82px;
  height: 82px;
  font-size: 25px;
}
.dbb-casino-playground__bubble--two {
  top: 32px;
  right: 92px;
  width: 58px;
  height: 58px;
  font-size: 18px;
  animation-delay: -1.2s;
}
.dbb-casino-playground__bubble--three {
  right: 38px;
  bottom: 118px;
  width: 92px;
  height: 92px;
  font-size: 21px;
  animation-delay: -2.5s;
}
.dbb-casino-playground__wheel {
  position: absolute;
  top: 132px;
  left: 78px;
  width: 275px;
  height: 275px;
  border: 14px solid #ffd45d;
  border-radius: 50%;
  background: conic-gradient(
    #ff3da9 0 12.5%,
    #7136e8 12.5% 25%,
    #24cced 25% 37.5%,
    #ff9c3d 37.5% 50%,
    #ff3da9 50% 62.5%,
    #7136e8 62.5% 75%,
    #24cced 75% 87.5%,
    #ff9c3d 87.5%
  );
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.2),
    0 24px 50px rgba(8, 1, 36, 0.42);
  animation: dbb-play-wheel 20s linear infinite;
}
.dbb-casino-playground__wheel::after {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 31px solid #fff;
  content: "";
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.25));
  transform: translateX(-50%);
}
.dbb-casino-playground__wheel b {
  position: absolute;
  inset: 33%;
  border: 8px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff54b2, #7538e5);
  box-shadow: 0 8px 25px rgba(20, 2, 54, 0.35);
}
.dbb-casino-playground__wheel span {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}
.dbb-casino-playground__wheel span:nth-child(1) {
  top: 27px;
  left: 122px;
}
.dbb-casino-playground__wheel span:nth-child(2) {
  top: 125px;
  right: 22px;
}
.dbb-casino-playground__wheel span:nth-child(3) {
  bottom: 25px;
  left: 128px;
}
.dbb-casino-playground__wheel span:nth-child(4) {
  top: 125px;
  left: 20px;
}
.dbb-casino-playground__dice {
  position: absolute;
  right: 72px;
  top: 185px;
  z-index: 4;
  display: flex;
}
.dbb-casino-playground__dice span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #caf6ff);
  color: #5d2ab7;
  font-size: 48px;
  box-shadow: 0 18px 32px rgba(8, 2, 42, 0.35);
  transform: rotate(12deg);
}
.dbb-casino-playground__dice span + span {
  margin: 55px 0 0 -24px;
  background: linear-gradient(145deg, #fff4b5, #ff9e4d);
  color: #bc287c;
  transform: rotate(-13deg);
}
.dbb-casino-playground__card {
  position: absolute;
  left: 305px;
  bottom: 95px;
  z-index: 3;
  width: 100px;
  height: 140px;
  padding: 15px;
  border: 3px solid #fff;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #ffeaf6);
  box-shadow: 0 20px 35px rgba(8, 2, 42, 0.38);
  color: #e43086;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  transform: rotate(9deg);
}
.dbb-casino-playground__card small {
  margin-left: 4px;
  font-size: 24px;
}
.dbb-casino-playground__host {
  position: absolute;
  right: 180px;
  bottom: 85px;
  z-index: 4;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: linear-gradient(145deg, #20c8ff, #7136e8 55%, #ff3da9);
  box-shadow: 0 18px 35px rgba(8, 2, 42, 0.35);
  color: #fff;
}
.dbb-casino-playground__host i {
  font-size: 31px;
}
.dbb-casino-playground__host span {
  margin-top: -25px;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.15em;
}
.dbb-casino-playground__caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(15, 4, 44, 0.7);
  color: #fff;
  backdrop-filter: blur(9px);
}
.dbb-casino-playground__caption b {
  font-size: 8px;
  letter-spacing: 0.12em;
}
.dbb-casino-playground__caption i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #53e5ff;
  box-shadow: 0 0 9px #53e5ff;
}
.dbb-casino-game__number--wheel {
  position: relative;
  border: 7px solid #ffd45d;
  background: conic-gradient(
    #ff3da9 0 25%,
    #7136e8 25% 50%,
    #23cbe3 50% 75%,
    #ff9a3d 75%
  );
}
.dbb-casino-game__number--wheel i {
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #6824a8;
}
.dbb-casino-game__number--cards {
  border: 3px solid #fff;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #dff9ff) !important;
  color: #143f64;
  font-family: Georgia, serif;
  transform: rotate(-5deg);
}
.dbb-casino-game__number--cards small {
  color: #ed3b91;
  font-size: 18px;
}
.dbb-casino-game__number--baccarat {
  background: linear-gradient(145deg, #ffbe43, #ff5a9e) !important;
}
.dbb-casino-game--shows {
  order: 1;
}
.dbb-casino-game--dice {
  order: 2;
}
.dbb-casino-game--first {
  order: 3;
}
.dbb-casino-game--roulette {
  order: 4;
}
.dbb-casino-game--blackjack {
  order: 5;
}
.dbb-casino-game--baccarat {
  order: 6;
}
@keyframes dbb-casino-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-14px) rotate(5deg);
  }
}
@keyframes dbb-play-wheel {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1199px) {
  .dbb-casino-playground__wheel {
    left: 35px;
  }
  .dbb-casino-playground__dice {
    right: 35px;
  }
}
@media (max-width: 767px) {
  .dbb-casino-playground {
    min-height: 530px;
  }
  .dbb-casino-playground__wheel {
    top: 125px;
    left: 25px;
    width: 210px;
    height: 210px;
  }
  .dbb-casino-playground__wheel span:nth-child(1) {
    top: 20px;
    left: 91px;
  }
  .dbb-casino-playground__wheel span:nth-child(2) {
    top: 92px;
    right: 13px;
  }
  .dbb-casino-playground__wheel span:nth-child(3) {
    bottom: 17px;
    left: 97px;
  }
  .dbb-casino-playground__wheel span:nth-child(4) {
    top: 92px;
    left: 13px;
  }
  .dbb-casino-playground__dice {
    top: 220px;
    right: 18px;
  }
  .dbb-casino-playground__dice span {
    width: 64px;
    height: 64px;
    font-size: 35px;
  }
  .dbb-casino-playground__card {
    left: 42%;
    bottom: 82px;
    width: 72px;
    height: 102px;
    font-size: 31px;
  }
  .dbb-casino-playground__host {
    right: 28px;
    bottom: 90px;
    width: 78px;
    height: 78px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-casino-playground__bubble,
  .dbb-casino-playground__wheel {
    animation: none;
  }
}
/* ==================================================
      SITE-WIDE READABLE TYPOGRAPHY SCALE
================================================== */
html {
  font-size: 16px;
}
body {
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* Navigation and primary actions */
.dbb-header .navbar-nav > li > .nav-link {
  font-size: 14px !important;
  line-height: 1.35;
}
.dbb-header .btn-primary,
.dbb-hero .dbb-hero__cta {
  font-size: 15px !important;
}
/* Paragraphs that carry actual information */
:where(
    .dbb-overview,
    .dbb-bingo,
    .dbb-slots,
    .dbb-slingo,
    .dbb-casino,
    .dbb-bonuses,
    .dbb-payments-section,
    .dbb-mobile-access,
    .dbb-faq
  )
  p {
  font-size: 15px !important;
  line-height: 1.72 !important;
}
.dbb-hero p,
.dbb-hero p {
  font-size: 16px !important;
  line-height: 1.72 !important;
}
/* Eyebrows, category labels and card labels */
:where(
    .dbb-overview,
    .dbb-bingo,
    .dbb-slots,
    .dbb-slingo,
    .dbb-casino,
    .dbb-bonuses,
    .dbb-payments-section,
    .dbb-mobile-access
  )
  :where(small, [class*="__eyebrow"], [class*="__label"]) {
  font-size: 12px !important;
  line-height: 1.4 !important;
}
/* Informational cards */
.dbb-overview__card p,
.dbb-overview__benefits-list span,
.dbb-bingo__format p,
.dbb-bingo__room-list p,
.dbb-bingo__notice-row p,
.dbb-slot-card__body p,
.dbb-slots__detail-list p,
.dbb-slots__notice p,
.dbb-slingo-game p,
.dbb-slingo__difference-grid p,
.dbb-slingo__practical p,
.dbb-casino__timeline p,
.dbb-casino-game p,
.dbb-casino__live-steps p,
.dbb-casino__checklist p,
.dbb-casino__notice p,
.dbb-bonuses article p,
.dbb-payments-section article p,
.dbb-mobile-access__points p,
.dbb-mobile-access__note p {
  font-size: 14px !important;
  line-height: 1.68 !important;
}
/* Tags, compact facts and step summaries */
.dbb-overview__chips > span,
.dbb-hero .dbb-hero__facts span,
.dbb-bingo__fact-row span,
.dbb-bingo__notice-row strong,
.dbb-slots__toolbar span,
.dbb-slot-card__badge,
.dbb-slot-card__tags span,
.dbb-slots__detail-list strong,
.dbb-slingo__symbol-key span,
.dbb-slingo-game > div span,
.dbb-casino__split-card li,
.dbb-casino__feature-facts span,
.dbb-casino__game-map span,
.dbb-casino-game > div span,
.dbb-casino-game__round b,
.dbb-casino-game__round span,
.dbb-casino__live-steps b,
.dbb-bonuses [class*="tag"],
.dbb-payments-section [class*="tag"] {
  font-size: 12px !important;
  line-height: 1.45 !important;
}
/* Frequently overlooked secondary information */
.dbb-overview__benefits-list strong,
.dbb-bingo__room-list h3,
.dbb-slots__detail-list strong,
.dbb-slingo__difference-grid h3,
.dbb-casino__timeline strong,
.dbb-casino__checklist h3 {
  font-size: 15px !important;
}
.dbb-casino__timeline span,
.dbb-casino__live-steps article::before,
.dbb-casino__game-map b {
  font-size: 11px !important;
}
/* FAQ and footer must remain readable too */
.dbb-faq__item summary {
  font-size: 17px !important;
  line-height: 1.45 !important;
}
.dbb-faq__item p {
  font-size: 15px !important;
  line-height: 1.72 !important;
}
.dbb-footer__brand p,
.dbb-footer__navigation a,
.dbb-footer__responsible p,
.dbb-footer__payments > div:first-child > strong,
.dbb-footer__bottom p,
.dbb-footer__bottom a {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.dbb-footer__navigation h3 {
  font-size: 16px !important;
}
.dbb-footer__legal span,
.dbb-footer__legal a,
.dbb-footer__payments > div:first-child > span {
  font-size: 12px !important;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .dbb-header .navbar-nav > li > .nav-link {
    font-size: 15px !important;
  }
  :where(
      .dbb-overview,
      .dbb-bingo,
      .dbb-slots,
      .dbb-slingo,
      .dbb-casino,
      .dbb-bonuses,
      .dbb-payments-section,
      .dbb-mobile-access,
      .dbb-faq
    )
    p {
    font-size: 15px !important;
  }
  .dbb-casino-game__round li {
    min-height: 48px;
  }
}
/* Casino card artwork and unnumbered live-table steps */
.dbb-casino__live-steps {
  counter-reset: none !important;
}
.dbb-casino__live-steps article {
  padding-left: 64px !important;
  counter-increment: none !important;
}
.dbb-casino__live-steps article::before {
  display: none !important;
  content: none !important;
}
.dbb-casino__live-steps article > i {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: linear-gradient(145deg, #ff55b4, #7542df);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(29, 5, 54, 0.22);
}
.dbb-casino__game-map b i {
  font-size: 13px;
}
.dbb-casino-game--baccarat::after {
  content: "";
}
.dbb-casino-game__art {
  position: relative;
  z-index: 2;
  display: block;
  width: 112px;
  height: 86px;
  margin-bottom: 24px;
}
.dbb-casino-game__art::before {
  position: absolute;
  inset: 10px 5px 0;
  border-radius: 45px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.9),
      transparent 10%
    ),
    linear-gradient(145deg, rgba(50, 218, 239, 0.2), rgba(231, 57, 171, 0.18));
  content: "";
  filter: blur(0.2px);
}
/* Roulette wheel with a visible ball */
.dbb-mini-wheel {
  position: absolute;
  top: 5px;
  left: 15px;
  width: 74px;
  height: 74px;
  border: 7px solid #ffd45d;
  border-radius: 50%;
  background: conic-gradient(
    #ff3da9 0 12.5%,
    #7136e8 12.5% 25%,
    #24cbe5 25% 37.5%,
    #ff963b 37.5% 50%,
    #ff3da9 50% 62.5%,
    #7136e8 62.5% 75%,
    #24cbe5 75% 87.5%,
    #ff963b 87.5%
  );
  box-shadow:
    0 10px 22px rgba(80, 30, 120, 0.25),
    inset 0 0 0 13px rgba(31, 10, 66, 0.42);
}
.dbb-mini-wheel::after {
  position: absolute;
  inset: 26px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #722caa;
  content: "";
}
.dbb-mini-ball {
  position: absolute;
  top: 9px;
  left: 64px;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #54e9ff;
  box-shadow: 0 3px 8px rgba(25, 15, 65, 0.3);
}
/* Blackjack: two unmistakable playing cards */
.dbb-mini-card {
  position: absolute;
  top: 6px;
  display: flex;
  width: 54px;
  height: 72px;
  padding: 7px;
  border: 3px solid #fff;
  border-radius: 11px;
  background: linear-gradient(145deg, #fff, #eafaff);
  box-shadow: 0 10px 20px rgba(48, 25, 85, 0.25);
  color: #202449;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}
.dbb-mini-card em {
  margin: 20px 0 0 -13px;
  font-size: 19px;
  font-style: normal;
}
.dbb-mini-card--ace {
  left: 12px;
  transform: rotate(-9deg);
}
.dbb-mini-card--ten {
  top: 9px;
  left: 52px;
  color: #dc347f;
  transform: rotate(9deg);
}
.dbb-mini-card--ten em {
  margin-left: -18px;
}
/* Baccarat: Player and Banker hands */
.dbb-mini-hand {
  position: absolute;
  top: 10px;
  display: grid;
  width: 58px;
  height: 66px;
  grid-template-rows: 22px 1fr;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(48, 25, 85, 0.23);
  font-style: normal;
  text-align: center;
}
.dbb-mini-hand em {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.1em;
}
.dbb-mini-hand b {
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 24px;
}
.dbb-mini-hand--player {
  left: 5px;
  background: #25c5dd;
  color: #16708b;
  transform: rotate(-5deg);
}
.dbb-mini-hand--player em {
  background: #25a9c5;
}
.dbb-mini-hand--banker {
  left: 52px;
  background: #ff55a8;
  color: #bd286f;
  transform: rotate(6deg);
}
.dbb-mini-hand--banker em {
  background: #e13888;
}
/* Dice with real pips */
.dbb-mini-die {
  position: absolute;
  top: 9px;
  display: grid;
  width: 58px;
  height: 58px;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(3, 9px);
  align-content: space-between;
  justify-content: space-between;
  padding: 10px;
  border: 3px solid #fff;
  border-radius: 14px;
  box-shadow: 0 11px 22px rgba(48, 25, 85, 0.25);
  transform: rotate(-8deg);
}
.dbb-mini-die b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
}
.dbb-mini-die--pink {
  left: 7px;
  background: linear-gradient(145deg, #ff55b0, #c72fc8);
}
.dbb-mini-die--pink b:nth-child(3) {
  grid-column: 1/-1;
  justify-self: center;
}
.dbb-mini-die--blue {
  top: 18px;
  left: 52px;
  grid-template-rows: repeat(2, 9px);
  background: linear-gradient(145deg, #45dded, #3977de);
  transform: rotate(10deg);
}
.dbb-mini-die--blue b:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}
.dbb-mini-die--blue b:nth-child(3) {
  display: none;
}
/* Presenter-led game show wheel */
.dbb-mini-show-wheel {
  position: absolute;
  top: 5px;
  left: 13px;
  width: 76px;
  height: 76px;
  border: 7px solid #fff29b;
  border-radius: 50%;
  background: conic-gradient(
    #ff4baa 0 16.6%,
    #6f40df 16.6% 33.2%,
    #2ed4df 33.2% 49.8%,
    #ffad3e 49.8% 66.4%,
    #ff4baa 66.4% 83%,
    #6f40df 83%
  );
  box-shadow: 0 11px 24px rgba(55, 23, 95, 0.27);
}
.dbb-mini-show-wheel::before {
  position: absolute;
  top: -16px;
  left: 50%;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 18px solid #ee398f;
  content: "";
  transform: translateX(-50%);
}
.dbb-mini-show-wheel b {
  position: absolute;
  inset: 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7137c4;
}
.dbb-casino-game__art--show > em {
  position: absolute;
  right: 0;
  bottom: 4px;
  padding: 6px 8px;
  border: 2px solid #fff;
  border-radius: 9px;
  background: #ff459e;
  box-shadow: 0 7px 16px rgba(45, 20, 75, 0.22);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.1em;
}
/* First Person: a table inside a camera viewfinder */
.dbb-mini-view {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 96px;
  height: 72px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 15px;
  background:
    radial-gradient(
      ellipse at 50% 86%,
      #24aa97 0 36%,
      #0b625f 37% 48%,
      transparent 49%
    ),
    linear-gradient(145deg, #193557, #6c31a9);
  box-shadow: 0 11px 23px rgba(47, 24, 81, 0.25);
}
.dbb-mini-view::before,
.dbb-mini-view::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #61ecff;
  content: "";
}
.dbb-mini-view::before {
  top: 7px;
  left: 7px;
  border-top: 3px solid;
  border-left: 3px solid;
}
.dbb-mini-view::after {
  right: 7px;
  bottom: 7px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}
.dbb-mini-view b {
  position: absolute;
  top: 18px;
  left: 42px;
  width: 12px;
  height: 12px;
  border: 3px solid #ffe36d;
  border-radius: 50%;
}
.dbb-mini-view em,
.dbb-mini-view span {
  position: absolute;
  bottom: 8px;
  width: 18px;
  height: 18px;
  border: 4px dashed rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}
.dbb-mini-view em {
  left: 25px;
  background: #f14da2;
}
.dbb-mini-view span {
  right: 25px;
  background: #3fcce2;
}
@media (prefers-reduced-motion: no-preference) {
  .dbb-casino-game:hover .dbb-mini-wheel,
  .dbb-casino-game:hover .dbb-mini-show-wheel {
    transform: rotate(18deg);
    transition: transform 0.35s ease;
  }
  .dbb-casino-game:hover .dbb-mini-ball {
    transform: translate(-8px, 8px);
    transition: transform 0.35s ease;
  }
}
/* Strong, high-contrast game illustrations */
.dbb-casino-game::after {
  display: none !important;
  content: none !important;
}
.dbb-casino-game__art {
  display: block !important;
  width: 178px !important;
  height: 116px !important;
  margin: 0 0 27px !important;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 22% 20%,
      rgba(255, 255, 255, 0.72),
      transparent 10%
    ),
    linear-gradient(145deg, #eafcff, #f8e8ff 52%, #fff2c5);
  box-shadow:
    0 15px 30px rgba(68, 34, 92, 0.15),
    inset 0 0 0 6px rgba(255, 255, 255, 0.38);
}
.dbb-casino-game__art::before {
  display: none;
}
.dbb-casino-game__art--roulette {
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(255, 255, 255, 0.6),
      transparent 9%
    ),
    linear-gradient(145deg, #dffbff, #eee4ff 52%, #ffe5f3);
}
.dbb-casino-game__art--blackjack {
  background: linear-gradient(145deg, #e5fbff, #eee6ff 58%, #ffe4f2);
}
.dbb-casino-game__art--baccarat {
  background: linear-gradient(145deg, #fff2c7, #ffe5f3 52%, #e8faff);
}
.dbb-casino-game__art--dice {
  background: linear-gradient(145deg, #ffe0f2, #eee3ff 50%, #dffaff);
}
.dbb-casino-game__art--show {
  background: linear-gradient(145deg, #fff3bd, #ffe0f2 46%, #e1faff);
}
.dbb-casino-game__art--first {
  background: linear-gradient(145deg, #dcfaff, #e9e3ff 56%, #ffe0f1);
}
.dbb-casino-game__art .dbb-mini-wheel {
  top: 17px;
  left: 37px;
  width: 82px;
  height: 82px;
}
.dbb-casino-game__art .dbb-mini-ball {
  top: 20px;
  left: 94px;
  width: 15px;
  height: 15px;
}
.dbb-casino-game__art .dbb-mini-card {
  top: 17px;
  width: 65px;
  height: 84px;
  font-size: 25px;
}
.dbb-casino-game__art .dbb-mini-card--ace {
  left: 27px;
}
.dbb-casino-game__art .dbb-mini-card--ten {
  top: 19px;
  left: 82px;
}
.dbb-casino-game__art .dbb-mini-card em {
  margin-top: 25px;
  font-size: 23px;
}
.dbb-casino-game__art .dbb-mini-hand {
  top: 20px;
  width: 72px;
  height: 78px;
  grid-template-rows: 26px 1fr;
}
.dbb-casino-game__art .dbb-mini-hand--player {
  left: 20px;
}
.dbb-casino-game__art .dbb-mini-hand--banker {
  left: 87px;
}
.dbb-casino-game__art .dbb-mini-hand b {
  font-size: 29px;
}
.dbb-casino-game__art .dbb-mini-die {
  top: 23px;
  width: 68px;
  height: 68px;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(3, 10px);
}
.dbb-casino-game__art .dbb-mini-die b {
  width: 10px;
  height: 10px;
}
.dbb-casino-game__art .dbb-mini-die--pink {
  left: 24px;
}
.dbb-casino-game__art .dbb-mini-die--blue {
  top: 28px;
  left: 88px;
}
.dbb-casino-game__art .dbb-mini-show-wheel {
  top: 17px;
  left: 39px;
  width: 84px;
  height: 84px;
}
.dbb-casino-game__art--show > em {
  right: 13px;
  bottom: 13px;
  font-size: 10px;
}
.dbb-casino-game__art .dbb-mini-view {
  top: 18px;
  left: 24px;
  width: 130px;
  height: 82px;
}
/* Large category art: unusual formats */
.dbb-casino__split-art {
  position: relative;
  display: block;
  width: 190px;
  height: 116px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.035);
}
.dbb-split-wheel {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 80px;
  height: 80px;
  border: 7px solid #ffe372;
  border-radius: 50%;
  background: conic-gradient(
    #ff4baa 0 16.6%,
    #7944e4 16.6% 33.2%,
    #42def0 33.2% 49.8%,
    #ffa73d 49.8% 66.4%,
    #ff4baa 66.4% 83%,
    #7944e4 83%
  );
  box-shadow: 0 10px 24px rgba(11, 2, 38, 0.28);
}
.dbb-split-wheel::before {
  position: absolute;
  top: -15px;
  left: 50%;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 17px solid #fff;
  content: "";
  transform: translateX(-50%);
}
.dbb-split-wheel b {
  position: absolute;
  inset: 26px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7432ba;
}
.dbb-split-die {
  position: absolute;
  top: 36px;
  right: 22px;
  display: grid;
  width: 62px;
  height: 62px;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(3, 9px);
  align-content: space-between;
  justify-content: space-between;
  padding: 10px;
  border: 3px solid #fff;
  border-radius: 15px;
  background: linear-gradient(145deg, #ff5cb4, #813fe0);
  box-shadow: 0 11px 22px rgba(11, 2, 38, 0.3);
  transform: rotate(9deg);
}
.dbb-split-die b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
}
.dbb-split-die b:nth-child(3) {
  grid-column: 1/-1;
  justify-self: center;
}
.dbb-casino__split-art--shows > em {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 5px 7px;
  border-radius: 8px;
  background: #ffd75c;
  color: #391451;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}
/* Large category art: classic tables */
.dbb-split-roulette {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 76px;
  height: 76px;
  border: 7px solid #ffd960;
  border-radius: 50%;
  background: conic-gradient(
    #ef387f 0 12.5%,
    #20243c 12.5% 25%,
    #ef387f 25% 37.5%,
    #20243c 37.5% 50%,
    #ef387f 50% 62.5%,
    #20243c 62.5% 75%,
    #ef387f 75% 87.5%,
    #20243c 87.5%
  );
  box-shadow:
    0 11px 22px rgba(12, 2, 34, 0.3),
    inset 0 0 0 12px rgba(255, 255, 255, 0.12);
}
.dbb-split-roulette b {
  position: absolute;
  inset: 26px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #552178;
}
.dbb-split-card {
  position: absolute;
  top: 18px;
  right: 42px;
  display: flex;
  width: 54px;
  height: 76px;
  padding: 7px;
  border: 3px solid #fff;
  border-radius: 11px;
  background: #f7fdff;
  color: #212348;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(12, 2, 34, 0.28);
  transform: rotate(-7deg);
}
.dbb-split-card em {
  margin: 23px 0 0 -13px;
  font-size: 19px;
  font-style: normal;
}
.dbb-split-card--ten {
  top: 22px;
  right: 9px;
  color: #d82f78;
  transform: rotate(9deg);
}
.dbb-split-card--ten em {
  margin-left: -18px;
}
@media (max-width: 767px) {
  .dbb-casino-game__art {
    width: 160px !important;
  }
  .dbb-casino__split-art {
    width: 178px;
  }
}
/* ==================================================
             DOUBLE BUBBLE BONUSES
================================================== */
.dbb-bonuses {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(44, 213, 241, 0.17), transparent 24%),
    radial-gradient(
      circle at 93% 24%,
      rgba(255, 61, 169, 0.15),
      transparent 28%
    ),
    linear-gradient(150deg, #12052d, #31105a 50%, #571354);
  color: #fff;
}
.dbb-bonuses::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0 2px,
    transparent 3px
  );
  background-size: 78px 78px;
  content: "";
  opacity: 0.18;
  pointer-events: none;
}
.dbb-bonuses > .container {
  position: relative;
  max-width: 1320px;
}
.dbb-bonuses h2,
.dbb-bonuses h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-bonuses__eyebrow,
.dbb-bonuses__label {
  display: inline-block;
  margin-bottom: 13px;
  color: #63eaff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-bonuses__header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}
.dbb-bonuses__header h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 69px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-bonuses__header p {
  margin: 0;
  color: #cec3da;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-bonuses__choice {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 555px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 30px 75px rgba(5, 1, 20, 0.3);
}
.dbb-bonuses__choice-copy {
  display: flex;
  justify-content: center;
  padding: 60px;
  flex-direction: column;
}
.dbb-bonuses__choice-copy h3 {
  margin: 0 0 22px;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-bonuses__choice-copy > p {
  margin: 0;
  color: #cfc5d9;
  font-size: 15px;
  line-height: 1.78;
}
.dbb-bonuses__choice-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 25px;
  padding: 17px;
  border: 1px solid rgba(255, 224, 104, 0.2);
  border-radius: 16px;
  background: rgba(255, 214, 76, 0.075);
  color: #e7dae9;
  font-size: 13px;
  line-height: 1.55;
}
.dbb-bonuses__choice-note i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #ffdc61;
  color: #37164b;
}
.dbb-bonus-orbit {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 255, 255, 0.15),
      transparent 14%
    ),
    radial-gradient(
      circle at 28% 30%,
      rgba(48, 218, 255, 0.3),
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 72%,
      rgba(255, 68, 171, 0.34),
      transparent 27%
    );
}
.dbb-bonus-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
}
.dbb-bonus-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #7c3be0, #ff3fa6);
  box-shadow: 0 15px 35px rgba(8, 1, 27, 0.35);
  transform: translate(-50%, -50%);
  text-align: center;
}
.dbb-bonus-orbit__core b {
  align-self: end;
  font-size: 31px;
}
.dbb-bonus-orbit__core small {
  align-self: start;
  padding: 0 15px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.dbb-bonus-orbit__bubble {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  flex-direction: column;
  box-shadow:
    inset -18px -24px 35px rgba(47, 6, 84, 0.27),
    0 22px 45px rgba(8, 1, 29, 0.32);
  animation: dbb-bonus-float 5s ease-in-out infinite;
}
.dbb-bonus-orbit__bubble::before {
  position: absolute;
  top: 22px;
  left: 38px;
  width: 35px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  content: "";
  transform: rotate(-28deg);
}
.dbb-bonus-orbit__bubble--ticket {
  top: 45px;
  left: 35px;
  background: radial-gradient(
    circle at 30% 20%,
    #dfffff,
    #30cfe5 25%,
    #4970dc 63%,
    #8b35d4
  );
}
.dbb-bonus-orbit__bubble--spin {
  right: 32px;
  bottom: 38px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff4c1,
    #ffb54b 23%,
    #f044a5 60%,
    #8b36d8
  );
  animation-delay: -2.2s;
}
.dbb-bonus-orbit__bubble i {
  margin-bottom: 5px;
  font-size: 24px;
}
.dbb-bonus-orbit__bubble b {
  font-size: 46px;
  line-height: 1;
}
.dbb-bonus-orbit__bubble small {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.dbb-bonuses__welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.dbb-bonus-card {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 23px 55px rgba(5, 1, 20, 0.22);
}
.dbb-bonus-card--bingo {
  background: linear-gradient(145deg, #0c5964, #167d86);
}
.dbb-bonus-card--spins {
  background: linear-gradient(145deg, #4a176c, #8a246e);
}
.dbb-bonus-card__art {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 100px;
  margin-bottom: 25px;
}
.dbb-bonus-card__art > i {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #7ef1ff;
  font-size: 27px;
}
.dbb-bonus-card--spins .dbb-bonus-card__art > i {
  color: #ffd968;
}
.dbb-bonus-card__art span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 16px;
  background: linear-gradient(145deg, #ff59b3, #793edd);
  font-size: 14px;
  font-weight: 950;
  transform: rotate(-6deg);
}
.dbb-bonus-card__art span:nth-of-type(2) {
  background: linear-gradient(145deg, #44dded, #397adf);
  transform: rotate(5deg);
}
.dbb-bonus-card__art span:nth-of-type(3) {
  background: linear-gradient(145deg, #ffe16d, #f68f39);
  color: #3b1749;
  transform: rotate(-3deg);
}
.dbb-bonus-card h3 {
  margin: 0 0 17px;
  font-size: 32px;
  line-height: 1.15;
}
.dbb-bonus-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}
.dbb-bonus-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-bonus-card li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 52px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 750;
}
.dbb-bonus-card li i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: #79f0ef;
}
.dbb-bonus-card--spins li i {
  color: #ffd96a;
}
.dbb-bonus-card aside {
  margin-top: 17px;
  padding: 15px 17px;
  border-left: 3px solid #6eeaf0;
  border-radius: 0 12px 12px 0;
  background: rgba(5, 20, 30, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}
.dbb-bonus-card--spins aside {
  border-left-color: #ffd45d;
}
.dbb-bonuses__daily {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 620px;
  overflow: hidden;
  margin-top: 70px;
  border-radius: 32px;
  background: #fff;
  color: #29183a;
  box-shadow: 0 28px 70px rgba(5, 1, 20, 0.3);
}
.dbb-daily-board {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  padding: 55px;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 255, 255, 0.22),
      transparent 23%
    ),
    linear-gradient(145deg, #2acbdc, #6244db 55%, #e33b9e);
}
.dbb-daily-board__top {
  display: flex;
  width: 390px;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #fff;
  font-weight: 950;
  letter-spacing: 0.1em;
}
.dbb-daily-board__top b {
  color: #ffe56f;
}
.dbb-daily-board__grid {
  display: grid;
  width: 390px;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  padding: 16px;
  border: 3px solid #fff;
  border-radius: 24px;
  background: rgba(24, 8, 58, 0.55);
  box-shadow: 0 24px 50px rgba(19, 4, 55, 0.3);
}
.dbb-daily-board__grid i {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 7%,
    #6ee9fb 13%,
    #8844e4 57%,
    #ef45a6
  );
  box-shadow: inset -4px -5px 8px rgba(48, 7, 92, 0.22);
}
.dbb-daily-board__grid .is-open {
  border-radius: 10px;
  background: #fff;
  color: #4e246d;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  transform: scale(1.08);
}
.dbb-daily-board__bubbles span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.dbb-daily-board__bubbles span:nth-child(1) {
  top: 48px;
  right: 40px;
  width: 70px;
  height: 70px;
}
.dbb-daily-board__bubbles span:nth-child(2) {
  bottom: 44px;
  left: 38px;
  width: 95px;
  height: 95px;
}
.dbb-daily-board__bubbles span:nth-child(3) {
  right: 55px;
  bottom: 90px;
  width: 38px;
  height: 38px;
}
.dbb-bonuses__daily-copy {
  display: flex;
  justify-content: center;
  padding: 60px;
  flex-direction: column;
}
.dbb-bonuses__daily-copy .dbb-bonuses__label {
  color: #a3329e;
}
.dbb-bonuses__daily-copy h3 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.dbb-bonuses__daily-copy > p {
  margin: 0 0 16px;
  color: #766d7c;
  font-size: 15px;
  line-height: 1.75;
}
.dbb-bonuses__daily-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}
.dbb-bonuses__daily-facts span {
  padding: 14px 10px;
  border-radius: 13px;
  background: #f6f0f8;
  color: #776c7d;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}
.dbb-bonuses__daily-facts i {
  display: block;
  margin-bottom: 7px;
  color: #b134a2;
  font-size: 18px;
}
.dbb-bonuses__daily-facts b {
  display: block;
  margin-bottom: 4px;
  color: #2b193a;
  font-size: 12px;
}
.dbb-bonuses__extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.dbb-bonus-extra {
  display: grid;
  min-height: 360px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.065);
}
.dbb-bonus-extra h3 {
  margin: 0 0 15px;
  font-size: 29px;
}
.dbb-bonus-extra p {
  margin: 0;
  color: #cbbfd3;
  font-size: 14px;
  line-height: 1.72;
}
.dbb-bonus-extra__art {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 27px;
}
.dbb-bonus-extra__art span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 6%,
    #58e3f2 12%,
    #8442e1 58%,
    #f044a5
  );
  box-shadow: inset -6px -8px 12px rgba(45, 6, 87, 0.25);
  font-size: 13px;
  font-weight: 950;
}
.dbb-bonus-extra__art span:nth-child(even) {
  width: 52px;
  height: 52px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 6%,
    #ffdf72 14%,
    #f34ca9 65%
  );
}
.dbb-bonus-extra__people {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 27px;
}
.dbb-bonus-extra__people i {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 24px;
  background: linear-gradient(145deg, #47dbea, #713ee0 58%, #ed42a4);
  font-size: 25px;
}
.dbb-bonus-extra__people span {
  width: 65px;
  height: 3px;
  background: linear-gradient(90deg, #5ee7f1, #ffd762, #f14ca8);
}
.dbb-bonuses__check {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 55px;
  margin-top: 70px;
  padding: 48px;
  border-radius: 27px;
  background: linear-gradient(145deg, #f9f5ff, #fff5dd);
  color: #29183a;
}
.dbb-bonuses__check .dbb-bonuses__label {
  color: #a13299;
}
.dbb-bonuses__check h3 {
  margin: 0;
  font-size: 35px;
  line-height: 1.15;
}
.dbb-bonuses__check ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dbb-bonuses__check li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 15px;
  border: 1px solid #e5ddea;
  border-radius: 15px;
  background: #fff;
}
.dbb-bonuses__check li > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #e946aa, #7540dc);
  color: #fff;
}
.dbb-bonuses__check li span {
  color: #776e7d;
  font-size: 12px;
  line-height: 1.5;
}
.dbb-bonuses__check li b {
  display: block;
  margin-bottom: 3px;
  color: #2b1a3a;
  font-size: 13px;
}
.dbb-bonuses__notice {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 23px;
  padding: 23px 27px;
  border: 1px solid rgba(255, 215, 91, 0.23);
  border-radius: 18px;
  background: rgba(255, 216, 90, 0.07);
}
.dbb-bonuses__notice strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid #ffd75d;
  border-radius: 50%;
  color: #ffe16f;
  font-size: 18px;
}
.dbb-bonuses__notice p {
  margin: 0;
  color: #cbbfd4;
  font-size: 14px;
  line-height: 1.68;
}
@keyframes dbb-bonus-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}
@media (max-width: 991px) {
  .dbb-bonuses__header,
  .dbb-bonuses__choice,
  .dbb-bonuses__daily,
  .dbb-bonuses__check {
    grid-template-columns: 1fr;
  }
  .dbb-bonuses__welcome,
  .dbb-bonuses__extras {
    grid-template-columns: 1fr;
  }
  .dbb-bonus-orbit {
    min-height: 540px;
  }
  .dbb-bonuses__check ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-bonuses {
    padding: 85px 0;
  }
  .dbb-bonuses__header h2 {
    font-size: 41px;
  }
  .dbb-bonuses__choice-copy,
  .dbb-bonuses__daily-copy {
    padding: 40px 24px;
  }
  .dbb-bonuses__choice-copy h3,
  .dbb-bonuses__daily-copy h3 {
    font-size: 34px;
  }
  .dbb-bonus-orbit {
    min-height: 450px;
  }
  .dbb-bonus-orbit__ring {
    width: 320px;
    height: 235px;
  }
  .dbb-bonus-orbit__bubble {
    width: 145px;
    height: 145px;
  }
  .dbb-bonus-orbit__bubble--ticket {
    left: 10px;
  }
  .dbb-bonus-orbit__bubble--spin {
    right: 10px;
  }
  .dbb-bonus-orbit__core {
    width: 95px;
    height: 95px;
  }
  .dbb-bonus-card,
  .dbb-bonus-extra {
    padding: 32px 24px;
  }
  .dbb-bonus-card ul,
  .dbb-bonuses__daily-facts,
  .dbb-bonuses__check ul {
    grid-template-columns: 1fr;
  }
  .dbb-daily-board {
    min-height: 500px;
    padding: 30px 15px;
  }
  .dbb-daily-board__top,
  .dbb-daily-board__grid {
    width: 100%;
  }
  .dbb-daily-board__grid {
    gap: 4px;
    padding: 10px;
  }
  .dbb-bonus-extra__art {
    gap: 5px;
  }
  .dbb-bonus-extra__art span {
    width: 48px;
    height: 48px;
  }
  .dbb-bonuses__check {
    padding: 34px 24px;
  }
  .dbb-bonuses__notice {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-bonus-orbit__bubble {
    animation: none;
  }
}
/* ==================================================
             DOUBLE BUBBLE PAYMENTS
================================================== */
.dbb-payments {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 93% 9%,
      rgba(255, 63, 169, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 4% 37%,
      rgba(36, 205, 226, 0.15),
      transparent 27%
    ),
    linear-gradient(180deg, #fbf8f2, #eef7f4 54%, #f8f1fa);
  color: #294340;
}
.dbb-payments > .container {
  max-width: 1320px;
}
.dbb-payments h2,
.dbb-payments h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.dbb-payments__eyebrow,
.dbb-payments__label {
  display: inline-block;
  margin-bottom: 13px;
  color: #128e8b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-payments__header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}
.dbb-payments__header h2 {
  margin: 0;
  color: #173638;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-payments__header p {
  margin: 0;
  color: #687977;
  font-size: 16px;
  line-height: 1.82;
}
.dbb-payments__flow {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 590px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(140deg, #0d4a50, #153f55);
  box-shadow: 0 28px 70px rgba(26, 62, 60, 0.22);
}
.dbb-payments__flow-copy {
  display: flex;
  justify-content: center;
  padding: 60px;
  flex-direction: column;
  color: #fff;
}
.dbb-payments__flow-copy .dbb-payments__label {
  color: #6deee6;
}
.dbb-payments__flow-copy h3 {
  margin: 0 0 21px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-payments__flow-copy > p {
  margin: 0 0 15px;
  color: #c6d8d6;
  font-size: 15px;
  line-height: 1.76;
}
.dbb-payments__flow-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}
.dbb-payments__flow-facts span {
  padding: 14px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #b9cecc;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}
.dbb-payments__flow-facts i {
  display: block;
  margin-bottom: 7px;
  color: #70eee5;
  font-size: 18px;
}
.dbb-payments__flow-facts b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}
.dbb-payment-machine {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.13),
      transparent 17%
    ),
    radial-gradient(
      circle at 25% 25%,
      rgba(43, 220, 238, 0.35),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 78%,
      rgba(255, 63, 169, 0.37),
      transparent 28%
    ),
    linear-gradient(145deg, #24104a, #56206b);
}
.dbb-payment-machine__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 42px;
  background: linear-gradient(145deg, #29cddd, #7440dd 55%, #ef3d9f);
  box-shadow: 0 22px 42px rgba(10, 2, 34, 0.35);
  transform: translate(-50%, -50%);
  text-align: center;
}
.dbb-payment-machine__core i {
  align-self: end;
  font-size: 30px;
}
.dbb-payment-machine__core b {
  font-size: 11px;
  letter-spacing: 0.1em;
}
.dbb-payment-machine__core small {
  align-self: start;
  font-size: 9px;
  font-weight: 700;
}
.dbb-payment-machine__bubble {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  flex-direction: column;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #62e8f2 11%,
    #7041dc 58%,
    #ef43a4
  );
  box-shadow:
    inset -12px -16px 24px rgba(46, 6, 84, 0.25),
    0 18px 35px rgba(8, 1, 30, 0.3);
  animation: dbb-payment-float 5s ease-in-out infinite;
}
.dbb-payment-machine__bubble--card {
  top: 48px;
  left: 42px;
  width: 145px;
  height: 145px;
}
.dbb-payment-machine__bubble--phone {
  top: 45px;
  right: 38px;
  width: 120px;
  height: 120px;
  animation-delay: -1.8s;
}
.dbb-payment-machine__bubble--bank {
  right: 55px;
  bottom: 50px;
  width: 145px;
  height: 145px;
  animation-delay: -3s;
}
.dbb-payment-machine__bubble i {
  font-size: 27px;
}
.dbb-payment-machine__bubble b {
  margin-top: 6px;
  font-size: 13px;
}
.dbb-payment-machine__bubble--phone i {
  font-size: 31px;
  line-height: 0.8;
}
.dbb-payment-machine__line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #65e9ef,
    #ffd660,
    transparent
  );
  transform-origin: left center;
}
.dbb-payment-machine__line--one {
  top: 180px;
  left: 150px;
  width: 240px;
  transform: rotate(28deg);
}
.dbb-payment-machine__line--two {
  top: 185px;
  right: 75px;
  width: 220px;
  transform: rotate(139deg);
}
.dbb-payment-machine__line--three {
  right: 125px;
  bottom: 155px;
  width: 220px;
  transform: rotate(-142deg);
}
.dbb-payments__methods-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: end;
  margin: 78px 0 28px;
}
.dbb-payments__methods-head h3 {
  margin: 0;
  color: #183638;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-payments__methods-head p {
  margin: 0;
  color: #6e7e7b;
  font-size: 15px;
  line-height: 1.75;
}
.dbb-payments__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.dbb-pay-method {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 32px;
  border: 1px solid rgba(29, 65, 62, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 17px 45px rgba(35, 65, 62, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.dbb-pay-method::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, #ee3ba4, #7742df, #26cddd);
  content: "";
}
.dbb-pay-method:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(40, 52, 78, 0.13);
}
.dbb-pay-method__icon {
  position: relative;
  display: flex;
  width: 105px;
  height: 75px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid #e1dfea;
  border-radius: 20px;
  background: linear-gradient(145deg, #ecfbff, #f3eaff 58%, #fff1c9);
  color: #203746;
  font-size: 30px;
}
.dbb-pay-method__icon > b {
  font-size: 18px;
  font-style: italic;
  letter-spacing: -0.05em;
}
.dbb-pay-method__icon > small {
  margin-left: 4px;
  font-size: 8px;
  font-weight: 800;
}
.dbb-pay-method--visa .dbb-pay-method__icon i {
  position: absolute;
  right: 11px;
  bottom: 12px;
  width: 23px;
  height: 6px;
  border-radius: 5px;
  background: #f0a032;
}
.dbb-pay-method--mastercard .dbb-pay-method__icon i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ea3148;
}
.dbb-pay-method--mastercard .dbb-pay-method__icon i + i {
  margin-left: -12px;
  background: #f3a433;
  opacity: 0.88;
}
.dbb-pay-method--bank .dbb-pay-method__icon i + i {
  position: absolute;
  right: 11px;
  bottom: 9px;
  color: #ed3b98;
  font-size: 14px;
}
.dbb-pay-method h3 {
  margin: 0 0 12px;
  color: #263f40;
  font-size: 23px;
}
.dbb-pay-method p {
  margin: 0;
  color: #73817f;
  font-size: 14px;
  line-height: 1.68;
}
.dbb-pay-method > span {
  position: absolute;
  bottom: 27px;
  left: 32px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef5f2;
  color: #58706e;
  font-size: 11px;
  font-weight: 800;
}
.dbb-payments__withdrawal {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
  overflow: hidden;
  margin-top: 70px;
  border-radius: 31px;
  background: linear-gradient(140deg, #2e104b, #761f66);
  box-shadow: 0 27px 65px rgba(50, 19, 72, 0.22);
}
.dbb-payments__withdrawal-art {
  position: relative;
  min-height: 520px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.12),
      transparent 22%
    ),
    linear-gradient(145deg, rgba(40, 207, 222, 0.18), rgba(255, 67, 169, 0.12));
}
.dbb-withdraw-card,
.dbb-withdraw-bank {
  position: absolute;
  top: 145px;
  display: grid;
  width: 145px;
  height: 95px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 22px;
  box-shadow: 0 18px 35px rgba(9, 2, 29, 0.35);
}
.dbb-withdraw-card {
  left: 55px;
  background: linear-gradient(145deg, #daf9ff, #fff);
  color: #253d75;
  font-size: 18px;
  font-style: italic;
}
.dbb-withdraw-bank {
  right: 55px;
  background: linear-gradient(145deg, #49dce8, #7642df);
  color: #fff;
  font-size: 30px;
}
.dbb-payments__withdrawal-art > i {
  position: absolute;
  top: 177px;
  left: 50%;
  color: #ffe16c;
  font-size: 30px;
  transform: translateX(-50%);
}
.dbb-payments__withdrawal-art > em {
  position: absolute;
  bottom: 90px;
  left: 50%;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 6%,
    #ffd85c 13%,
    #ef4ca8 67%
  );
  box-shadow: 0 15px 30px rgba(9, 2, 29, 0.32);
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  transform: translateX(-50%);
}
.dbb-payments__withdrawal article {
  display: flex;
  justify-content: center;
  padding: 58px;
  flex-direction: column;
}
.dbb-payments__withdrawal .dbb-payments__label {
  color: #ff8fd1;
}
.dbb-payments__withdrawal h3 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.dbb-payments__withdrawal p {
  margin: 0 0 15px;
  color: #d5c7da;
  font-size: 15px;
  line-height: 1.75;
}
.dbb-payments__help {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 24px;
}
.dbb-payments__help article {
  padding: 25px;
  border: 1px solid rgba(29, 65, 62, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.78);
}
.dbb-payments__help i {
  color: #168f8b;
  font-size: 20px;
}
.dbb-payments__help h3 {
  margin: 14px 0 9px;
  color: #284443;
  font-size: 15px;
}
.dbb-payments__help p {
  margin: 0;
  color: #71817f;
  font-size: 13px;
  line-height: 1.62;
}
.dbb-payments__notice {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 23px 27px;
  border: 1px solid rgba(221, 151, 45, 0.24);
  border-radius: 19px;
  background: #fff;
}
.dbb-payments__notice strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #193f40;
  color: #ffdc64;
  font-size: 18px;
}
.dbb-payments__notice p {
  margin: 0;
  color: #687a78;
  font-size: 14px;
  line-height: 1.67;
}
@keyframes dbb-payment-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-11px) rotate(3deg);
  }
}
@media (max-width: 991px) {
  .dbb-payments__header,
  .dbb-payments__flow,
  .dbb-payments__methods-head,
  .dbb-payments__withdrawal {
    grid-template-columns: 1fr;
  }
  .dbb-payments__methods {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-payments__help {
    grid-template-columns: 1fr 1fr;
  }
  .dbb-payment-machine {
    min-height: 540px;
  }
}
@media (max-width: 767px) {
  .dbb-payments {
    padding: 85px 0;
  }
  .dbb-payments__header h2 {
    font-size: 41px;
  }
  .dbb-payments__flow-copy,
  .dbb-payments__withdrawal article {
    padding: 42px 24px;
  }
  .dbb-payments__flow-copy h3,
  .dbb-payments__withdrawal h3 {
    font-size: 34px;
  }
  .dbb-payments__flow-facts,
  .dbb-payments__methods,
  .dbb-payments__help {
    grid-template-columns: 1fr;
  }
  .dbb-payment-machine {
    min-height: 475px;
  }
  .dbb-payment-machine__bubble--card {
    left: 10px;
  }
  .dbb-payment-machine__bubble--phone {
    right: 10px;
  }
  .dbb-payment-machine__bubble--bank {
    right: 18px;
    bottom: 30px;
  }
  .dbb-pay-method {
    min-height: 310px;
  }
  .dbb-payments__withdrawal-art {
    min-height: 430px;
  }
  .dbb-withdraw-card {
    left: 18px;
  }
  .dbb-withdraw-bank {
    right: 18px;
  }
  .dbb-payments__notice {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-payment-machine__bubble {
    animation: none;
  }
}
/* Cryptocurrency payment collection */
.dbb-payments__crypto {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 610px;
  overflow: hidden;
  margin-top: 70px;
  border-radius: 32px;
  background: linear-gradient(140deg, #11142f, #25205b 48%, #4b1763);
  box-shadow: 0 28px 70px rgba(27, 18, 64, 0.24);
}
.dbb-payments__crypto-copy {
  display: flex;
  justify-content: center;
  padding: 60px;
  flex-direction: column;
  color: #fff;
}
.dbb-payments__crypto-copy .dbb-payments__label {
  color: #70eae7;
}
.dbb-payments__crypto-copy h3 {
  margin: 0 0 21px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.dbb-payments__crypto-copy > p {
  margin: 0 0 15px;
  color: #c7c9dc;
  font-size: 15px;
  line-height: 1.76;
}
.dbb-payments__crypto-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 21px;
  padding: 17px;
  border: 1px solid rgba(89, 231, 226, 0.18);
  border-radius: 15px;
  background: rgba(80, 220, 219, 0.07);
  color: #d7d5e4;
  font-size: 13px;
  line-height: 1.55;
}
.dbb-payments__crypto-note > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #35d6dd, #7744df);
  color: #fff;
}
.dbb-payments__crypto-note b {
  color: #fff;
}
.dbb-crypto-cloud {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 48% 44%,
      rgba(255, 255, 255, 0.13),
      transparent 17%
    ),
    radial-gradient(
      circle at 20% 24%,
      rgba(39, 210, 225, 0.28),
      transparent 25%
    ),
    radial-gradient(
      circle at 83% 80%,
      rgba(255, 62, 166, 0.28),
      transparent 28%
    );
}
.dbb-crypto-cloud::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.018);
  transform: translate(-50%, -50%) rotate(-10deg);
}
.dbb-crypto-cloud__coin {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  flex-direction: column;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #66e8ef 11%,
    #7842dd 58%,
    #ee44a5
  );
  box-shadow:
    inset -9px -12px 17px rgba(39, 7, 77, 0.26),
    0 14px 28px rgba(7, 3, 28, 0.3);
  color: #fff;
  animation: dbb-crypto-float 5s ease-in-out infinite;
}
.dbb-crypto-cloud__coin i,
.dbb-crypto-cloud__coin strong {
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}
.dbb-crypto-cloud__coin b {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.dbb-crypto-cloud__coin--btc {
  top: 45px;
  left: 48px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #ffd36a 12%,
    #f39431 62%,
    #d84d66
  );
}
.dbb-crypto-cloud__coin--eth {
  top: 38px;
  right: 62px;
  animation-delay: -1s;
}
.dbb-crypto-cloud__coin--usdt {
  top: 190px;
  left: 24px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #74f0cf 12%,
    #22a98c 65%
  );
  animation-delay: -2s;
}
.dbb-crypto-cloud__coin--ltc {
  top: 185px;
  right: 24px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #bde2ff 12%,
    #5688cb 65%
  );
  animation-delay: -3s;
}
.dbb-crypto-cloud__coin--sol {
  right: 66px;
  bottom: 50px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #62f6d1 12%,
    #8e42e1 62%,
    #ee3fa4
  );
  animation-delay: -4s;
}
.dbb-crypto-cloud__coin--bch {
  bottom: 42px;
  left: 55px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #8df2c8 12%,
    #2cab72 65%
  );
  animation-delay: -2.5s;
}
.dbb-crypto-cloud__coin--doge {
  top: 85px;
  left: 43%;
  width: 74px;
  height: 74px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #ffe786 12%,
    #bd9135 65%
  );
  animation-delay: -1.7s;
}
.dbb-crypto-cloud__coin--usdc {
  bottom: 110px;
  left: 38%;
  width: 78px;
  height: 78px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #98dcff 12%,
    #2776bf 65%
  );
  animation-delay: -3.4s;
}
.dbb-crypto-cloud__coin--bnb {
  top: 285px;
  right: 33%;
  width: 70px;
  height: 70px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0 5%,
    #ffe770 12%,
    #d49e25 65%
  );
  animation-delay: -0.8s;
}
.dbb-crypto-cloud__status {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 155px;
  height: 155px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 42px;
  background: linear-gradient(145deg, #25cbd7, #6f43df 55%, #eb3f9d);
  box-shadow: 0 20px 40px rgba(6, 2, 26, 0.35);
  transform: translate(-50%, -50%);
  text-align: center;
}
.dbb-crypto-cloud__status i {
  align-self: end;
  font-size: 27px;
}
.dbb-crypto-cloud__status strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.dbb-crypto-cloud__status small {
  align-self: start;
  padding: 0 16px;
  color: #e4dded;
  font-size: 9px;
  font-weight: 700;
}
@keyframes dbb-crypto-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}
@media (max-width: 991px) {
  .dbb-payments__crypto {
    grid-template-columns: 1fr;
  }
  .dbb-crypto-cloud {
    min-height: 610px;
  }
}
@media (max-width: 767px) {
  .dbb-payments__crypto-copy {
    padding: 42px 24px;
  }
  .dbb-payments__crypto-copy h3 {
    font-size: 34px;
  }
  .dbb-crypto-cloud {
    min-height: 570px;
  }
  .dbb-crypto-cloud__coin {
    width: 72px;
    height: 72px;
  }
  .dbb-crypto-cloud__coin--btc {
    left: 12px;
  }
  .dbb-crypto-cloud__coin--eth {
    right: 12px;
  }
  .dbb-crypto-cloud__coin--usdt {
    left: 5px;
  }
  .dbb-crypto-cloud__coin--ltc {
    right: 5px;
  }
  .dbb-crypto-cloud__coin--bch {
    left: 14px;
  }
  .dbb-crypto-cloud__coin--sol {
    right: 14px;
  }
  .dbb-crypto-cloud__status {
    width: 125px;
    height: 125px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-crypto-cloud__coin {
    animation: none;
  }
}
/* Payment direction switch and branded payment cells */
.dbb-payments__switch {
  display: grid;
  max-width: 680px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 72px auto 12px;
  padding: 8px;
  border: 1px solid rgba(42, 31, 76, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(42, 47, 69, 0.1);
}
.dbb-payments__switch button {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 24px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #677675;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.dbb-payments__switch button i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #e9efee;
  color: #647371;
  font-size: 17px;
}
.dbb-payments__switch button span {
  display: flex;
  flex-direction: column;
}
.dbb-payments__switch button b {
  font-size: 16px;
  font-weight: 900;
}
.dbb-payments__switch button small {
  margin-top: 1px;
  font-size: 12px;
  color: inherit;
  opacity: 0.78;
}
.dbb-payments__switch button.is-active {
  background: linear-gradient(135deg, #1fbfc8, #6542d9 58%, #e93d9e);
  box-shadow: 0 12px 25px rgba(90, 48, 171, 0.25);
  color: #fff;
  transform: translateY(-1px);
}
.dbb-payments__switch button.is-active i {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.dbb-payments__panel[hidden] {
  display: none !important;
}
.dbb-payments__panel.is-active {
  animation: dbb-payment-panel-in 0.35s ease both;
}
@keyframes dbb-payment-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.dbb-pay-method {
  min-height: 340px;
  background: linear-gradient(155deg, #fff, #fbfbff);
}
.dbb-pay-method__icon {
  width: 126px;
  height: 78px;
  border: 0;
  border-radius: 17px;
  box-shadow: 0 12px 26px rgba(22, 28, 67, 0.18);
}
.dbb-pay-method__icon img {
  display: block;
  max-width: 78px;
  max-height: 32px;
  object-fit: contain;
}
.dbb-pay-method--visa .dbb-pay-method__icon,
.dbb-pay-method--electron .dbb-pay-method__icon {
  background: linear-gradient(145deg, #183fb6, #1369dc 58%, #18a5e3);
}
.dbb-pay-method--visa .dbb-pay-method__icon img,
.dbb-pay-method--electron .dbb-pay-method__icon img {
  filter: brightness(0) invert(1);
}
.dbb-pay-method--electron .dbb-pay-method__icon {
  flex-direction: column;
}
.dbb-pay-method--electron .dbb-pay-method__icon small {
  margin: 5px 0 0;
  color: #fff;
  font-size: 9px !important;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dbb-pay-method--mastercard .dbb-pay-method__icon {
  background: linear-gradient(145deg, #15182c, #252b49);
}
.dbb-pay-method--mastercard .dbb-pay-method__icon::after {
  position: absolute;
  right: 11px;
  bottom: 8px;
  color: #fff;
  content: "mastercard";
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.dbb-pay-method--mastercard .dbb-pay-method__icon i {
  width: 43px;
  height: 43px;
  background: #eb001b;
}
.dbb-pay-method--mastercard .dbb-pay-method__icon i + i {
  margin-left: -14px;
  background: #f79e1b;
  opacity: 0.92;
}
.dbb-pay-method--apple .dbb-pay-method__icon {
  background: linear-gradient(145deg, #17191e, #3d414c);
  color: #fff;
}
.dbb-pay-method--apple .dbb-pay-method__icon i {
  font-size: 43px;
}
.dbb-pay-method--google .dbb-pay-method__icon {
  background: linear-gradient(145deg, #fff, #eef5ff);
  color: #2875e8;
  box-shadow:
    0 12px 26px rgba(55, 105, 173, 0.18),
    inset 0 0 0 1px #dfe8f6;
}
.dbb-pay-method--google .dbb-pay-method__icon i {
  font-size: 43px;
}
.dbb-pay-method--bank .dbb-pay-method__icon {
  background: linear-gradient(145deg, #13b7b4, #126b95);
  color: #fff;
}
.dbb-pay-method--bank .dbb-pay-method__icon i:first-child {
  font-size: 31px;
}
.dbb-pay-method--bank .dbb-pay-method__icon i + i {
  color: #ffe16c;
}
.dbb-payments__crypto {
  grid-template-columns: 0.82fr 1.18fr;
}
.dbb-crypto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: center;
  padding: 34px;
  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(58, 225, 235, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 82%,
      rgba(255, 66, 168, 0.28),
      transparent 31%
    ),
    linear-gradient(145deg, #22134b, #49185e);
}
.dbb-crypto-grid article {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(9, 3, 35, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.dbb-crypto-grid article:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.dbb-crypto-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #e8f8ff);
  box-shadow: 0 9px 18px rgba(9, 2, 30, 0.25);
}
.dbb-crypto-grid img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.dbb-crypto-grid article > div {
  min-width: 0;
}
.dbb-crypto-grid b {
  display: block;
  font-size: 13px;
  font-weight: 900;
}
.dbb-crypto-grid small {
  display: block;
  margin-top: 4px;
  color: #cbc7df;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}
.dbb-payments__payout-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 25px;
}
.dbb-payments__payout-methods > article {
  min-height: 260px;
  padding: 27px;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 17px 42px rgba(35, 45, 65, 0.1);
}
.dbb-payments__payout-methods > article:nth-child(1) {
  border-top: 7px solid #2377dd;
}
.dbb-payments__payout-methods > article:nth-child(2) {
  border-top: 7px solid #1dc5bc;
}
.dbb-payments__payout-methods > article:nth-child(3) {
  border-top: 7px solid #9a42de;
}
.dbb-payments__payout-methods h3 {
  margin: 2px 0 10px;
  color: #253f40;
  font-size: 21px;
}
.dbb-payments__payout-methods p {
  margin: 0;
  color: #70807e;
  font-size: 14px;
  line-height: 1.65;
}
.dbb-payout-icon {
  display: flex;
  width: 132px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 17px;
  box-shadow: 0 11px 24px rgba(27, 30, 65, 0.18);
}
.dbb-payout-icon--card {
  position: relative;
  justify-content: flex-start;
  padding: 0 10px;
  background: linear-gradient(145deg, #183fb6, #1374d9);
}
.dbb-payout-icon--card img {
  width: 56px;
  filter: brightness(0) invert(1);
}
.dbb-payout-icon--card i {
  position: absolute;
  right: 30px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eb001b;
}
.dbb-payout-icon--card i + i {
  right: 11px;
  background: #f79e1b;
  opacity: 0.93;
}
.dbb-payout-icon--bank {
  gap: 12px;
  background: linear-gradient(145deg, #12b9b4, #156c96);
  color: #fff;
  font-size: 27px;
}
.dbb-payout-icon--bank small {
  display: flex;
  gap: 5px;
  color: #fff;
  font-size: 18px !important;
}
.dbb-payout-icon--crypto {
  gap: 5px;
  background: linear-gradient(145deg, #24144b, #7b2d9c);
}
.dbb-payout-icon--crypto img {
  width: 31px;
  height: 31px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 1100px) {
  .dbb-crypto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dbb-payments__payout-methods {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-payments__switch {
    margin-top: 50px;
  }
  .dbb-payments__switch button {
    min-height: 70px;
    padding: 10px;
    gap: 8px;
  }
  .dbb-payments__switch button i {
    width: 35px;
    height: 35px;
  }
  .dbb-payments__switch button b {
    font-size: 14px;
  }
  .dbb-payments__crypto {
    grid-template-columns: 1fr;
  }
  .dbb-crypto-grid {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }
  .dbb-crypto-grid article {
    min-height: 94px;
    padding: 10px;
  }
  .dbb-crypto-grid article > span {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .dbb-crypto-grid img {
    width: 27px;
    height: 27px;
  }
  .dbb-payments__payout-methods {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 430px) {
  .dbb-payments__switch button small {
    display: none;
  }
  .dbb-crypto-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-payments__panel.is-active {
    animation: none;
  }
}
/* Final compact payment-card layout */
.dbb-payments__methods {
  gap: 20px !important;
}
.dbb-pay-method {
  display: grid !important;
  min-height: 0 !important;
  grid-template-columns: 112px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 22px;
  padding: 24px !important;
  overflow: hidden;
}
.dbb-pay-method::before {
  width: 7px !important;
  height: auto !important;
  right: auto !important;
  bottom: 0;
}
.dbb-pay-method__icon {
  width: 112px !important;
  height: 112px !important;
  grid-row: 1/4;
  margin: 0 !important;
  border-radius: 22px !important;
  align-self: start;
}
.dbb-pay-method h3 {
  margin: 4px 0 8px !important;
  font-size: 21px !important;
}
.dbb-pay-method p {
  padding: 0 0 43px;
  font-size: 14px !important;
  line-height: 1.58 !important;
}
.dbb-pay-method > span {
  bottom: 22px !important;
  left: 158px !important;
}
.dbb-pay-method--visa .dbb-pay-method__icon,
.dbb-pay-method--electron .dbb-pay-method__icon {
  background: linear-gradient(145deg, #183fb6, #126edb 62%, #22b7e4) !important;
}
.dbb-pay-method--visa .dbb-pay-method__icon img,
.dbb-pay-method--electron .dbb-pay-method__icon img {
  width: 74px !important;
  filter: brightness(0) invert(1) !important;
}
.dbb-pay-method--electron .dbb-pay-method__icon small {
  display: block !important;
  margin: 8px 0 0 !important;
  color: #bdefff !important;
  font-size: 9px !important;
  letter-spacing: 0.14em;
}
.dbb-pay-method--mastercard .dbb-pay-method__icon {
  background: linear-gradient(145deg, #15182c, #303653) !important;
}
.dbb-pay-method--apple .dbb-pay-method__icon {
  background: linear-gradient(145deg, #17191f, #3a3e49) !important;
}
.dbb-pay-method--google .dbb-pay-method__icon {
  background: linear-gradient(145deg, #edf7ff, #fff 55%, #fff0c8) !important;
}
.dbb-pay-method--bank .dbb-pay-method__icon {
  background: linear-gradient(145deg, #12b9b4, #126b96) !important;
}
.dbb-payments__crypto {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
  min-height: 560px !important;
}
.dbb-payments__crypto-copy {
  padding: 50px !important;
}
.dbb-crypto-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-content: center !important;
  min-width: 0 !important;
  padding: 30px !important;
  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(58, 225, 235, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 82%,
      rgba(255, 66, 168, 0.28),
      transparent 31%
    ),
    linear-gradient(145deg, #22134b, #49185e) !important;
}
.dbb-crypto-grid article {
  display: flex !important;
  min-width: 0 !important;
  min-height: 104px !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.dbb-crypto-grid article > span {
  display: grid !important;
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px !important;
  place-items: center !important;
  border-radius: 15px !important;
  background: #fff !important;
}
.dbb-crypto-grid article > div {
  display: block !important;
  min-width: 0 !important;
}
.dbb-crypto-grid b {
  display: block !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}
.dbb-crypto-grid small {
  display: block !important;
  margin-top: 4px !important;
  color: #d8d5e7 !important;
  font-size: 10px !important;
  line-height: 1.3 !important;
}
@media (max-width: 1100px) {
  .dbb-pay-method {
    grid-template-columns: 96px 1fr;
  }
  .dbb-pay-method__icon {
    width: 96px !important;
    height: 96px !important;
  }
  .dbb-pay-method > span {
    left: 142px !important;
  }
  .dbb-crypto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .dbb-payments__methods {
    grid-template-columns: 1fr !important;
  }
  .dbb-pay-method {
    grid-template-columns: 86px 1fr;
    padding: 19px !important;
  }
  .dbb-pay-method__icon {
    width: 86px !important;
    height: 86px !important;
  }
  .dbb-pay-method > span {
    left: 127px !important;
  }
  .dbb-payments__crypto {
    grid-template-columns: 1fr !important;
  }
  .dbb-crypto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 18px !important;
  }
}
@media (max-width: 430px) {
  .dbb-pay-method {
    grid-template-columns: 72px 1fr;
    column-gap: 15px;
  }
  .dbb-pay-method__icon {
    width: 72px !important;
    height: 72px !important;
  }
  .dbb-pay-method > span {
    left: 106px !important;
  }
  .dbb-crypto-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Legacy switcher rebuilt in the Double Bubble visual language */
.dbb-payments-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(48, 218, 235, 0.2), transparent 24%),
    radial-gradient(
      circle at 92% 18%,
      rgba(255, 62, 169, 0.24),
      transparent 28%
    ),
    linear-gradient(145deg, #210a47, #4e176a 55%, #7d1c70) !important;
}
.dbb-payments-section::before {
  display: block !important;
  inset: -80px !important;
  opacity: 0.28 !important;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      transparent 0 27px,
      rgba(255, 255, 255, 0.22) 28px 30px,
      transparent 31px
    ),
    radial-gradient(
      circle at 82% 16%,
      transparent 0 48px,
      rgba(99, 234, 245, 0.2) 49px 52px,
      transparent 53px
    ),
    radial-gradient(
      circle at 73% 78%,
      transparent 0 74px,
      rgba(255, 121, 201, 0.17) 75px 78px,
      transparent 79px
    ) !important;
  background-size:
    420px 390px,
    560px 510px,
    680px 620px !important;
  content: "" !important;
  mask-image: none !important;
}
.dbb-payment__payments {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.045)
  ) !important;
  box-shadow: 0 30px 85px rgba(31, 5, 57, 0.32) !important;
  backdrop-filter: blur(8px);
}
.dbb-payment__card-label {
  color: #65eef2 !important;
}
.dbb-payment__payments-heading > p,
.dbb-payment__intro p {
  color: #ddd2e3 !important;
}
.dbb-payment__intro article {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.075) !important;
}
.dbb-payment__intro article::before {
  background: linear-gradient(90deg, #ff43aa, #8647ed, #39dbea) !important;
}
.dbb-payment__payment-tabs {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(25, 6, 54, 0.64) !important;
  box-shadow: 0 18px 38px rgba(29, 4, 54, 0.25);
}
.dbb-payment__payment-tab {
  color: #d7cadd !important;
}
.dbb-payment__payment-tab-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #65edf1 !important;
}
#dbb-payment-control-deposit:checked
  ~ .dbb-payment__payment-tabs
  .dbb-payment__payment-tab--deposit,
#dbb-payment-control-withdrawal:checked
  ~ .dbb-payment__payment-tabs
  .dbb-payment__payment-tab--withdrawal {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: linear-gradient(135deg, #ec3da2, #8543e4 58%, #30cfe2) !important;
  box-shadow: 0 12px 28px rgba(29, 4, 54, 0.34) !important;
}
.dbb-payment__payment-tab small {
  color: inherit !important;
  opacity: 0.78;
}
.dbb-payment__panel-heading,
.dbb-payment__method-group {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(28, 7, 56, 0.48) !important;
}
.dbb-payment__panel-heading > p,
.dbb-payment__method-group-heading small {
  color: #d8cce0 !important;
}
.dbb-payment__method-group--crypto {
  background: linear-gradient(
    145deg,
    rgba(40, 208, 225, 0.13),
    rgba(32, 7, 62, 0.62),
    rgba(242, 59, 164, 0.12)
  ) !important;
}
.dbb-payment__method {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.055)
  ) !important;
  box-shadow: 0 10px 23px rgba(21, 3, 45, 0.13);
}
.dbb-payment__method:hover {
  border-color: rgba(103, 237, 241, 0.55) !important;
  background: rgba(255, 255, 255, 0.16) !important;
}
.dbb-payment__method strong {
  color: #fff !important;
  font-size: 13px !important;
}
.dbb-payment__method small {
  color: #d6cadc !important;
  font-size: 11px !important;
}
.dbb-payment__method-icon,
.dbb-payment__method--crypto .dbb-payment__method-icon {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: linear-gradient(145deg, #fff, #eef9ff 52%, #ffe4f4) !important;
  box-shadow: 0 8px 18px rgba(17, 2, 38, 0.22) !important;
  color: #24234d !important;
}
.dbb-payment__method-icon--cards {
  background: linear-gradient(145deg, #183fb6, #126edb) !important;
}
.dbb-payment__method-icon--cards img,
.dbb-payment__method-icon--cards b {
  filter: brightness(0) invert(1);
  color: #fff !important;
}
.dbb-payment__method-icon--apple {
  background: linear-gradient(145deg, #17191f, #3a3e49) !important;
  color: #fff !important;
}
.dbb-payment__method-icon--apple i {
  color: #fff !important;
}
.dbb-payment__method-icon--bank {
  background: linear-gradient(145deg, #16bdb7, #126b95) !important;
  color: #fff !important;
}
.dbb-payment__method-icon--bank i {
  color: #fff !important;
}
.dbb-payment__method--crypto .dbb-payment__method-icon img {
  width: 42px !important;
  height: 34px !important;
}
.dbb-payment__method-count {
  border-color: rgba(101, 237, 241, 0.36) !important;
  background: rgba(52, 216, 229, 0.1);
  color: #6ceef2 !important;
}
/* Clearly visible Double Bubble decoration */
.dbb-payments-section {
  isolation: isolate;
  background-color: #55156d !important;
  background-image:
    radial-gradient(
      circle at 12% 8%,
      rgba(48, 222, 238, 0.34),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 55, 168, 0.48),
      transparent 25%
    ),
    radial-gradient(
      circle at 52% 92%,
      rgba(130, 67, 232, 0.45),
      transparent 31%
    ),
    linear-gradient(145deg, #230847 0%, #5b176e 52%, #941d79 100%) !important;
}
.dbb-payments-section::before {
  position: absolute !important;
  z-index: -2 !important;
  display: block !important;
  inset: 0 !important;
  opacity: 1 !important;
  background:
    radial-gradient(
      circle at 7% 20%,
      rgba(255, 255, 255, 0.18) 0 5px,
      transparent 6px
    ),
    radial-gradient(
      circle at 7% 20%,
      transparent 0 52px,
      rgba(103, 236, 245, 0.38) 53px 56px,
      transparent 57px
    ),
    radial-gradient(
      circle at 95% 16%,
      transparent 0 88px,
      rgba(255, 255, 255, 0.27) 89px 93px,
      transparent 94px
    ),
    radial-gradient(
      circle at 84% 72%,
      transparent 0 120px,
      rgba(255, 105, 194, 0.3) 121px 125px,
      transparent 126px
    ),
    radial-gradient(
      circle at 20% 84%,
      transparent 0 65px,
      rgba(255, 220, 105, 0.2) 66px 69px,
      transparent 70px
    ) !important;
  background-size: auto !important;
  content: "" !important;
}
.dbb-payments-section::after {
  position: absolute !important;
  z-index: -1 !important;
  right: -90px !important;
  top: 310px !important;
  display: block !important;
  width: 330px !important;
  height: 330px !important;
  border: 4px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 50% !important;
  background: radial-gradient(
    circle at 28% 23%,
    rgba(255, 255, 255, 0.65) 0 5%,
    rgba(78, 225, 240, 0.28) 8%,
    rgba(255, 61, 171, 0.2) 48%,
    rgba(117, 49, 205, 0.12) 72%,
    transparent 73%
  ) !important;
  box-shadow:
    inset -25px -28px 50px rgba(77, 13, 119, 0.28),
    0 0 0 36px rgba(255, 255, 255, 0.025) !important;
  content: "" !important;
}
.dbb-payment__payments {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.dbb-payment__payments::before,
.dbb-payment__payments::after {
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.dbb-payment__payments::before {
  top: 130px;
  left: -65px;
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.45),
    rgba(55, 220, 236, 0.12) 32%,
    transparent 68%
  );
}
.dbb-payment__payments::after {
  right: 8%;
  bottom: -75px;
  width: 210px;
  height: 210px;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.38),
    rgba(255, 61, 171, 0.15) 34%,
    transparent 70%
  );
}
.dbb-payment__method-group {
  position: relative;
  overflow: hidden;
}
.dbb-payment__method-group::after {
  position: absolute;
  right: -35px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 91, 184, 0.25);
  border-radius: 50%;
  background: radial-gradient(
    circle at 28% 25%,
    rgba(255, 255, 255, 0.28),
    rgba(239, 58, 167, 0.1) 38%,
    transparent 70%
  );
  content: "";
  pointer-events: none;
}
.dbb-payment__method-group--crypto::before {
  position: absolute;
  top: 18px;
  right: 28px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(100, 237, 243, 0.55);
  border-radius: 50%;
  background: rgba(93, 224, 239, 0.13);
  box-shadow:
    -34px 31px 0 7px rgba(255, 72, 175, 0.1),
    -34px 31px 0 9px rgba(255, 125, 201, 0.35);
  content: "";
}
.dbb-payment__payment-tab--deposit .dbb-payment__payment-tab-icon {
  background: linear-gradient(145deg, #28d5df, #7544e3) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(40, 208, 222, 0.25);
}
.dbb-payment__payment-tab--withdrawal .dbb-payment__payment-tab-icon {
  background: linear-gradient(145deg, #ff4bad, #8b42e6) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(238, 58, 164, 0.25);
}
/* Dark logo surfaces keep pale payment marks visible */
.dbb-payment__method-icon,
.dbb-payment__method--crypto .dbb-payment__method-icon {
  border: 1px solid rgba(109, 231, 241, 0.38) !important;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(67, 222, 236, 0.28),
      transparent 28%
    ),
    linear-gradient(145deg, #17113b, #34205f 58%, #651f75) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 9px 20px rgba(18, 2, 42, 0.3) !important;
}
.dbb-payment__method-icon img,
.dbb-payment__method--crypto .dbb-payment__method-icon img {
  width: 60px !important;
  max-width: calc(100% - 8px) !important;
  max-height: 40px !important;
  filter: none !important;
}
.dbb-payment__method--crypto .dbb-payment__method-icon {
  border-color: rgba(255, 99, 188, 0.38) !important;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.15),
      transparent 25%
    ),
    linear-gradient(145deg, #17113b, #3c1c62 55%, #7b226f) !important;
}
.dbb-payment__method--crypto .dbb-payment__method-icon img {
  width: 58px !important;
  height: 38px !important;
}
.dbb-payment__method-icon--cards {
  border-color: rgba(88, 203, 255, 0.55) !important;
  background: linear-gradient(145deg, #1234a4, #146fd8 65%, #25bce1) !important;
}
.dbb-payment__method-icon--apple {
  border-color: rgba(255, 255, 255, 0.38) !important;
  background: linear-gradient(145deg, #050505, #242424) !important;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 9px 20px rgba(0, 0, 0, 0.32) !important;
}
.dbb-payment__method-icon--apple i {
  color: #fff !important;
}
.dbb-payment__method-icon--bank {
  border-color: rgba(93, 239, 237, 0.55) !important;
  background: linear-gradient(145deg, #0aa7aa, #12658f) !important;
}
.dbb-payment__method-icon--paypal {
  background: linear-gradient(145deg, #102b69, #174ea6) !important;
}
.dbb-payment__method-icon--paypal i {
  color: #65d9ff !important;
}
.dbb-payment__method-icon--skrill {
  background: linear-gradient(145deg, #5d164f, #92256e) !important;
}
.dbb-payment__method-icon--skrill b {
  color: #ff86d1 !important;
}
.dbb-payment__method-icon--neteller {
  background: linear-gradient(145deg, #0c554a, #128d78) !important;
}
.dbb-payment__method-icon--neteller b {
  color: #87f1cb !important;
}
.dbb-payment__method-icon--paysafe {
  background: linear-gradient(145deg, #385b18, #659326) !important;
}
.dbb-payment__method-icon--paysafe b {
  color: #ddff8b !important;
}
.dbb-payment__method-icon--cash2code {
  background: linear-gradient(145deg, #643b13, #a55a18) !important;
}
.dbb-payment__method-icon--cash2code i {
  color: #ffd16e !important;
}
/* ==================================================
          DOUBLE BUBBLE SPORTS — PENCIL EDITION
================================================== */
.dbb-sports {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(45, 211, 229, 0.2), transparent 25%),
    radial-gradient(
      circle at 94% 18%,
      rgba(255, 66, 170, 0.2),
      transparent 28%
    ),
    linear-gradient(180deg, #fff8fc, #f2f0ff 52%, #eef9f6);
  color: #243d3e;
}
.dbb-sports::before,
.dbb-sports::after {
  position: absolute;
  border: 2px solid rgba(225, 57, 158, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.dbb-sports::before {
  top: 210px;
  left: -80px;
  width: 230px;
  height: 230px;
  box-shadow: 0 0 0 34px rgba(45, 207, 225, 0.045);
}
.dbb-sports::after {
  right: -90px;
  bottom: 420px;
  width: 300px;
  height: 300px;
  box-shadow:
    inset -30px -35px 55px rgba(232, 62, 165, 0.05),
    0 0 0 44px rgba(128, 65, 221, 0.035);
}
.dbb-sports > .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}
.dbb-sports .dbb-sports__section-title {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}
.dbb-sports .dbb-sports__section-title span {
  color: #d93498;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-sports .dbb-sports__section-title h2 {
  margin: 10px 0 0;
  color: #1e3740;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.dbb-sports .dbb-sports__hero {
  display: block;
  padding: 0 !important;
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: #2b1052;
  box-shadow: 0 28px 70px rgba(53, 28, 84, 0.2);
}
.dbb-sports .dbb-sports__hero figure {
  height: 600px;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.dbb-sports .dbb-sports__hero figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.dbb-sports .dbb-sports__overview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  margin-top: 28px;
  padding: 58px;
  border: 1px solid rgba(52, 72, 72, 0.09);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(53, 57, 76, 0.09);
}
.dbb-sports .dbb-sports__overview-heading span {
  color: #d93698;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dbb-sports .dbb-sports__overview-heading h3 {
  margin: 12px 0 0;
  color: #213b40;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 3.6vw, 51px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.dbb-sports .dbb-sports__overview-copy p {
  margin: 0 0 15px;
  color: #667775;
  font-size: 15px !important;
  line-height: 1.76 !important;
}
.dbb-sports .dbb-sports__definitions {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dbb-sports .dbb-sports__definitions article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(91, 60, 143, 0.1);
  border-radius: 19px;
  background: linear-gradient(145deg, #f1fbff, #faf0ff 55%, #fff7d9);
}
.dbb-sports .dbb-sports__definitions article::after {
  position: absolute;
  right: -22px;
  bottom: -25px;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(226, 55, 158, 0.13);
  border-radius: 50%;
  content: "";
}
.dbb-sports .dbb-sports__definitions strong {
  display: block;
  margin-bottom: 8px;
  color: #263f42;
  font-size: 15px;
}
.dbb-sports .dbb-sports__definitions p {
  margin: 0;
  color: #6b7978;
  font-size: 13px !important;
  line-height: 1.62 !important;
}
.dbb-sports .dbb-sports__pills {
  grid-column: 1/-1;
  margin-top: 0;
}
.dbb-sports .dbb-sports__pills span {
  border: 1px solid rgba(119, 61, 209, 0.15);
  background: #f5effb;
  color: #644882;
  font-size: 11px;
  font-weight: 800;
}
.dbb-sports .dbb-sports__modes {
  background:
    radial-gradient(
      circle at 95% 15%,
      rgba(255, 65, 169, 0.28),
      transparent 30%
    ),
    linear-gradient(145deg, #211047, #4f176a 58%, #791c70);
  box-shadow: 0 25px 62px rgba(64, 24, 86, 0.2);
}
.dbb-sports .dbb-sports__mode-grid article {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.075);
}
.dbb-sports .dbb-sports__mode-grid article::after {
  position: absolute;
  right: -23px;
  bottom: -27px;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(85, 228, 239, 0.2);
  border-radius: 50%;
  content: "";
}
.dbb-sports .dbb-sports__mode-grid p {
  color: #d7cde0;
  font-size: 14px !important;
}
.dbb-sports .dbb-sports__mode-grid strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
}
.dbb-sports .dbb-sports__coverage,
.dbb-sports .dbb-sports__tools {
  border: 0;
  background: rgba(255, 255, 255, 0.92);
}
.dbb-sports .dbb-sports__visual-grid {
  grid-template-columns: repeat(2, 1fr);
}
.dbb-sports .dbb-sports__visual-grid article {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  background: linear-gradient(145deg, #e5fbff, #f7e7ff 55%, #fff2c7);
  box-shadow: 0 15px 35px rgba(52, 44, 74, 0.1);
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(2) {
  background: linear-gradient(145deg, #fff0d1, #ffe4f3 55%, #e8faff);
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(3) {
  background: linear-gradient(145deg, #e7f8ff, #e8f7e9 55%, #fff1c8);
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(4) {
  background: linear-gradient(145deg, #f1e8ff, #ffe9f5 55%, #e4fbf8);
}
.dbb-sports .dbb-sports__visual-grid article::before {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(109, 55, 177, 0.16);
  font-family: "Font Awesome 6 Free";
  font-size: 72px;
  font-weight: 900;
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(1)::before {
  content: "\f1e3";
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(2)::before {
  content: "\f1b0";
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(3)::before {
  content: "\f45e";
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(4)::before {
  content: "\f450";
}
.dbb-sports .dbb-sports__visual-grid article > div {
  position: relative;
  z-index: 1;
  max-width: 82%;
  padding: 30px;
}
.dbb-sports .dbb-sports__visual-grid p {
  font-size: 14px !important;
  line-height: 1.68 !important;
}
.dbb-sports .dbb-sports__tools-grid article,
.dbb-sports .dbb-sports__extended article {
  border: 1px solid rgba(53, 70, 70, 0.08);
  background: linear-gradient(145deg, #fff, #f8f2fb);
  box-shadow: 0 13px 30px rgba(53, 50, 72, 0.07);
}
.dbb-sports .dbb-sports__tools-grid p,
.dbb-sports .dbb-sports__extended p {
  font-size: 14px !important;
}
.dbb-sports .dbb-sports__notice {
  background: linear-gradient(135deg, #261047, #731d6d);
}
@media (max-width: 991px) {
  .dbb-sports .dbb-sports__overview {
    grid-template-columns: 1fr;
  }
  .dbb-sports .dbb-sports__hero figure {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .dbb-sports {
    padding: 85px 0;
  }
  .dbb-sports .dbb-sports__section-title,
  .dbb-sports .dbb-sports__overview {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .dbb-sports .dbb-sports__section-title {
    gap: 12px;
  }
  .dbb-sports .dbb-sports__hero figure {
    height: 330px;
  }
  .dbb-sports .dbb-sports__overview {
    padding: 30px 22px;
  }
  .dbb-sports .dbb-sports__definitions,
  .dbb-sports .dbb-sports__visual-grid {
    grid-template-columns: 1fr;
  }
  .dbb-sports .dbb-sports__visual-grid article > div {
    max-width: 100%;
  }
}
/* Sports structure refinement */
.dbb-sports .dbb-sports__section-title {
  display: block !important;
  margin-bottom: 38px !important;
}
.dbb-sports .dbb-sports__section-title span {
  display: block;
  margin-bottom: 11px;
}
.dbb-sports .dbb-sports__overview {
  align-items: center !important;
}
.dbb-sports .dbb-sports__overview-heading {
  align-self: center;
}
.dbb-sports .dbb-sports__overview-copy {
  align-self: center;
}
.dbb-sports .dbb-sports__mode-grid article > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: linear-gradient(145deg, #2bd3df, #8144e4 58%, #f03fa3);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 21px rgba(20, 3, 43, 0.22);
}
.dbb-sports .dbb-sports__visual-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
.dbb-sports .dbb-sports__visual-grid article {
  min-height: 360px !important;
}
.dbb-sports .dbb-sports__visual-grid article::before {
  display: none !important;
  content: none !important;
}
.dbb-sports .dbb-sports__visual-grid article > i {
  position: absolute;
  top: 25px;
  right: 26px;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: linear-gradient(145deg, #2bd3df, #8144e4 58%, #f03fa3);
  box-shadow: 0 13px 28px rgba(59, 32, 88, 0.2);
  color: #fff;
  font-size: 31px;
  transform: rotate(5deg);
}
.dbb-sports .dbb-sports__visual-grid article:nth-child(even) > i {
  background: linear-gradient(145deg, #ffb83e, #f04a9f 55%, #7946df);
  transform: rotate(-5deg);
}
.dbb-sports .dbb-sports__visual-grid article > div {
  max-width: none !important;
  padding: 118px 30px 30px !important;
}
.dbb-sports .dbb-sports__visual-grid h4 {
  max-width: 90%;
  font-size: 21px !important;
}
.dbb-sports .dbb-sports__more {
  justify-content: center;
}
@media (max-width: 1100px) {
  .dbb-sports .dbb-sports__visual-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .dbb-sports .dbb-sports__visual-grid {
    grid-template-columns: 1fr !important;
  }
  .dbb-sports .dbb-sports__overview {
    gap: 28px !important;
  }
  .dbb-sports .dbb-sports__visual-grid article {
    min-height: 0 !important;
  }
}
/* ==================================================
               DOUBLE BUBBLE MOBILE APP
================================================== */
.dbb-mobile {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(38, 213, 230, 0.18),
      transparent 25%
    ),
    radial-gradient(
      circle at 93% 9%,
      rgba(255, 58, 168, 0.18),
      transparent 27%
    ),
    linear-gradient(180deg, #fff9fc, #f2efff 50%, #edf9f6);
  color: #253e40;
}
.dbb-mobile::before,
.dbb-mobile::after {
  position: absolute;
  border: 2px solid rgba(226, 58, 159, 0.14);
  border-radius: 50%;
  content: "";
}
.dbb-mobile::before {
  top: 220px;
  left: -100px;
  width: 280px;
  height: 280px;
  box-shadow: 0 0 0 38px rgba(41, 210, 227, 0.035);
}
.dbb-mobile::after {
  right: -120px;
  bottom: 300px;
  width: 340px;
  height: 340px;
  box-shadow: 0 0 0 48px rgba(135, 66, 221, 0.035);
}
.dbb-mobile > .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}
.dbb-mobile h2,
.dbb-mobile h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 950;
}
.dbb-mobile__eyebrow,
.dbb-mobile__label,
.dbb-mobile__choice-card > div > span {
  color: #d93898;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-mobile__header {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.dbb-mobile__header h2 {
  margin: 10px 0 0;
  color: #203a40;
  font-size: clamp(45px, 5.3vw, 73px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.dbb-mobile__header > p {
  margin: 0;
  color: #687977;
  font-size: 16px;
  line-height: 1.8;
}
.dbb-mobile__showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 700px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 17% 18%,
      rgba(43, 220, 234, 0.38),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(255, 64, 170, 0.34),
      transparent 30%
    ),
    linear-gradient(145deg, #1d0b41, #4e176a 58%, #7b1c71);
  box-shadow: 0 30px 75px rgba(58, 24, 84, 0.24);
}
.dbb-mobile__phone {
  position: relative;
  z-index: 3;
  width: 310px;
  height: 610px;
  align-self: center;
  justify-self: center;
  padding: 12px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 48px;
  background: linear-gradient(145deg, #19172b, #372553);
  box-shadow:
    0 32px 55px rgba(10, 2, 31, 0.45),
    inset 0 0 0 3px rgba(255, 255, 255, 0.1);
  transform: rotate(-4deg);
}
.dbb-mobile__speaker {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 5;
  width: 78px;
  height: 16px;
  border-radius: 20px;
  background: #171523;
  transform: translateX(-50%);
}
.dbb-mobile__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, #fbf7ff, #f1edfb);
}
.dbb-mobile__screen::before {
  position: absolute;
  top: 105px;
  right: -40px;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(223, 54, 158, 0.16);
  border-radius: 50%;
  content: "";
}
.dbb-mobile__screen-head {
  display: grid;
  grid-template-columns: 45px 1fr 36px;
  gap: 8px;
  align-items: center;
  padding: 42px 18px 15px;
  background: linear-gradient(135deg, #24104b, #721d6d);
  color: #fff;
}
.dbb-mobile__mini-logo {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #21cfe0, #7146e1 52%, #f33fa5);
  font-size: 20px;
}
.dbb-mobile__mini-logo i {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.dbb-mobile__mini-logo i:nth-child(2) {
  top: -4px;
  right: 0;
}
.dbb-mobile__mini-logo i:nth-child(3) {
  bottom: -2px;
  left: 0;
}
.dbb-mobile__screen-head strong {
  font-size: 9px;
  line-height: 1.05;
  letter-spacing: 0.05em;
}
.dbb-mobile__screen-head em {
  color: #ffca4c;
  font-size: 15px;
  font-style: normal;
}
.dbb-mobile__avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}
.dbb-mobile__welcome {
  padding: 21px 18px 12px;
}
.dbb-mobile__welcome small,
.dbb-mobile__welcome b {
  display: block;
}
.dbb-mobile__welcome small {
  color: #8e7d9b;
  font-size: 9px;
}
.dbb-mobile__welcome b {
  margin-top: 4px;
  color: #2b2640;
  font-size: 14px;
}
.dbb-mobile__screen-tabs {
  display: flex;
  gap: 7px;
  padding: 0 18px 16px;
}
.dbb-mobile__screen-tabs span {
  padding: 7px 11px;
  border-radius: 10px;
  background: #e9e3f0;
  color: #776c80;
  font-size: 8px;
  font-weight: 800;
}
.dbb-mobile__screen-tabs .is-active {
  background: linear-gradient(135deg, #ea3ca1, #8244e2);
  color: #fff;
}
.dbb-mobile__game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 0 18px;
}
.dbb-mobile__game-grid article {
  display: flex;
  height: 118px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  flex-direction: column;
  background: linear-gradient(145deg, #dffbff, #f1e6ff 55%, #ffe3f2);
  box-shadow: 0 8px 17px rgba(64, 43, 85, 0.09);
}
.dbb-mobile__game-grid article:nth-child(2) {
  background: linear-gradient(145deg, #fff1ba, #ffe1f1 58%, #e2faff);
}
.dbb-mobile__game-grid article:nth-child(3) {
  background: linear-gradient(145deg, #e0f9ef, #e9e5ff 58%, #ffe6f3);
}
.dbb-mobile__game-grid article:nth-child(4) {
  background: linear-gradient(145deg, #f5e2ff, #ffe6ed 58%, #fff2b9);
}
.dbb-mobile__game-grid i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, #29cad8, #7542dc 55%, #ec3e9f);
  color: #fff;
  font-size: 17px;
}
.dbb-mobile__game-grid b {
  color: #493a57;
  font-size: 9px;
}
.dbb-mobile__screen-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #e1dae7;
  background: rgba(255, 255, 255, 0.92);
  color: #8b7c94;
  font-size: 12px;
}
.dbb-mobile__bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: radial-gradient(
    circle at 28% 22%,
    #fff 0 5%,
    #5ae7ef 10%,
    #8545e1 58%,
    #f540a6
  );
  box-shadow:
    inset -10px -13px 18px rgba(50, 6, 84, 0.25),
    0 14px 28px rgba(10, 2, 34, 0.28);
  color: #fff;
  animation: dbb-mobile-float 5s ease-in-out infinite;
}
.dbb-mobile__bubble--one {
  top: 70px;
  left: 35px;
  width: 90px;
  height: 90px;
}
.dbb-mobile__bubble--two {
  bottom: 75px;
  left: 32px;
  width: 68px;
  height: 68px;
  animation-delay: -2s;
}
.dbb-mobile__bubble--three {
  right: 46%;
  bottom: 45px;
  width: 82px;
  height: 82px;
  animation-delay: -3.5s;
}
.dbb-mobile__showcase-copy {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  padding: 65px 65px 65px 40px;
  flex-direction: column;
  color: #fff;
}
.dbb-mobile__showcase-copy .dbb-mobile__label {
  color: #63edf1;
}
.dbb-mobile__showcase-copy h3 {
  margin: 12px 0 22px;
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}
.dbb-mobile__showcase-copy > p {
  margin: 0 0 15px;
  color: #d8ccdf;
  font-size: 15px;
  line-height: 1.76;
}
.dbb-mobile__stores {
  position: relative;
  z-index: 5;
}
.dbb-mobile__bubble--three {
  display: none !important;
}
.dbb-mobile__stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.dbb-store {
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 13px 25px rgba(11, 2, 33, 0.16);
}
.dbb-store > i {
  font-size: 34px;
}
.dbb-store span > * {
  display: block;
}
.dbb-store small {
  color: #d5cade;
  font-size: 9px;
}
.dbb-store b {
  margin: 1px 0;
  color: #fff;
  font-size: 16px;
}
.dbb-store em {
  color: #bfb2cb;
  font-size: 8px;
  font-style: normal;
}
.dbb-store--apple {
  background: linear-gradient(
    145deg,
    rgba(10, 10, 15, 0.84),
    rgba(46, 42, 60, 0.74)
  );
}
.dbb-store--google > i {
  color: #5de2ef;
}
.dbb-mobile__choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.dbb-mobile__choice-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 34px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(48, 52, 72, 0.1);
}
.dbb-mobile__choice-card > i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #2ed1db, #7444df 57%, #ee40a3);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 25px rgba(84, 50, 170, 0.22);
}
.dbb-mobile__choice-card--browser > i {
  background: linear-gradient(145deg, #ffbd43, #f0509e 56%, #7844df);
}
.dbb-mobile__choice-card h3 {
  margin: 7px 0 11px;
  color: #294244;
  font-size: 25px;
}
.dbb-mobile__choice-card p {
  margin: 0;
  color: #71807e;
  font-size: 14px;
  line-height: 1.68;
}
.dbb-mobile__choice-card ul {
  display: grid;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}
.dbb-mobile__choice-card li {
  position: relative;
  padding-left: 20px;
  color: #5d706e;
  font-size: 12px;
}
.dbb-mobile__choice-card li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d93c9a;
  content: "";
  box-shadow: 0 0 0 4px rgba(217, 60, 154, 0.09);
}
.dbb-mobile__features {
  margin-top: 28px;
  padding: 55px;
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(48, 52, 72, 0.09);
}
.dbb-mobile__features > header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}
.dbb-mobile__features > header h3 {
  margin: 10px 0 0;
  color: #284143;
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.dbb-mobile__features > header > p {
  margin: 0;
  color: #71817e;
  font-size: 15px;
  line-height: 1.72;
}
.dbb-mobile__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.dbb-mobile__feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  padding: 27px;
  border: 1px solid rgba(51, 70, 68, 0.08);
  border-radius: 20px;
  background: linear-gradient(145deg, #f0fbff, #f9edff 57%, #fff3d0);
}
.dbb-mobile__feature-grid article:nth-child(even) {
  background: linear-gradient(145deg, #fff1d4, #ffe8f3 55%, #e9faff);
}
.dbb-mobile__feature-grid article::after {
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(224, 57, 158, 0.12);
  border-radius: 50%;
  content: "";
}
.dbb-mobile__feature-grid i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 18px rgba(66, 46, 87, 0.11);
  color: #8a41d8;
  font-size: 17px;
}
.dbb-mobile__feature-grid h3 {
  margin: 0 0 9px;
  color: #304748;
  font-size: 17px;
}
.dbb-mobile__feature-grid p {
  margin: 0;
  color: #71807e;
  font-size: 13px;
  line-height: 1.65;
}
.dbb-mobile__notice {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 19px;
  background: linear-gradient(135deg, #251047, #751e6d);
  color: #fff;
}
.dbb-mobile__notice > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #5be9ef;
  border-radius: 50%;
  color: #5be9ef;
  font-size: 19px;
}
.dbb-mobile__notice strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.dbb-mobile__notice p {
  margin: 0;
  color: #d7cbe0;
  font-size: 13px;
  line-height: 1.62;
}
@keyframes dbb-mobile-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}
@media (max-width: 991px) {
  .dbb-mobile__header,
  .dbb-mobile__showcase,
  .dbb-mobile__features > header {
    grid-template-columns: 1fr;
  }
  .dbb-mobile__showcase-copy {
    padding: 50px;
  }
  .dbb-mobile__choice {
    grid-template-columns: 1fr;
  }
  .dbb-mobile__feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dbb-mobile {
    padding: 85px 0;
  }
  .dbb-mobile__header {
    gap: 22px;
  }
  .dbb-mobile__showcase {
    min-height: 0;
  }
  .dbb-mobile__phone {
    width: 270px;
    height: 550px;
    margin: 55px auto;
  }
  .dbb-mobile__showcase-copy {
    padding: 38px 23px;
  }
  .dbb-mobile__stores,
  .dbb-mobile__feature-grid {
    grid-template-columns: 1fr;
  }
  .dbb-mobile__choice-card {
    grid-template-columns: 1fr;
    padding: 27px 22px;
  }
  .dbb-mobile__features {
    padding: 35px 22px;
  }
  .dbb-mobile__notice {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-mobile__bubble {
    animation: none;
  }
}
/* ==================================================
          DOUBLE BUBBLE FAQ + BUBBLE BURST
================================================== */
.dbb-faq {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(38, 214, 231, 0.2), transparent 25%),
    radial-gradient(
      circle at 93% 12%,
      rgba(255, 61, 169, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, #fff8fc, #f3efff 52%, #edf9f6);
  color: #294143;
}
.dbb-faq::before,
.dbb-faq::after {
  position: absolute;
  border: 2px solid rgba(222, 55, 156, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.dbb-faq::before {
  top: 200px;
  left: -90px;
  width: 260px;
  height: 260px;
  box-shadow: 0 0 0 38px rgba(49, 214, 227, 0.04);
}
.dbb-faq::after {
  right: -120px;
  bottom: 160px;
  width: 350px;
  height: 350px;
  box-shadow:
    inset -35px -40px 60px rgba(230, 57, 163, 0.045),
    0 0 0 45px rgba(124, 63, 217, 0.035);
}
.dbb-faq > .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}
.dbb-faq__header {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.dbb-faq__eyebrow {
  color: #d93898;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dbb-faq__header h2 {
  margin: 10px 0 0;
  color: #203a40;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.dbb-faq__header > p {
  margin: 0;
  color: #697a78;
  font-size: 16px;
  line-height: 1.8;
}
.dbb-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.dbb-faq__column {
  display: grid;
  gap: 16px;
}
.dbb-faq__item {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(46, 67, 65, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(48, 51, 72, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.dbb-faq__item[open] {
  border-color: rgba(216, 57, 151, 0.24);
  box-shadow: 0 20px 48px rgba(91, 43, 112, 0.13);
  transform: translateY(-2px);
}
.dbb-faq__item summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 22px 22px 22px 25px;
  cursor: pointer;
  list-style: none;
}
.dbb-faq__item summary::-webkit-details-marker {
  display: none;
}
.dbb-faq__item summary > span {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 14px;
  align-items: center;
  color: #2d4546;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.42;
}
.dbb-faq__item summary > span > i {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #dcfaff, #efe7ff 55%, #ffe5f4);
  box-shadow: 0 8px 17px rgba(74, 48, 96, 0.1);
  color: #8341d6;
  font-size: 15px;
}
.dbb-faq__item summary > b {
  position: relative;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ed1dc, #7744df 57%, #ef3fa4);
  box-shadow: 0 9px 20px rgba(94, 51, 174, 0.23);
}
.dbb-faq__item summary > b::before,
.dbb-faq__item summary > b::after {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transition: transform 0.25s ease;
}
.dbb-faq__item summary > b::after {
  transform: rotate(90deg);
}
.dbb-faq__item[open] summary > b::after {
  transform: rotate(0);
}
.dbb-faq__item > div {
  margin: 0 22px 22px;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #eefaff, #f7edff 56%, #fff1d2);
  animation: dbb-faq-answer 0.3s ease both;
}
.dbb-faq__item > div p {
  margin: 0;
  color: #657674;
  font-size: 14px !important;
  line-height: 1.76 !important;
}
.dbb-faq__item[open] summary > span > i {
  background: linear-gradient(145deg, #2ed1dc, #7744df 57%, #ef3fa4);
  color: #fff;
}
.dbb-faq__particle {
  --bubble-start-x: 50%;
  --bubble-start-y: 50%;
  --bubble-angle: 0deg;
  --bubble-distance: 55px;
  --bubble-size: 9px;
  --bubble-delay: 0ms;
  position: absolute;
  z-index: 8;
  left: var(--bubble-start-x);
  top: var(--bubble-start-y);
  display: block;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: radial-gradient(
    circle at 28% 22%,
    #fff 0 9%,
    #58e5ed 16%,
    #8045df 60%,
    #f442a7
  );
  box-shadow: 0 3px 8px rgba(72, 24, 105, 0.25);
  pointer-events: none;
  animation: dbb-faq-burst 0.78s cubic-bezier(0.15, 0.7, 0.2, 1)
    var(--bubble-delay) both;
}
@keyframes dbb-faq-answer {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dbb-faq-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + cos(var(--bubble-angle)) * var(--bubble-distance)),
        calc(-50% + sin(var(--bubble-angle)) * var(--bubble-distance))
      )
      scale(1.15);
  }
}
@media (max-width: 991px) {
  .dbb-faq__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 767px) {
  .dbb-faq {
    padding: 85px 0;
  }
  .dbb-faq__grid {
    grid-template-columns: 1fr;
  }
  .dbb-faq__item summary {
    grid-template-columns: 1fr 38px;
    min-height: 88px;
    padding: 18px;
  }
  .dbb-faq__item summary > span {
    grid-template-columns: 38px 1fr;
    font-size: 14px;
  }
  .dbb-faq__item summary > span > i,
  .dbb-faq__item summary > b {
    width: 38px;
    height: 38px;
  }
  .dbb-faq__item > div {
    margin: 0 15px 15px;
    padding: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-faq__item,
  .dbb-faq__item > div,
  .dbb-faq__particle {
    animation: none !important;
    transition: none !important;
  }
}
/* Balanced desktop section headers and stable FAQ layout */
section[id] {
  scroll-margin-top: 100px;
}

html {
  overflow-anchor: none;
  scroll-behavior: auto;
}

body {
  padding-top: var(--dbb-header-height);
}

.dbb-header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

.dbb-orbit__ring,
.dbb-orbit__core,
.dbb-orbit__bubble,
.dbb-orbit__spark,
.dbb-bingo__floating-ball,
.dbb-bingo__ticket,
.dbb-bingo__ticket .is-marked,
.dbb-slingo .is-hit,
.dbb-casino-playground__bubble,
.dbb-casino-playground__wheel,
.dbb-bonus-orbit__bubble,
.dbb-payment-machine__bubble,
.dbb-crypto-cloud__coin,
.dbb-mobile__bubble {
  animation: none !important;
}

.dbb-header .site-navigation {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media (min-width: 992px) {
  .dbb-overview__header,
  .dbb-bonuses__header,
  .dbb-faq__header {
    width: auto;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
  }

  .dbb-overview__header h2,
  .dbb-bonuses__header h2,
  .dbb-faq__header h2 {
    max-width: 620px;
    font-size: clamp(44px, 4.15vw, 60px);
  }

  .dbb-overview__header > p,
  .dbb-bonuses__header > p,
  .dbb-faq__header > p {
    width: 100%;
    max-width: 560px;
    justify-self: end;
  }
}

.dbb-faq__item summary {
  grid-template-columns: minmax(0, 1fr) 44px;
}

.dbb-faq__item summary::before {
  content: none;
}

.dbb-faq__item summary > span {
  width: 100%;
  min-width: 0;
}

.dbb-faq__item summary > span > i {
  position: static;
  inset: auto;
  transform: none;
}

.dbb-faq__item summary > span > i::before {
  position: static;
  width: auto;
  height: auto;
  background: none;
  content: "?";
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 900;
  transform: none;
}

.dbb-faq__item summary > span > i::after {
  content: none;
}

.dbb-faq__item > div p {
  padding: 0;
}

@media (max-width: 767px) {
  .dbb-faq__item summary {
    grid-template-columns: minmax(0, 1fr) 38px;
  }
}
/* Double Bubble footer */
.dbb-footer {
  padding: 54px 0 0 !important;
  background:
    radial-gradient(
      circle at 7% 15%,
      rgba(37, 211, 227, 0.24),
      transparent 23%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(241, 61, 164, 0.25),
      transparent 26%
    ),
    linear-gradient(145deg, #fff7fc, #f3ecff 54%, #e9fbfa) !important;
  color: #293e43 !important;
}
.dbb-footer::before {
  height: 5px;
  background: linear-gradient(90deg, #27cedc, #7c46df 52%, #ed3fa2) !important;
}
.dbb-footer::after {
  position: absolute;
  right: -80px;
  bottom: 70px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(228, 57, 157, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(43, 208, 222, 0.05);
  content: "";
  pointer-events: none;
}
.dbb-footer > .container {
  width: calc(100% - 40px) !important;
  max-width: 1320px !important;
}
.dbb-footer__main {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr) !important;
  gap: 55px !important;
  padding-bottom: 30px !important;
}
.dbb-footer__brand p,
.dbb-footer__navigation a,
.dbb-footer__responsible p,
.dbb-footer__bottom p,
.dbb-footer__bottom a {
  color: #667a79 !important;
}
.dbb-footer__navigation {
  gap: 28px !important;
}
.dbb-footer__navigation h3,
.dbb-footer__responsible h3 {
  color: #273f43 !important;
}
.dbb-footer__navigation a {
  margin-bottom: 7px !important;
}
.dbb-footer__navigation a:hover,
.dbb-footer__legal a:hover {
  color: #d83998 !important;
}
.dbb-footer__legal {
  padding: 14px 18px !important;
  border-color: rgba(92, 64, 128, 0.1) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}
.dbb-footer__legal span {
  color: #d83b99 !important;
}
.dbb-footer__legal a {
  color: #5e7472 !important;
}
.dbb-footer__responsible {
  margin-top: 14px !important;
  padding: 18px 22px !important;
  border-color: rgba(220, 58, 154, 0.14) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    rgba(244, 232, 255, 0.82),
    rgba(225, 250, 251, 0.84)
  ) !important;
}
.dbb-footer__responsible > strong {
  width: 54px !important;
  height: 54px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, #28d0dd, #7944df 55%, #ed3fa3) !important;
  color: #fff !important;
  box-shadow: 0 9px 22px rgba(105, 58, 162, 0.2);
}
.dbb-footer__payments {
  margin-top: 14px !important;
  padding: 17px 0 20px !important;
  border-color: rgba(87, 66, 113, 0.1) !important;
}
.dbb-footer__payments > div:first-child > span {
  color: #d83998 !important;
}
.dbb-footer__payments > div:first-child > strong {
  color: #425a5b !important;
}
.dbb-footer__pay-icon {
  width: 76px !important;
  height: 48px !important;
  border: 1px solid rgba(104, 69, 134, 0.12) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(64, 47, 83, 0.09) !important;
}
.dbb-footer__pay-icon--card {
  border-color: rgba(44, 75, 193, 0.25) !important;
  background: linear-gradient(145deg, #1857c8, #25338e 58%, #652b94) !important;
}
.dbb-footer__pay-icon--apple {
  background: linear-gradient(145deg, #20222c, #424352) !important;
}
.dbb-footer__pay-icon--google {
  background: linear-gradient(145deg, #fff, #eaf7ff) !important;
}
.dbb-footer__pay-icon--bank {
  border-color: rgba(21, 125, 142, 0.25) !important;
  background: linear-gradient(145deg, #087d94, #176c88 58%, #42419b) !important;
}
.dbb-footer__pay-icon--card img,
.dbb-footer__pay-icon--bank img {
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}
.dbb-footer__pay-icon--google i {
  color: #303743 !important;
}
.dbb-footer__pay-icon--apple i {
  color: #fff !important;
}
.dbb-footer__bottom {
  min-height: 54px !important;
}
@media (max-width: 991px) {
  .dbb-footer__main {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}
.dbb-footer {
  background:
    radial-gradient(
      circle at 9% 12%,
      rgba(51, 225, 235, 0.42),
      transparent 25%
    ),
    radial-gradient(
      circle at 91% 15%,
      rgba(255, 54, 165, 0.48),
      transparent 27%
    ),
    linear-gradient(135deg, #d8f8fb 0%, #e9d9ff 47%, #ffc9e8 100%) !important;
}
.dbb-footer__logo {
  padding: 12px 17px;
  border-radius: 19px;
  background: linear-gradient(135deg, #25104b, #6e1b70);
  box-shadow: 0 12px 28px rgba(77, 37, 104, 0.18);
}
.dbb-footer__logo img {
  width: 230px !important;
}
.dbb-footer__navigation h3 {
  color: #243d43 !important;
  font-weight: 900 !important;
}
.dbb-footer__navigation a {
  color: #506b6c !important;
  font-weight: 650 !important;
}
.dbb-footer__brand p {
  color: #506a6b !important;
  font-weight: 550;
}
.dbb-footer__legal {
  border-color: rgba(98, 55, 134, 0.16) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 8px 24px rgba(77, 45, 95, 0.07);
}
.dbb-footer__responsible {
  border-color: rgba(216, 51, 149, 0.19) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 12px 30px rgba(77, 45, 95, 0.08);
}
.dbb-footer__payments > div:first-child > strong,
.dbb-footer__bottom p,
.dbb-footer__bottom a {
  color: #3f5b5d !important;
}
@media (max-width: 767px) {
  main p,
  main li,
  main details p,
  footer p,
  footer a {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
  main small,
  main [class*="label"],
  main [class*="eyebrow"],
  main [class*="chip"],
  main [class*="tag"] {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  .dbb-header .nav-link {
    font-size: 15px !important;
  }
  .dbb-footer__navigation a,
  .dbb-footer__legal a,
  .dbb-footer__bottom p,
  .dbb-footer__bottom a {
    font-size: 13px !important;
  }
}
