:root { color-scheme: dark; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, Roboto, Arial, sans-serif;
  background-color: #0C1026;
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.bb-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bb-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #F5CA4A;
  color: #0C1026;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
  min-width: 48px;
}

.bb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(246, 201, 71, 0.3);
}

.bb-btn:active {
  transform: translateY(0);
}

.bb-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.bb-section-title::before {
  content: none;
}

header {
  background: rgba(12, 16, 38, 0.95);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(246, 201, 71, 0.1);
  backdrop-filter: blur(10px);
}

.bb-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.bb-logo {
  display: inline-flex;
  align-items: center;
}
.bb-logo img {
  height: 40px;
  width: auto;
}
@media (min-width: 768px) {
  .bb-logo img {
    height: 50px;
  }
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
}

.bb-burger-icon {
  display: block;
  line-height: 1;
}

.bb-nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #F5CA4A;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(12, 16, 38, 0.98);
  border-top: 1px solid rgba(246, 201, 71, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  max-height: 400px;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(246, 201, 71, 0.1);
  color: #F5CA4A;
}

@media (min-width: 768px) {
  .burger-toggle {
    display: none;
  }

  .bb-nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .burger-toggle {
    display: flex;
  }

  .bb-nav-links {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .bb-header-content {
    position: relative;
  }
}

.bb-header-buttons,
nav.bb-header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bb-header-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.bb-btn-login {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2a2f4a;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-btn-login:hover {
  background: #3a3f5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bb-btn-login:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .bb-header-buttons {
    gap: 0.5rem;
  }

  .bb-btn-login,
  .bb-header-cta {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
}

#hero {
  padding: 3.25rem 0;
  background: linear-gradient(135deg, #0C1026 0%, #1a1f3a 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246, 201, 71, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bb-hero-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.bb-hero-content {
  flex: 1;
  text-align: center;
  max-width: 500px;
  margin-bottom: 1rem;
}

.bb-hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 927px;
}

.bb-hero-image img {
  width: 100%;
  max-width: 927px;
  height: auto;
  aspect-ratio: 927/690;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(246, 201, 71, 0.3));
}

.bb-hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(246, 201, 71, 0.1);
  border: 1px solid #F5CA4A;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F5CA4A;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

a.bb-hero-badge:hover {
  background: rgba(246, 201, 71, 0.18);
  transform: translateY(-1px);
}

.bb-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bb-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.bb-bonus-box {
  background: linear-gradient(135deg, #1a1f3a 0%, #252b4a 100%);
  border: 2px solid #F5CA4A;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem auto 0;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(246, 201, 71, 0.2);
}

.bb-bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #F5CA4A;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(246, 201, 71, 0.5);
}

.bb-bonus-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

#games {
  padding: 4.25rem 0;
  background: #0C1026;
}

.bb-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.bb-game-card {
  background: #1a1f3a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: block;
  width: 100%;
}

.bb-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(246, 201, 71, 0.2);
}

.bb-game-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #F5CA4A;
  color: #0C1026;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.bb-game-image {
  width: 100%;
  aspect-ratio: 400/600;
  background: linear-gradient(135deg, #252b4a 0%, #1a1f3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.bb-game-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 38, 0.8) 100%);
}

.bb-sport-image {
  width: 100%;
  aspect-ratio: 360/152;
  background: linear-gradient(135deg, #252b4a 0%, #1a1f3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bb-sport-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 38, 0.8) 100%);
}

.bb-game-info {
  padding: 1rem;
}

.bb-game-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bb-game-provider {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.bb-sports-grid .bb-game-provider br + br {
  display: none;
}
.bb-sports-grid .bb-game-provider br {
  display: block;
  margin-bottom: 0.5rem;
  content: "";
}

#sports {
  padding: 3.75rem 0;
  background: #0C1026;
}
.bb-sports-grid .bb-sport-image {
  aspect-ratio: 360/152;
  overflow: hidden;
}
.bb-sports-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#live-casino {
  padding: 4rem 0;
  background: #0C1026;
}

.bb-facts-block {
  max-width: 900px;
  margin: 2rem auto 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.bb-section-lead {
  max-width: 900px;
  margin: 0.75rem auto 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

#at-a-glance {
  padding: 2rem 0 1rem;
  background: #0C1026;
}

#getting-started {
  padding: 3rem 0 4rem;
  background: #0C1026;
}

@media (max-width: 767px) {
  #trust {
    padding-bottom: 2rem;
  }

  #getting-started {
    padding-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .bb-chip-list--payments {
    margin: 1rem 0 1.5rem;
  }

  .bb-chip-list--withdraw {
    margin: 0.25rem 0 0;
  }
}

.bb-trust-content .bb-facts-title {
  font-size: 1.125rem;
}

.bb-facts-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.bb-facts-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  margin: 0.75rem 0 1.75rem;
}

.bb-facts-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.bb-facts-table th,
.bb-facts-table td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.bb-facts-table th {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  background: rgba(246, 201, 71, 0.08);
  width: 38%;
}

.bb-facts-table td {
  color: rgba(255, 255, 255, 0.86);
  width: 62%;
}

.bb-facts-note {
  margin-top: 0.9rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.bb-facts-subtitle {
  font-size: 1rem;
  font-weight: 800;
  margin: 1.5rem 0 0.75rem;
  text-align: left;
}

#paymentsText .bb-facts-subtitle {
  margin: 1.25rem 0 0.75rem;
}

.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
}

.bb-chip-list--payments {
  margin-top: calc(1rem * 1.3);
  margin-bottom: calc(2.75rem * 1.3);
  margin-left: 0;
  margin-right: 0;
}

.bb-chip-list--withdraw {
  margin: 0.5rem 0 0.5rem;
  gap: 0.45rem 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: normal;
}

.bb-live-casino-text {
  position: relative;
  max-width: 900px;
  margin: 2rem 0 0;
  color: #fff;
  line-height: 1.7;
  font-size: 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  scroll-margin-top: 80px;
}

.bb-live-casino-text p,
.bb-live-casino-text .bb-expandable-content {
  margin: 0;
  color: rgba(255,255,255,0.92);
  overflow: visible;
  max-height: none;
  transition: none;
  -webkit-mask-image: none;
  mask-image: none;
}

#paymentsText {
  text-align: left;
}

.bb-live-casino-text.bb-expanded p,
.bb-live-casino-text.bb-expanded .bb-expandable-content {
  max-height: 1000px;
  -webkit-mask-image: none;
  mask-image: none;
}

.bb-toggle-text {
  display: none !important;
}

.bb-toggle-text::before,
.bb-toggle-text::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 3px solid #F5CA4A;
  border-bottom: 3px solid #F5CA4A;
  transform: translateX(-50%) rotate(-45deg);
  transition: transform 0.3s ease;
}

.bb-toggle-text::before {
  top: 0;
}

.bb-toggle-text::after {
  top: 14px;
}

.bb-live-casino-text.bb-expanded .bb-toggle-text::before,
.bb-live-casino-text.bb-expanded .bb-toggle-text::after {
  transform: translateX(-50%) rotate(135deg);
}

.bb-info-section {
  padding: 4rem 0;
  background: #0C1026;
}

.bb-info-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  line-height: 1.8;
}

.bb-info-card h1,
.bb-info-card h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.bb-info-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.bb-info-card .bb-info-meta {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.bb-info-card ul,
.bb-info-card ol,
.bb-info-list {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.bb-info-card ul li,
.bb-info-card ol li,
.bb-info-list li {
  margin-bottom: 0.5rem;
}

.bb-login-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}

.bb-login-quick-cta {
  display: block;
  width: 100%;
  max-width: 820px;
  text-decoration: none;
}

.bb-login-quick-cta picture,
.bb-login-quick-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.bb-login-quick-cta:hover {
  opacity: 0.92;
}

.bb-login-quick-cta:focus-visible {
  outline: 2px solid rgba(246, 201, 71, 0.9);
  outline-offset: 4px;
  border-radius: 12px;
}

.bb-login-quick-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bb-login-quick-link:hover {
  color: #ffffff;
}

.bb-bonus-list {
  list-style: decimal;
  margin-left: 1.5rem;
}

.bb-bonus-list > li {
  margin-bottom: 1.25rem;
}

.bb-bonus-list p {
  margin-bottom: 0.5rem;
}

.bb-bonus-label {
  display: inline-block;
  font-weight: 700;
  color: #F5CA4A;
  margin-right: 0.4rem;
}

.bb-contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0b0f2a 0%, #14193b 100%);
}

.bb-contact-wrapper {
  background: rgba(8, 12, 28, 0.9);
  border: 1px solid rgba(246, 201, 71, 0.15);
  border-radius: 32px;
  padding: 3rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.bb-contact-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.bb-contact-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.bb-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.bb-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-height: 180px;
}

.bb-contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(246, 201, 71, 0.12);
  border: 1px solid rgba(246, 201, 71, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.bb-contact-link {
  color: #F5CA4A;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.bb-contact-link:hover {
  color: #FFD966;
}

.bb-contact-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.bb-contact-note {
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.bb-faq-section {
  padding: 4rem 0;
  background: #050816;
}

.bb-faq-card {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(8, 12, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
}

.bb-faq-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.bb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
}

.bb-faq-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.bb-faq-indicator::before,
.bb-faq-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #F5CA4A;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.bb-faq-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .bb-faq-indicator::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.bb-faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .bb-faq-answer {
  display: block;
}

@media (max-width: 480px) {
  .bb-info-card {
    padding: 1.75rem;
  }

  .bb-contact-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .bb-live-casino-text {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 1rem 0;
  }
  .bb-live-casino-text p {
    padding: 0;
  }
}

#promotions {
  padding: 4.5rem 0;
  background: #0C1026;
}

.bb-promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bb-promotion-card {
  display: flex;
  flex-direction: column;
  background: #1A1F3A;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bb-promotion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(246, 201, 71, 0.2);
}

.bb-promotion-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #252b4a 0%, #1a1f3a 100%);
  flex-shrink: 0;
}

.bb-promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-promotion-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.bb-promotion-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #00FF66;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bb-promotion-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.bb-promotion-features li {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.bb-promotion-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #00FF66;
  border-radius: 50%;
}

.bb-promotion-btn {
  display: flex;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #F5CA4A;
  color: #0C1026;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.bb-promotion-btn:hover {
  background: #FFD966;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(246, 201, 71, 0.4);
}

.bb-bonuses-section {
  padding: 4rem 0 5rem;
  background: radial-gradient(circle at top, rgba(47, 63, 135, 0.3), transparent 55%), #030613;
}

.bb-bonuses-headline {
  max-width: 760px;
  margin-bottom: 2rem;
}

.bb-bonuses-headline h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bb-bonus-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.bonus-filter {
  border: 1px solid rgba(246, 201, 71, 0.25);
  background: transparent;
  color: #ffffff;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bonus-filter.active,
.bonus-filter:hover {
  background: #f5ca4a;
  color: #0C1026;
  border-color: #f5ca4a;
}

.bb-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.bonus-card {
  position: relative;
  background: #090d21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 201, 71, 0.35);
}

.bonus-card.bb-gradient-cyan { background: linear-gradient(145deg, #072032, #0b1331 45%, #080915); }
.bonus-card.bb-gradient-violet { background: linear-gradient(145deg, #1f0f35, #0f0d2e 45%, #090714); }
.bonus-card.bb-gradient-magenta { background: linear-gradient(145deg, #390a35, #19081e 50%, #0d0812); }
.bonus-card.bb-gradient-green { background: linear-gradient(145deg, #0d2f25, #08151d 45%, #05090f); }
.bonus-card.bb-gradient-lime { background: linear-gradient(145deg, #103a1a, #0a1d12 45%, #050a06); }
.bonus-card.bb-gradient-red { background: linear-gradient(145deg, #3c0c12, #1b080d 45%, #0b0506); }
.bonus-card.bb-gradient-blue { background: linear-gradient(145deg, #0d1f3a, #081225 45%, #050810); }
.bonus-card.bb-gradient-teal { background: linear-gradient(145deg, #054240, #062129 45%, #04090f); }
.bonus-card.bb-gradient-orange { background: linear-gradient(145deg, #41230b, #1c0f08 45%, #0b0605); }

.bb-bonus-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.bonus-card h3 {
  font-size: 1.35rem;
  margin: 0;
  flex: 1 0 auto;
}

.bb-bonus-desc {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  flex: 1;
}

.bb-bonus-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.bb-bonus-btn {
  width: 100%;
  margin-top: auto;
  min-height: 44px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  text-align: center;
  align-self: stretch;
}

@media (min-width: 480px) {
  .bb-promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .bb-promotions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .bb-promotion-content {
    padding: 2rem;
  }

  .bb-promotion-title {
    font-size: 1.75rem;
  }

  .bb-promotion-features li {
    font-size: 0.9375rem;
  }
}

@media (max-width: 360px) {
  .bb-promotion-content {
    padding: 1.25rem;
  }

  .bb-promotion-title {
    font-size: 1.25rem;
  }

  .bb-promotion-features li {
    font-size: 0.8125rem;
  }
}

#trust {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0C1026 100%);
  border-top: 1px solid rgba(246, 201, 71, 0.1);
}

.bb-trust-content {
  text-align: center;
}

.bb-trust-copy {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.bb-payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
  margin: 2rem 0;
}

.bb-payment-icon {
  width: 140px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, background-color 0.2s;
}

.bb-payment-icon:hover {
  border-color: #F5CA4A;
  background: rgba(246, 201, 71, 0.08);
}

.bb-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #F5CA4A;
  color: #0C1026;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-top: 1.5rem;
  border: 3px solid #0C1026;
  box-shadow: 0 4px 12px rgba(246, 201, 71, 0.3);
}

#filter-bar {
  padding: 1.5rem 0;
  background: #0C1026;
}

.bb-category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.bb-category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease-in-out;
  min-width: 120px;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
}

.bb-category-card:hover {
  border-color: #f5ca4a;
  background: rgba(246, 201, 71, 0.05);
  transform: translateY(-2px);
}

.bb-category-card img,
.bb-category-card svg,
.bb-category-card span.emoji {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.bb-category-card span {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .bb-category-card {
    flex: 1 1 45%;
    padding: 0.4rem 0.6rem;
    min-width: auto;
  }
  .bb-category-card span {
    font-size: 0.8rem;
  }
  .bb-category-card img,
  .bb-category-card svg,
  .bb-category-card span.emoji {
    width: 18px;
    height: 18px;
  }
}

#promo-banner {
  padding: 2rem 0 3rem;
}

.bb-promo-banner-text {
  max-width: 900px;
  margin: 0;
  color: #fff;
}

.bb-promo-banner-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 1rem;
}

.bb-promo-banner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.bb-promo-banner-image {
  display: block;
  width: 100%;
  margin: 2rem 0;
}

.bb-promo-banner-image img {
  display: block;
  width: 100%;
  height: auto;
}

.bb-promo-banner-content .bb-btn {
  width: 100%;
  margin-top: 1.25rem;
}

/* Mobile adjustments for better content visibility */
@media (max-width: 480px) {
  #promo-banner {
    margin: 1rem 0.5rem;
    padding: 0 0.5rem;
  }
  
  .bb-promo-banner-content {
    padding: 0 0.5rem;
  }
  
  .bb-promo-banner-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

}

footer {
  background: #0a0d1f;
  padding: 2rem 0;
  border-top: 1px solid rgba(246, 201, 71, 0.1);
}

.bb-footer-content {
  text-align: center;
}

.bb-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.bb-footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.bb-footer-link:hover {
  color: #F5CA4A;
}

.bb-footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}


@media (min-width: 480px) {
  .bb-hero-title {
    font-size: 2.5rem;
  }

  .bb-bonus-amount {
    font-size: 3rem;
  }

  .bb-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .bb-container {
    padding: 0 2rem;
  }

  .bb-section-title {
    font-size: 2.25rem;
  }

  .bb-hero-wrapper {
    flex-direction: row-reverse;
    gap: 3rem;
    align-items: center;
  }

  .bb-hero-content {
    text-align: left;
    max-width: none;
  }

  .bb-hero-badge {
    margin-left: 0;
  }

  .bb-bonus-box {
    margin-left: 0;
    margin-right: 0;
  }

  .bb-hero-image {
    max-width: 927px;
  }

  .bb-hero-title {
    font-size: 3rem;
  }

  .bb-hero-description {
    font-size: 1.25rem;
  }

  .bb-bonus-box {
    padding: 3rem;
  }

  .bb-bonus-amount {
    font-size: 3.5rem;
  }

  .bb-games-grid {
    gap: 1.5rem;
  }

  .bb-game-title {
    font-size: 1rem;
  }

  .bb-payment-icon {
    width: 140px;
    height: 56px;
  }

  #promo-banner {
    height: 480px;
    background-size: cover;
    background-position: right center;
    margin: 2rem;
  }

  .bb-promo-banner-wrapper {
    justify-content: flex-end;
  }

  .bb-promo-banner-content {
    text-align: right;
    max-width: 520px;
  }

  .bb-promo-banner-content .bb-btn {
    margin-left: auto;
    width: auto;
    display: inline-block;
  }

}

@media (min-width: 1024px) {
  .bb-payment-methods {
    flex-wrap: nowrap;
  }

  #promo-banner {
    height: 480px;
    background-size: cover;
    background-position: right center;
    margin: 2rem;
  }
  .bb-promo-banner-wrapper {
    justify-content: flex-start !important;
    padding-left: 6vw !important;
    padding-right: 0 !important;
  }
  .bb-promo-banner-content {
    text-align: left !important;
    max-width: 520px !important;
  }
  .bb-promo-banner-content .bb-btn {
    margin-left: 0 !important;
  }

}

@media (min-width: 1600px) {
  #promo-banner {
    background-position: calc(100% - 250px) center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}

#games .bb-btn,
#sports .bb-btn {
  display: inline-block;
  margin: 2rem auto 0;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
