/* ============================================================
   Blue Bull Gaming - Frontend Stylesheet
   Font: Poppins
   Body: #DCE8F7 (light blue) | Brand: #155DFC (bright blue)
   ============================================================ */

:root {
    --bbg-primary:       #155DFC;
    --bbg-primary-dark:  #0B3DD4;
    --bbg-primary-light: #8EC5FF;
    --bbg-body-bg:       #DCE8F7;
    --bbg-nav-bg:        rgba(219, 234, 254, 0.97);
    --bbg-section-blue:  rgba(21, 93, 252, 0.60);
    --bbg-footer-blue:   #6B95FB;
    --bbg-text-nav:      #45556C;
    --bbg-text-dark:     #1e293b;
    --bbg-text-white:    #ffffff;
    --bbg-text-on-blue:  rgba(255, 255, 255, 0.92);
    --bbg-card-bg:       rgba(255, 255, 255, 0.18);
    --bbg-border:        rgba(255, 255, 255, 0.30);
    --bs-font-sans-serif: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bbg-body-bg);
    color: var(--bbg-text-dark);
    overflow-x: hidden;
    margin: 0;
}

/* ─── HEADER / NAV ──────────────────────────────────────── */
.bbg-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.bbg-logo { height: 80px; width: auto; object-fit: contain; }
.bbg-logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bbg-primary);
    letter-spacing: -0.5px;
}
.navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.7rem !important;
    border-radius: 6px;
    transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bbg-primary) !important;
    background: transparent;
    font-weight: 600;
}

/* Login = plain text link */
.bbg-btn-login {
    color: var(--bbg-text-nav);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    transition: color 0.2s;
}
.bbg-btn-login:hover { color: var(--bbg-primary); }

/* Join Now = filled blue pill */
.bbg-btn-join {
    background: var(--bbg-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}
.bbg-btn-join:hover {
    background: var(--bbg-primary-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(21, 93, 252, 0.35);
}

/* Mobile toggler */
.navbar-toggler { border-color: rgba(21,93,252,0.3); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2821%2C93%2C252%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
.bbg-announce-bar {
    background: rgba(21, 93, 252, 0.5);
    padding: 10px 0;
    text-align: center;
}
.bbg-announce-bar span {
    background: rgb(21, 93, 252);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 500;
    padding: 8px 25px;
    border-radius: 10px;
    display: inline-block;
    letter-spacing: 0.2px;
}

/* ─── VIDEO HERO ─────────────────────────────────────────── */
.bbg-hero-video {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #0b1124;
}
@media (min-width: 992px) { .bbg-hero-video { height: 560px; } }
.bbg-hero-video__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.bbg-hero-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 40, 0.35);
}

/* Legacy .bbg-hero kept for possible fallback */
.bbg-hero {
    min-height: 500px;
    background: radial-gradient(circle at 50% 60%, #8EC5FF 0%, rgba(239, 246, 255, 0.70) 70%),
                linear-gradient(180deg, #DBEAFE 0%, #C7DCFF 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.bbg-hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(15, 23, 43, 0.35);
    margin-bottom: 1.25rem;
}
.bbg-hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.90);
    max-width: 560px;
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(15, 23, 43, 0.2);
}

/* ─── CTA BAR ────────────────────────────────────────────── */
.bbg-cta-bar {
    background: var(--bbg-section-blue);
    padding: 22px 0;
    text-align: center;
}

/* Dark "Play Now" button */
.bbg-btn-dark {
    background: #1e293b;
    color: #fff;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}
.bbg-btn-dark:hover {
    background: #0f172a;
    color: #fff;
    transform: translateY(-2px);
}

/* ─── PRIMARY & SECONDARY BUTTONS ────────────────────────── */
.bbg-btn-primary {
    background: var(--bbg-primary);
    color: #fff;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(21, 93, 252, 0.30);
}
.bbg-btn-primary:hover {
    background: var(--bbg-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 93, 252, 0.40);
}
.bbg-btn-secondary {
    background: #1e293b;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}
.bbg-btn-secondary:hover {
    background: #0f172a;
    color: #fff;
    transform: translateY(-2px);
}

/* Outline variant for blue bg sections */
.bbg-btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}
.bbg-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}

/* ─── SECTION COMMON ─────────────────────────────────────── */
.bbg-section { padding: 70px 0; }
.bbg-section-sm { padding: 45px 0; }

/* Blue overlay section (the cornflower blue look) */
.bbg-section-blue {
    background: var(--bbg-section-blue);
    padding: 70px 0;
}
/* Light section (almost body color) */
.bbg-section-light {
    background: rgba(21, 93, 252, 0.03);
    padding: 70px 0;
}
/* Tinted section */
.bbg-section-tinted {
    background: rgb(220, 232, 247);
    padding: 70px 0;
}

.bbg-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.bbg-section-title-white {
    color: #fff;
}
.bbg-section-title-dark {
    color: var(--bbg-text-dark);
}
.bbg-section-subtitle {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
}
.bbg-section-subtitle-white {
    color: rgba(255,255,255,0.85);
}
.bbg-section-subtitle-dark {
    color: #64748b;
}
.bbg-label-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

/* ─── GAME FILTER TABS ───────────────────────────────────── */
.bbg-tab-btn {
    background: #fff;
    border: 2px solid rgb(81, 162, 255);
    color: rgb(25, 60, 184);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 45px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.bbg-tab-btn:hover {
    background: rgba(25, 60, 184, 0.08);
    border-color: rgb(25, 60, 184);
}
.bbg-tab-btn.active {
    background: rgb(25, 60, 184);
    border-color: rgb(81, 162, 255);
    color: #fff;
}
@media (max-width: 575px) {
    .bbg-tab-btn { padding: 8px 24px; font-size: 0.85rem; }
}

/* ─── GAME IMAGE CARDS (source-site style — image only) ─── */
.bbg-game-img-card {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    line-height: 0;
}
.bbg-game-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}
.bbg-game-img-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

/* ─── BONUS CARD ─────────────────────────────────────────── */
.bbg-bonus-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 52px 56px 52px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.bbg-bonus-card__left { flex: 1; }
.bbg-bonus-card__right {
    flex-shrink: 0;
    width: 360px;
}
.bbg-bonus-card__right img { width: 100%; height: auto; display: block; }

/* "⬤ NEW PLAYER OFFER" label */
.bbg-bonus-offer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bbg-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.bbg-bonus-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--bbg-primary);
    flex-shrink: 0;
}

/* Two-line heading: black + blue */
.bbg-bonus-heading {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.05;
    color: #111827;
    margin-bottom: 0.9rem;
    letter-spacing: -0.5px;
}
.bbg-bonus-heading span {
    color: var(--bbg-primary);
    display: block;
}

/* Coins text in blue */
.bbg-bonus-coins-text {
    color: var(--bbg-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

/* Claim button */
.bbg-btn-claim {
    display: inline-block;
    background: var(--bbg-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(21,93,252,0.30);
}
.bbg-btn-claim:hover {
    background: var(--bbg-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21,93,252,0.40);
}

@media (max-width: 767px) {
    .bbg-bonus-card { flex-direction: column; padding: 32px 24px; text-align: center; }
    .bbg-bonus-card__right { width: 180px; margin: 0 auto; }
    .bbg-bonus-offer-label { justify-content: center; }
}

/* ─── STATS CARDS ────────────────────────────────────────── */
.bbg-stat-card {
    background: rgba(15, 42, 140, 0.82);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}
.bbg-stat-card .bbg-stat-value {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.bbg-stat-card .bbg-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── SUPPORT CARD ───────────────────────────────────────── */
.bbg-support-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    box-shadow: 0 4px 24px rgba(21,93,252,0.08);
    max-width: 820px;
    margin: 0 auto;
}
.bbg-support-card__icon { font-size: 2.5rem; color: var(--bbg-primary); flex-shrink: 0; margin-top: 4px; }
.bbg-support-card h2 { font-size: 1.5rem; font-weight: 600; color: var(--bbg-text-dark); margin-bottom: 0.6rem; }
.bbg-support-card p { color: #64748b; font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; }
@media (max-width: 575px) {
    .bbg-support-card { flex-direction: column; padding: 24px 20px; }
}

/* ─── GAME CARDS (legacy emoji style) ────────────────────── */
.bbg-game-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.bbg-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.50);
}
.bbg-game-thumb {
    width: 100%;
    padding-bottom: 70%;
    background: linear-gradient(135deg, rgba(21,93,252,0.4) 0%, rgba(21,93,252,0.25) 100%);
    position: relative;
    overflow: hidden;
}
.bbg-game-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.5);
}
.bbg-game-info { padding: 0.85rem 1rem; }
.bbg-game-title { font-weight: 600; font-size: 0.88rem; color: #fff; margin: 0 0 2px; }
.bbg-game-category { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ─── STATS ──────────────────────────────────────────────── */
.bbg-stat-item { text-align: center; padding: 1.25rem; }
.bbg-stat-value {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.bbg-stat-label {
    color: rgba(255,255,255,0.80);
    font-size: 0.82rem;
    margin-top: 0.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ─── FEATURE / WHY CARDS ────────────────────────────────── */
.bbg-feature-list { list-style: none; padding: 0; margin: 0; }
.bbg-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    color: rgb(26, 58, 107);
    font-weight: 500;
}
.bbg-feature-check {
    color: rgb(26, 58, 107);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── WHY CHOOSE white card ──────────────────────────────── */
.bbg-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 600px;
    margin: 0 auto;
}
.bbg-why-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: rgb(26, 58, 107);
    font-weight: 600;
    font-size: 0.97rem;
    border-bottom: 1px solid rgba(200, 223, 245, 0.5);
}
.bbg-why-feature:last-child { border-bottom: none; }
.bbg-why-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgb(21, 93, 252);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ─── OUR GAMES & WHY CHOOSE headings ───────────────────── */
.bbg-games-more-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: rgb(26, 58, 107);
    margin-bottom: 0.6rem;
}
.bbg-games-more-title span { color: var(--bbg-primary); }
.bbg-why-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: rgb(26, 58, 107);
    margin-bottom: 0.6rem;
}
.bbg-why-title span { color: var(--bbg-primary); }
.bbg-section-desc {
    font-size: 1rem;
    color: rgb(69, 85, 108);
    max-width: 680px;
    margin: 0 auto 1.8rem;
    line-height: 1.7;
}

/* ─── STATS CTA BUTTON ──────────────────────────────────── */
.bbg-btn-stats-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1a6dc8, #0d4fa0);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: opacity 0.2s, transform 0.2s;
}
.bbg-btn-stats-cta:hover { opacity: 0.92; color: #fff; transform: scale(1.02); }

/* ─── FAQ label pill ─────────────────────────────────────── */
.bbg-faq-label {
    display: inline-block;
    background: rgb(21, 93, 252);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Card on light bg */
.bbg-card-light {
    background: #fff;
    border: 1px solid rgba(21,93,252,0.12);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
}
.bbg-card-light:hover {
    border-color: rgba(21,93,252,0.30);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(21,93,252,0.12);
}
.bbg-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(21,93,252,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--bbg-primary);
}
.bbg-card-title { font-size: 1.05rem; font-weight: 700; color: var(--bbg-text-dark); margin-bottom: 0.5rem; }
.bbg-card-text { color: #64748b; font-size: 0.88rem; line-height: 1.6; }

/* ─── BONUS SECTION ──────────────────────────────────────── */
.bbg-bonus-box {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(6px);
}
.bbg-bonus-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.bbg-bonus-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.bbg-bonus-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.bbg-accordion .accordion-item {
    background: #fff;
    border: 1.5px solid rgb(200, 223, 245) !important;
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.bbg-accordion .accordion-button {
    background: #fff;
    color: rgb(26, 58, 107);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: none !important;
}
.bbg-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: rgb(21, 93, 252);
    box-shadow: none !important;
}
.bbg-accordion .accordion-button::after {
    filter: none;
}
.bbg-accordion .accordion-body {
    background: #fff;
    color: rgb(69, 85, 108);
    font-size: 0.93rem;
    line-height: 1.7;
    border-top: 1px solid rgba(200, 223, 245, 0.5);
}

/* ─── SUPPORT CTA ────────────────────────────────────────── */
.bbg-support-cta {
    background: rgb(220, 232, 247);
    padding: 60px 0;
    text-align: center;
}
.bbg-support-cta h2 { color: var(--bbg-text-dark); font-weight: 600; font-size: 1.8rem; }
.bbg-support-cta p { color: #64748b; font-size: 0.95rem; max-width: 580px; margin: 0 auto 1.5rem; line-height: 1.7; }
.bbg-btn-support {
    background: var(--bbg-primary);
    color: #fff;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.bbg-btn-support:hover { background: var(--bbg-primary-dark); color: #fff; transform: translateY(-2px); }

/* ─── PAGE HERO (Inner pages) ──────────────────────────── */
.bbg-page-hero {
    padding: 80px 0 50px;
    background: var(--bbg-section-blue);
    position: relative;
    overflow: hidden;
}
.bbg-page-hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 600;
    color: #fff;
}
.bbg-page-hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.bbg-breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.70); font-size: 0.875rem; }
.bbg-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.90); text-decoration: none; }
.bbg-breadcrumb .breadcrumb-item.active { color: #fff; }
.bbg-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.50); }

/* ─── NUMBERED SECTIONS ──────────────────────────────────── */
.bbg-numbered-section { border-left: 3px solid var(--bbg-primary); padding-left: 1.5rem; margin-bottom: 2.5rem; }
.bbg-section-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(21,93,252,0.12);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.bbg-numbered-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--bbg-text-dark); margin-bottom: 0.75rem; }
.bbg-numbered-section p { color: #64748b; line-height: 1.7; }

/* ─── STEP CARDS ──────────────────────────────────────────── */
.bbg-step-card { text-align: center; padding: 2rem 1rem; }
.bbg-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(21,93,252,0.10);
    border: 2px solid var(--bbg-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bbg-primary);
    margin-bottom: 1rem;
}
.bbg-step-card h5 { color: var(--bbg-text-dark); font-weight: 700; margin-bottom: 0.5rem; }
.bbg-step-card p { color: #64748b; font-size: 0.9rem; }

/* ─── PROMOTIONS / TIER CARDS ────────────────────────────── */
.bbg-tier-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.bbg-tier-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-4px); }
.bbg-tier-label { font-size: 0.78rem; color: rgba(255,255,255,0.80); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.bbg-tier-wager { font-size: 1.75rem; font-weight: 600; color: #fff; }
.bbg-tier-bonus { font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,0.90); }

/* ─── FORMS ──────────────────────────────────────────────── */
.bbg-form .form-label { color: var(--bbg-text-dark); font-size: 0.875rem; font-weight: 500; }
.bbg-form .form-control,
.bbg-form .form-select {
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(21,93,252,0.20);
    color: var(--bbg-text-dark);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.bbg-form .form-control:focus,
.bbg-form .form-select:focus {
    background: #fff;
    border-color: var(--bbg-primary);
    color: var(--bbg-text-dark);
    box-shadow: 0 0 0 3px rgba(21,93,252,0.15);
    outline: none;
}
.bbg-form .form-control::placeholder { color: #94a3b8; }
.bbg-form .form-control.is-invalid,
.bbg-form .form-select.is-invalid { border-color: #ef4444; }
.bbg-form .invalid-feedback { color: #dc2626; font-size: 0.8rem; }
.bbg-form textarea.form-control { resize: vertical; min-height: 120px; }

/* ─── CONTACT INFO CARDS ─────────────────────────────────── */
.bbg-contact-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.bbg-contact-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-4px); }
.bbg-contact-icon { font-size: 2rem; color: #fff; margin-bottom: 0.75rem; }
.bbg-contact-card h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.bbg-contact-card p, .bbg-contact-card a { color: rgba(255,255,255,0.80); font-size: 0.9rem; text-decoration: none; }
.bbg-contact-card a:hover { color: #fff; }

/* ─── HOURS TABLE ────────────────────────────────────────── */
.bbg-hours-table { border-collapse: separate; border-spacing: 0 6px; width: 100%; }
.bbg-hours-table tr td { padding: 0.6rem 0.75rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.bbg-hours-table tr td:first-child { color: #fff; font-weight: 500; }
.bbg-hours-table tr td:last-child { color: rgba(255,255,255,0.90); text-align: right; }

/* ─── SUCCESS / ALERT ────────────────────────────────────── */
.bbg-alert-success {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.35);
    border-radius: 10px;
    color: #15803d;
    padding: 1.25rem 1.5rem;
    text-align: center;
}
.bbg-alert-error {
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.30);
    border-radius: 10px;
    color: #dc2626;
    padding: 1rem 1.5rem;
}

/* ─── POLICY CONTENT ─────────────────────────────────────── */
.bbg-policy-content h2 { font-size: 1.35rem; font-weight: 700; color: var(--bbg-primary); margin: 2rem 0 0.75rem; }
.bbg-policy-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--bbg-text-dark); margin: 1.5rem 0 0.5rem; }
.bbg-policy-content p { color: #64748b; line-height: 1.8; margin-bottom: 1rem; }
.bbg-policy-content ul, .bbg-policy-content ol { color: #64748b; line-height: 1.8; padding-left: 1.5rem; }
.bbg-policy-content li { margin-bottom: 0.4rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.bbg-footer {
    background: var(--bbg-footer-blue);
    color: rgb(15, 23, 43);
}
.bbg-footer-logo { max-height: 100px; width: 150px; object-fit: contain; }
.bbg-footer-logo-text { color: rgb(15, 23, 43); font-weight: 700; font-size: 1.1rem; }
.bbg-footer-desc { color: rgb(0, 0, 0); font-size: 1rem; line-height: 1.5; }
.bbg-footer-heading {
    color: rgb(15, 23, 43);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.bbg-footer-download-label {
    color: rgb(0, 0, 0);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.bbg-footer-links { margin: 0; padding: 0; list-style: none; }
.bbg-footer-links li { margin-bottom: 0.15rem; }
.bbg-footer-links a {
    color: rgb(15, 23, 43);
    text-decoration: none;
    font-size: 0.94rem;
    line-height: 1.7;
    display: block;
    transition: color 0.2s;
}
.bbg-footer-links a:hover { color: rgb(21, 93, 252); }
.bbg-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(15,23,43,0.10);
    border: 1px solid rgba(15,23,43,0.20);
    color: rgb(15, 23, 43);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s;
}
.bbg-social-link:hover { background: rgba(15,23,43,0.20); color: rgb(21, 93, 252); }
.bbg-footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(15,23,43,0.15);
    color: rgb(0, 0, 0);
    font-size: 0.875rem;
}

/* ─── PROMOTIONS PAGE (Clean Light Design) ──────────────── */

/* Hero override: solid gradient instead of translucent */
.bbg-promo-hero {
    background: linear-gradient(135deg, #1a3a8f 0%, #0d6efd 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bbg-promo-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.bbg-promo-hero p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 14px; }
.bbg-promo-breadcrumb { display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; color:rgba(255,255,255,0.80); }
.bbg-promo-breadcrumb a { color:rgba(255,255,255,0.80); text-decoration:none; }
.bbg-promo-breadcrumb a:hover { color:#fff; }

/* Meta Bar */
.bbg-promo-meta-bar { background:#fff; border-bottom:1px solid #e8e8e8; padding:11px 0; }
.bbg-promo-meta-inner { display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.bbg-promo-meta-badge { display:flex; align-items:center; gap:6px; font-size:0.82rem; color:#363636; }
.bbg-promo-meta-badge strong { font-weight:700; color:#1a3a8f; margin-left:2px; }
.bbg-promo-meta-divider { width:1px; height:16px; background:#ddddee; }

/* Page body: white background */
.bbg-promo-body { background:#fff; padding:32px 0 60px; }

/* Support Center Header Card */
.bbg-promo-card-wrap { border:1px solid #ddddee; border-radius:6px; overflow:hidden; margin-bottom:22px; }
.bbg-promo-card-header {
    background:#1a3a8f; color:#fff;
    padding:13px 18px;
    border-radius:6px 6px 0 0;
    display:flex; align-items:center; gap:10px;
}
.bbg-promo-card-header .ph-title { font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; line-height:1.2; font-family: 'Poppins', sans-serif; }
.bbg-promo-card-header .ph-sub { font-size:0.75rem; opacity:0.78; margin-top:2px; }
.bbg-promo-card-body { background:#fff; padding:16px 20px; font-size:0.9rem; color:#363636; line-height:1.7; border:1px solid #ddddee; border-top:none; }
.bbg-promo-card-body .brand { font-weight:700; color:#1a3a8f; }

/* Table of Contents */
.bbg-promo-toc { border:1px solid #ddddee; border-radius:6px; padding:16px 20px; margin-bottom:32px; background:#fff; }
.bbg-promo-toc-title { display:flex; align-items:center; gap:8px; font-size:0.72rem; font-weight:700; color:#999; letter-spacing:1px; text-transform:uppercase; margin-bottom:12px; padding-bottom:10px; border-bottom:1px solid #eee; }
.bbg-promo-toc-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px 24px; }
.bbg-promo-toc-item { display:flex; align-items:center; gap:8px; font-size:0.875rem; color:#1a3a8f; text-decoration:none; cursor:pointer; transition:color 0.2s; }
.bbg-promo-toc-item:hover { color:#0d6efd; }
.bbg-promo-toc-dot { width:6px; height:6px; border-radius:50%; background:#1a3a8f; flex-shrink:0; }

/* Section Heading */
.bbg-promo-section-wrap { margin-bottom:36px; }
.bbg-promo-section-heading { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.bbg-promo-num { width:34px; height:34px; background:#1a3a8f; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.8rem; font-weight:700; flex-shrink:0; }
.bbg-promo-section-title { font-size:0.9rem; font-weight:700; color:#1a3a8f; letter-spacing:0.8px; text-transform:uppercase; padding-bottom:5px; border-bottom:2px solid #1a3a8f; }

/* Alert Boxes */
.bbg-promo-alert { display:flex; align-items:flex-start; gap:10px; padding:12px 16px; border-radius:5px; font-size:0.82rem; margin-bottom:18px; line-height:1.55; }
.bbg-promo-alert-info    { background:#e8f0fe; color:#1a3a8f; border-left:4px solid #0d6efd; }
.bbg-promo-alert-success { background:#e8f5e9; color:#2e7d32; border-left:4px solid #4caf50; }
.bbg-promo-alert-warning { background:#fff8e1; color:#795500; border-left:4px solid #ffc107; }
.bbg-promo-alert-danger  { background:#fce8e8; color:#b71c1c; border-left:4px solid #e53935; }
.bbg-promo-alert-icon { font-size:15px; flex-shrink:0; margin-top:1px; }

/* Bullet Point List */
.bbg-promo-list { display:flex; flex-direction:column; }
.bbg-promo-list-item { display:flex; align-items:flex-start; gap:12px; padding:13px 0; border-bottom:1px solid #f0f0f0; font-size:0.88rem; color:#363636; line-height:1.55; }
.bbg-promo-list-item:last-child { border-bottom:none; }
.bbg-promo-dot { width:8px; height:8px; border-radius:50%; background:#1a3a8f; flex-shrink:0; margin-top:5px; }
.bbg-promo-list-item strong { font-weight:700; color:#1a3a8f; }
.bbg-promo-list-item a { color:#1a3a8f; font-weight:600; text-decoration:underline; text-decoration-color:rgba(26,58,143,0.3); }
.bbg-promo-list-item a:hover { text-decoration-color:#1a3a8f; }

/* Reward Tier Cards */
.bbg-promo-tier-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.bbg-promo-tier-card { border:1px solid #ddddee; border-radius:8px; overflow:hidden; }
.bbg-promo-tier-top { padding:24px 16px 16px; text-align:center; }
.bbg-promo-tier-top.dark { background:#1a3a8f; }
.bbg-promo-tier-top.blue { background:#0d7cf2; }
.bbg-promo-tier-top.gold { background:linear-gradient(135deg,#f59e0b,#fbbf24); }
.bbg-promo-tier-label { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.8); margin-bottom:6px; }
.bbg-promo-tier-wager { font-size:2rem; font-weight:600; color:#fff; line-height:1; }
.bbg-promo-tier-body { background:#fff; padding:14px 16px; text-align:center; }
.bbg-promo-tier-bonus-label { font-size:0.72rem; color:#888; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:4px; }
.bbg-promo-tier-bonus { font-size:1.5rem; font-weight:600; color:#1a3a8f; }
.bbg-promo-tier-name { font-size:0.78rem; color:#64748b; margin-top:4px; }

/* Claim Button */
.bbg-promo-btn-claim {
    display:inline-flex; align-items:center; gap:8px;
    background:#155dfc; color:#fff;
    font-size:0.82rem; font-weight:700; letter-spacing:0.5px;
    padding:11px 24px; border-radius:6px;
    text-decoration:none;
    transition:background 0.2s, transform 0.15s;
    margin-top:16px;
}
.bbg-promo-btn-claim:hover { background:#0d4edc; color:#fff; transform:translateY(-1px); }

/* Disclaimer */
.bbg-promo-disclaimer { text-align:center; font-size:0.75rem; color:#aaa; padding:10px 0 20px; }

@media (max-width:768px) {
    .bbg-promo-hero { padding:40px 0; }
    .bbg-promo-tier-grid { grid-template-columns:1fr; gap:12px; }
    .bbg-promo-toc-grid { grid-template-columns:1fr; }
    .bbg-promo-meta-divider { display:none; }
}
@media (max-width:992px) {
    .bbg-promo-tier-grid { grid-template-columns:repeat(2,1fr); }
}

/* ─── SUPPORT PAGE ───────────────────────────────────────── */
.bbg-email-link { color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem; }
.bbg-email-link:hover { text-decoration: underline; color: rgba(255,255,255,0.85); }
.bbg-scenario-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
}
.bbg-scenario-card h6 { color: #fff; font-weight: 700; margin-bottom: 0.25rem; }
.bbg-scenario-card p { color: rgba(255,255,255,0.80); font-size: 0.875rem; margin: 0; }

/* ─── DIVIDER ────────────────────────────────────────────── */
.bbg-divider {
    width: 50px; height: 4px;
    background: var(--bbg-primary);
    border-radius: 2px;
    margin: 0.75rem 0 1.25rem;
}
.bbg-divider-center { margin-left: auto; margin-right: auto; }
.bbg-divider-white { background: rgba(255,255,255,0.60); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bbg-fade-up { animation: fadeInUp 0.55s ease both; }
.bbg-fade-up-delay-1 { animation-delay: 0.1s; }
.bbg-fade-up-delay-2 { animation-delay: 0.2s; }
.bbg-fade-up-delay-3 { animation-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .bbg-hero { padding: 50px 0; }
    .bbg-section, .bbg-section-blue, .bbg-section-light, .bbg-section-tinted { padding: 50px 0; }
    .bbg-form { padding: 0 !important; }
    .bbg-bonus-box { padding: 2rem 1.25rem; }
}

/* ─── SUPPORT PAGE (Clean Light Design) ─────────────────── */

/* Hero — same gradient as promotions page */
.bbg-supp-hero {
    background: linear-gradient(135deg, #1a3a8f 0%, #0d6efd 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bbg-supp-hero h1 { font-size: clamp(2rem,4.5vw,3rem); font-weight:600; color:#fff; margin-bottom:12px; }
.bbg-supp-hero p  { color:rgba(255,255,255,0.88); font-size:1rem; margin-bottom:14px; }
.bbg-supp-breadcrumb { display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; color:rgba(255,255,255,0.80); }
.bbg-supp-breadcrumb a { color:rgba(255,255,255,0.80); text-decoration:none; }
.bbg-supp-breadcrumb a:hover { color:#fff; }

/* Meta Bar */
.bbg-supp-meta-bar  { background:#fff; border-bottom:1px solid #e8e8e8; padding:11px 0; }
.bbg-supp-meta-inner{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.bbg-supp-meta-badge{ display:flex; align-items:center; gap:6px; font-size:0.82rem; color:#363636; }
.bbg-supp-meta-badge strong { font-weight:700; color:#1a3a8f; margin-left:2px; }
.bbg-supp-meta-divider { width:1px; height:16px; background:#ddddee; }

/* Page body — white */
.bbg-supp-body { background:#fff; padding:32px 0 60px; }

/* Page card header (dark-blue) */
.bbg-supp-card-wrap   { border:1px solid #ddddee; border-radius:6px; overflow:hidden; margin-bottom:22px; }
.bbg-supp-card-header { background:#1a3a8f; color:#fff; padding:13px 18px; border-radius:6px 6px 0 0; display:flex; align-items:center; gap:10px; }
.bbg-supp-card-header .sh-title { font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; line-height:1.2; }
.bbg-supp-card-header .sh-sub   { font-size:0.75rem; opacity:0.78; margin-top:2px; }
.bbg-supp-card-body  { background:#fff; padding:16px 20px; font-size:0.9rem; color:#363636; line-height:1.7; border:1px solid #ddddee; border-top:none; }
.bbg-supp-card-body .brand { font-weight:700; color:#1a3a8f; }

/* Table of Contents */
.bbg-supp-toc       { border:1px solid #ddddee; border-radius:6px; padding:16px 20px; margin-bottom:32px; background:#fff; }
.bbg-supp-toc-title { display:flex; align-items:center; gap:8px; font-size:0.72rem; font-weight:700; color:#999; letter-spacing:1px; text-transform:uppercase; margin-bottom:12px; padding-bottom:10px; border-bottom:1px solid #eee; }
.bbg-supp-toc-grid  { display:grid; grid-template-columns:1fr 1fr; gap:8px 24px; }
.bbg-supp-toc-item  { display:flex; align-items:center; gap:8px; font-size:0.875rem; color:#1a3a8f; text-decoration:none; cursor:pointer; transition:color 0.2s; }
.bbg-supp-toc-item:hover { color:#0d6efd; }
.bbg-supp-toc-dot   { width:6px; height:6px; border-radius:50%; background:#1a3a8f; flex-shrink:0; }

/* Section headings */
.bbg-supp-section-wrap    { margin-bottom:36px; }
.bbg-supp-section-heading { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.bbg-supp-num  { width:34px; height:34px; background:#1a3a8f; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.8rem; font-weight:700; flex-shrink:0; }
.bbg-supp-section-title { font-size:0.9rem; font-weight:700; color:#1a3a8f; letter-spacing:0.8px; text-transform:uppercase; padding-bottom:5px; border-bottom:2px solid #1a3a8f; }

/* Alert boxes (reuse promo styles via new namespace) */
.bbg-supp-alert          { display:flex; align-items:flex-start; gap:10px; padding:12px 16px; border-radius:5px; font-size:0.82rem; margin-bottom:18px; line-height:1.55; }
.bbg-supp-alert-info     { background:#e8f0fe; color:#1a3a8f; border-left:4px solid #0d6efd; }
.bbg-supp-alert-success  { background:#e8f5e9; color:#2e7d32; border-left:4px solid #4caf50; }
.bbg-supp-alert-warning  { background:#fff8e1; color:#795500; border-left:4px solid #ffc107; }
.bbg-supp-alert-danger   { background:#fce8e8; color:#b71c1c; border-left:4px solid #e53935; }
.bbg-supp-alert-icon     { font-size:15px; flex-shrink:0; margin-top:1px; }

/* Key Aspect Cards */
.bbg-supp-aspects-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.bbg-supp-aspect-card  { border:1px solid #ddddee; border-radius:8px; overflow:hidden; }
.bbg-supp-aspect-top   { padding:28px 16px 18px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:10px; }
.bbg-supp-aspect-top.dark   { background:linear-gradient(135deg,#1a3a8f,#3358c4); }
.bbg-supp-aspect-top.blue   { background:linear-gradient(135deg,#0d7cf2,#38b6ff); }
.bbg-supp-aspect-top.purple { background:linear-gradient(135deg,#7c3aed,#a78bfa); }
.bbg-supp-aspect-icon  { font-size:32px; line-height:1; }
.bbg-supp-aspect-title { font-size:0.95rem; font-weight:700; color:#fff; letter-spacing:0.3px; }
.bbg-supp-aspect-body  { padding:14px 16px; background:#fff; font-size:0.83rem; color:#363636; line-height:1.65; }

/* Chat Card */
.bbg-supp-chat-card   { border:1px solid #ddddee; border-radius:8px; padding:18px 20px; display:flex; align-items:center; gap:16px; background:#fff; margin-bottom:18px; }
.bbg-supp-chat-avatar { width:48px; height:48px; border-radius:50%; background:#155dfc; color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.bbg-supp-chat-info   { flex:1; min-width:0; }
.bbg-supp-chat-info h4 { font-size:0.95rem; font-weight:700; color:#1a3a8f; margin-bottom:4px; }
.bbg-supp-chat-info p  { font-size:0.82rem; color:#555; line-height:1.5; margin:0; }
.bbg-supp-btn-chat {
    display:inline-flex; align-items:center; gap:7px;
    background:#155dfc; color:#fff;
    font-size:0.78rem; font-weight:700; letter-spacing:0.5px;
    padding:10px 18px; border-radius:6px; white-space:nowrap;
    text-decoration:none; transition:background 0.2s, transform 0.15s;
}
.bbg-supp-btn-chat:hover { background:#0d4edc; color:#fff; transform:translateY(-1px); }

/* Bullet list */
.bbg-supp-list      { display:flex; flex-direction:column; }
.bbg-supp-list-item { display:flex; align-items:flex-start; gap:12px; padding:12px 0; border-bottom:1px solid #f0f0f0; font-size:0.87rem; color:#363636; line-height:1.55; }
.bbg-supp-list-item:last-child { border-bottom:none; }
.bbg-supp-dot  { width:8px; height:8px; border-radius:50%; background:#1a3a8f; flex-shrink:0; margin-top:5px; }
.bbg-supp-list-item strong { font-weight:700; color:#1a3a8f; }
.bbg-supp-list-item a { color:#1a3a8f; font-weight:600; text-decoration:underline; text-decoration-color:rgba(26,58,143,0.3); }
.bbg-supp-list-item a:hover { text-decoration-color:#1a3a8f; }

/* Contact cards (light/white version) */
.bbg-supp-contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.bbg-supp-contact-card { border:1px solid #ddddee; border-radius:8px; padding:26px 16px 18px; text-align:center; background:#fff; transition:box-shadow 0.2s, transform 0.2s; }
.bbg-supp-contact-card:hover { box-shadow:0 4px 16px rgba(26,58,143,0.10); transform:translateY(-2px); }
.bbg-supp-contact-icon  { font-size:28px; display:block; margin-bottom:10px; }
.bbg-supp-contact-label { font-size:0.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:#1a3a8f; margin-bottom:8px; }
.bbg-supp-contact-email { display:block; color:#1a3a8f; font-size:0.82rem; font-weight:600; margin-bottom:5px; text-decoration:underline; text-decoration-color:rgba(26,58,143,0.3); }
.bbg-supp-contact-email:hover { text-decoration-color:#1a3a8f; }
.bbg-supp-contact-purpose { font-size:0.75rem; color:#666; }

/* Disclaimer */
.bbg-supp-disclaimer { text-align:center; font-size:0.75rem; color:#aaa; padding:8px 0 20px; }

/* Responsive */
@media (max-width:992px) {
    .bbg-supp-aspects-grid, .bbg-supp-contact-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .bbg-supp-hero { padding:40px 0; }
    .bbg-supp-aspects-grid, .bbg-supp-contact-grid { grid-template-columns:1fr; gap:12px; }
    .bbg-supp-toc-grid { grid-template-columns:1fr; }
    .bbg-supp-meta-divider { display:none; }
    .bbg-supp-chat-card { flex-direction:column; align-items:flex-start; }
    .bbg-supp-btn-chat { width:100%; justify-content:center; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT US PAGE  –  bbg-contact-*
   ═══════════════════════════════════════════════════════════ */

/* Page wrapper — light blue background, vertically centered */
.bbg-contact-page {
    min-height: calc(100vh - 80px);
    background: #e6edf8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 16px;
}

/* Outer card shell — rounded, shadow */
.bbg-contact-card-wrap {
    width: 100%;
    max-width: 640px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,20,60,0.18);
}

/* ── Dark navy header section ── */
.bbg-contact-card-header {
    background: #1d2f62;
    padding: 32px 36px 30px;
}
.bbg-contact-label-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f0a030;
    margin-bottom: 8px;
}
.bbg-contact-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
    line-height: 1.1;
}
.bbg-contact-card-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.55;
    margin: 0;
}

/* ── White form section ── */
.bbg-contact-card-body {
    background: #ffffff;
    padding: 28px 36px 32px;
}

/* 24h green response banner */
.bbg-contact-response-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 13px 16px;
    margin-bottom: 26px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #15803d;
}
.bbg-contact-response-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

/* Error alert */
.bbg-contact-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.84rem;
    margin-bottom: 20px;
}

/* Form field group */
.bbg-contact-field {
    margin-bottom: 20px;
}
.bbg-contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 8px;
}
.bbg-contact-input {
    width: 100%;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #111827;
    font-size: 0.92rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}
.bbg-contact-input::placeholder {
    color: #9ca3af;
}
.bbg-contact-input:focus {
    border-color: #6b7280;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(107,114,128,0.10);
}
.bbg-contact-input.is-invalid {
    border-color: #f87171;
    background: #fff5f5;
}
textarea.bbg-contact-input {
    resize: vertical;
    min-height: 130px;
}

/* Inline field error */
.bbg-contact-field-error {
    font-size: 0.76rem;
    color: #dc2626;
    margin-top: 5px;
    display: block;
}

/* Submit button — golden amber, full width */
.bbg-contact-btn-submit {
    width: 100%;
    background: #f0a030;
    color: #1a1a1a;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(240,160,48,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.bbg-contact-btn-submit:hover:not(:disabled) {
    background: #dd8e1e;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(240,160,48,0.40);
}
.bbg-contact-btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Privacy text — below the card */
.bbg-contact-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 18px;
    line-height: 1.6;
    max-width: 640px;
    width: 100%;
}
.bbg-contact-privacy a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}
.bbg-contact-privacy a:hover { text-decoration: underline; }

/* Success state */
.bbg-contact-success {
    text-align: center;
    padding: 40px 20px;
}
.bbg-contact-success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}
.bbg-contact-success h3 {
    color: #15803d;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.bbg-contact-success p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 640px) {
    .bbg-contact-card-header { padding: 26px 22px 22px; }
    .bbg-contact-card-body   { padding: 22px 22px 26px; }
    .bbg-contact-card-title  { font-size: 1.6rem; }
    .bbg-contact-page        { padding: 32px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   BECOME A DISTRIBUTOR PAGE  –  bbg-dist-*
   ═══════════════════════════════════════════════════════════ */

/* Steps bar */
.bbg-dist-steps-bar { background: #1d2f62; }
.bbg-dist-steps { display: flex; align-items: stretch; }
.bbg-dist-step {
    flex: 1; display: flex; align-items: center; gap: 14px;
    padding: 18px 24px; position: relative;
}
.bbg-dist-step + .bbg-dist-step::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    height: 40px; width: 1px; background: rgba(255,255,255,0.15);
}
.bbg-dist-step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: #f0a030; color: #1d2f62;
    font-size: 0.88rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bbg-dist-step-title { font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.bbg-dist-step-sub   { font-size: 0.7rem; color: rgba(255,255,255,0.52); margin-top: 2px; }

/* Page body */
.bbg-dist-body { background: #eef1f8; padding: 48px 0 60px; }

/* 2-column layout: content left, sticky form right */
.bbg-dist-layout { display: grid; grid-template-columns: 1fr 420px; gap: 36px; align-items: start; }

/* ── Left column ── */
.bbg-dist-eyebrow {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: #6b7280; display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.bbg-dist-eyebrow::after { content: ''; flex: 1; height: 1px; background: #d1d5db; }

.bbg-dist-heading {
    font-size: 1.9rem; font-weight: 700; color: #111827;
    text-transform: uppercase; line-height: 1.15; margin-bottom: 14px;
}
.bbg-dist-desc { font-size: 0.9rem; color: #4b5563; line-height: 1.7; margin-bottom: 28px; }

/* Feature cards 2×2 */
.bbg-dist-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.bbg-dist-feature-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
    padding: 22px 20px; transition: box-shadow 0.2s;
}
.bbg-dist-feature-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.bbg-dist-feature-icon {
    width: 40px; height: 40px; border-radius: 8px; background: #eff6ff;
    color: #1d2f62; display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; margin-bottom: 12px;
}
.bbg-dist-feature-title { font-size: 0.76rem; font-weight: 600; color: #111827; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.bbg-dist-feature-desc  { font-size: 0.82rem; color: #6b7280; line-height: 1.55; }

/* Requirements card */
.bbg-dist-req-card {
    background: #fff; border: 1px solid #e5e7eb; border-left: 4px solid #f0a030;
    border-radius: 10px; padding: 22px 24px; margin-bottom: 18px;
}
.bbg-dist-req-title {
    font-size: 0.82rem; font-weight: 600; color: #111827;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.bbg-dist-req-title-bar { width: 3px; height: 16px; background: #f0a030; border-radius: 2px; flex-shrink: 0; }
.bbg-dist-req-list { display: flex; flex-direction: column; gap: 10px; }
.bbg-dist-req-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #374151; line-height: 1.5; }
.bbg-dist-req-check { color: #22c55e; font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }

/* 24/7 support card */
.bbg-dist-support-card {
    background: #dbeafe; border: 1px solid #bfdbfe; border-radius: 10px;
    padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px;
}
.bbg-dist-support-icon {
    width: 48px; height: 48px; border-radius: 50%; background: #1d2f62; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.bbg-dist-support-title { font-size: 0.86rem; font-weight: 600; color: #111827; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.bbg-dist-support-desc  { font-size: 0.84rem; color: #374151; line-height: 1.6; }

/* ── Right: Sticky form card ── */
.bbg-dist-right { position: sticky; top: 24px; }
.bbg-dist-form-card { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 40px rgba(10,20,60,0.16); }

/* Form card dark header */
.bbg-dist-form-header { background: #1d2f62; padding: 28px 28px 24px; }
.bbg-dist-form-label  { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #f0a030; margin-bottom: 8px; }
.bbg-dist-form-title  { font-size: 1.55rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 10px; line-height: 1.1; }
.bbg-dist-form-sub    { font-size: 0.82rem; color: rgba(255,255,255,0.50); line-height: 1.55; margin: 0; }

/* Profit banner */
.bbg-dist-profit-banner {
    background: #162453; padding: 15px 28px;
    display: flex; align-items: center; gap: 14px;
}
.bbg-dist-profit-icon  { font-size: 1.55rem; flex-shrink: 0; }
.bbg-dist-profit-title { font-size: 0.78rem; font-weight: 600; color: #f0a030; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.bbg-dist-profit-desc  { font-size: 0.73rem; color: rgba(255,255,255,0.50); }

/* Form body (white) */
.bbg-dist-form-body { background: #fff; padding: 22px 28px 26px; }

/* Fields */
.bbg-dist-field { margin-bottom: 14px; }
.bbg-dist-flabel {
    display: block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; color: #111827; margin-bottom: 6px;
}
.bbg-dist-flabel .req { color: #ef4444; }
.bbg-dist-input {
    width: 100%; background: #f3f4f6; border: 1px solid #e5e7eb;
    border-radius: 7px; color: #111827; font-size: 0.88rem;
    padding: 11px 14px; outline: none; font-family: inherit; box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.bbg-dist-input::placeholder { color: #9ca3af; }
.bbg-dist-input:focus { border-color: #6b7280; background: #fff; box-shadow: 0 0 0 3px rgba(107,114,128,0.08); }
.bbg-dist-input.is-invalid { border-color: #f87171; }
textarea.bbg-dist-input { resize: vertical; min-height: 100px; }
.bbg-dist-field-error { font-size: 0.74rem; color: #dc2626; display: block; margin-top: 4px; }

/* Interest checkboxes */
.bbg-dist-checkbox {
    display: flex; align-items: center; gap: 12px;
    border: 1px solid #e5e7eb; border-radius: 7px; padding: 10px 14px;
    margin-bottom: 8px; cursor: pointer; transition: border-color 0.18s, background 0.18s;
    background: #f3f4f6;
}
.bbg-dist-checkbox:last-child { margin-bottom: 0; }
.bbg-dist-checkbox:hover { border-color: #9ca3af; background: #f9fafb; }
.bbg-dist-checkbox input[type="checkbox"] {
    width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; accent-color: #1d2f62;
}
.bbg-dist-checkbox-text { font-size: 0.88rem; color: #374151; cursor: pointer; }

/* Error alert */
.bbg-dist-error {
    background: #fef2f2; border: 1px solid #fecaca; color: #dc2626;
    border-radius: 7px; padding: 10px 14px; font-size: 0.84rem; margin-bottom: 14px;
}

/* Submit button */
.bbg-dist-btn-submit {
    width: 100%; background: #f0a030; color: #1a1a1a;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    border: none; border-radius: 7px; padding: 15px 20px; cursor: pointer; margin-top: 6px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(240,160,48,0.30);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.bbg-dist-btn-submit:hover:not(:disabled) { background: #dd8e1e; transform: translateY(-1px); }
.bbg-dist-btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Success */
.bbg-dist-success { text-align: center; padding: 36px 20px; }
.bbg-dist-success-icon { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.bbg-dist-success h3 { color: #15803d; font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.bbg-dist-success p  { color: #4b5563; font-size: 0.88rem; line-height: 1.65; }

/* Privacy line */
.bbg-dist-privacy { background: #eef1f8; text-align: center; padding: 0 16px 48px; }
.bbg-dist-privacy p { font-size: 0.8rem; color: #6b7280; }
.bbg-dist-privacy a { color: #3b82f6; text-decoration: none; font-weight: 500; }
.bbg-dist-privacy a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1100px) {
    .bbg-dist-layout { grid-template-columns: 1fr; }
    .bbg-dist-right { position: static; }
}
@media (max-width: 640px) {
    .bbg-dist-steps { flex-wrap: wrap; }
    .bbg-dist-step  { flex-basis: 50%; }
    .bbg-dist-step + .bbg-dist-step::before { display: none; }
    .bbg-dist-features-grid { grid-template-columns: 1fr; }
    .bbg-dist-form-header { padding: 22px 20px 18px; }
    .bbg-dist-form-body   { padding: 18px 20px 22px; }
    .bbg-dist-heading { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   TERMS & CONDITIONS PAGE  –  bbg-terms-*
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.bbg-terms-hero {
    background: linear-gradient(135deg, #3b5de6 0%, #2340d5 100%);
    padding: 60px 0; text-align: center; position: relative; overflow: hidden;
}
.bbg-terms-hero h1  { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 600; color: #fff; margin-bottom: 12px; }
.bbg-terms-hero p   { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-bottom: 14px; }
.bbg-terms-breadcrumb { display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; color:rgba(255,255,255,0.78); }
.bbg-terms-breadcrumb a { color:rgba(255,255,255,0.78); text-decoration:none; font-weight:600; }
.bbg-terms-breadcrumb a:hover { color:#fff; }
.bbg-terms-breadcrumb span { opacity:0.6; }

/* Meta bar */
.bbg-terms-meta-bar   { background:#fff; border-bottom:1px solid #e8e8ee; padding:14px 0; }
.bbg-terms-meta-inner { display:flex; align-items:center; flex-wrap:wrap; }
.bbg-terms-meta-badge {
    display:flex; align-items:center; gap:7px; padding:0 28px;
    font-size:0.84rem; color:#374151;
}
.bbg-terms-meta-badge + .bbg-terms-meta-badge { border-left:1px solid #e5e7eb; }
.bbg-terms-meta-badge strong { color:#2340d5; font-weight:700; }

/* Body */
.bbg-terms-body { background:#eef1f8; padding:40px 0 64px; }

/* Main white card */
.bbg-terms-main { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 2px 20px rgba(0,0,0,0.07); }

/* Card dark-blue header */
.bbg-terms-card-hdr {
    background:#2340d5; padding:20px 28px;
    display:flex; align-items:center; gap:16px;
}
.bbg-terms-card-hdr-icon {
    width:44px; height:44px; background:rgba(255,255,255,0.12); border-radius:8px;
    display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0;
}
.bbg-terms-card-hdr-title { font-size:0.9rem; font-weight:600; color:#fff; text-transform:uppercase; letter-spacing:0.5px; }
.bbg-terms-card-hdr-sub   { font-size:0.75rem; color:rgba(255,255,255,0.52); margin-top:3px; }

/* Card inner body */
.bbg-terms-card-body { padding:28px 32px 36px; }

/* Intro highlight box */
.bbg-terms-intro {
    display:flex; align-items:flex-start; gap:12px;
    border-left:4px solid #3b5de6; background:#f0f4ff;
    border-radius:0 8px 8px 0; padding:15px 20px;
    margin-bottom:28px; font-size:0.9rem; color:#1e293b; line-height:1.7;
}
.bbg-terms-intro-icon { color:#3b5de6; font-size:0.95rem; flex-shrink:0; margin-top:3px; }

/* Table of Contents */
.bbg-terms-toc { border:1px solid #e5e7eb; border-radius:8px; padding:20px 24px; margin-bottom:36px; }
.bbg-terms-toc-title {
    font-size:0.68rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
    color:#6b7280; display:flex; align-items:center; gap:8px;
    margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid #f0f0f0;
}
.bbg-terms-toc-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px 32px; }
.bbg-terms-toc-item {
    display:flex; align-items:center; gap:9px;
    font-size:0.88rem; color:#2340d5; text-decoration:none; transition:color 0.15s;
}
.bbg-terms-toc-item:hover { color:#1a30aa; }
.bbg-terms-toc-num { font-size:0.7rem; font-weight:700; color:#9ca3af; min-width:22px; flex-shrink:0; }

/* Section heading */
.bbg-terms-section         { margin-bottom:36px; }
.bbg-terms-section-heading { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.bbg-terms-section-num {
    background:#e8edf8; color:#2340d5; font-size:0.72rem; font-weight:600;
    padding:5px 12px; border-radius:20px; flex-shrink:0; letter-spacing:0.5px;
}
.bbg-terms-section-title { font-size:0.88rem; font-weight:600; color:#2340d5; text-transform:uppercase; letter-spacing:0.8px; }

/* Alert items */
.bbg-terms-alert {
    display:flex; align-items:flex-start; gap:12px;
    padding:14px 18px; border-radius:0 8px 8px 0;
    margin-bottom:10px; font-size:0.88rem; line-height:1.68;
}
.bbg-terms-alert:last-child { margin-bottom:0; }
.bbg-terms-alert-info    { background:#eff6ff; border-left:4px solid #3b82f6; color:#1e3a5f; }
.bbg-terms-alert-danger  { background:#fff1f2; border-left:4px solid #ef4444; color:#7f1d1d; }
.bbg-terms-alert-success { background:#f0fdf4; border-left:4px solid #22c55e; color:#14532d; }
.bbg-terms-alert-warning { background:#fffbeb; border-left:4px solid #f59e0b; color:#78350f; }
.bbg-terms-alert-icon    { font-size:0.9rem; flex-shrink:0; margin-top:3px; }

/* Bullet items */
.bbg-terms-bullet {
    display:flex; align-items:flex-start; gap:14px;
    border:1px solid #e5e7eb; border-radius:8px;
    padding:13px 18px; margin-bottom:8px; background:#fff;
    font-size:0.88rem; color:#1e293b; line-height:1.68;
}
.bbg-terms-bullet:last-child { margin-bottom:0; }
.bbg-terms-dot        { width:10px; height:10px; border-radius:50%; flex-shrink:0; margin-top:5px; }
.bbg-terms-dot-blue   { background:#3b82f6; }
.bbg-terms-dot-orange { background:#f97316; }
.bbg-terms-dot-red    { background:#ef4444; }
.bbg-terms-dot-green  { background:#22c55e; }

/* Bold in items rendered from **text** */
.bbg-terms-alert strong, .bbg-terms-bullet strong { font-weight:700; }

/* Plain text box (no dot — used in privacy policy paragraphs) */
.bbg-terms-text {
    border:1px solid #e5e7eb; border-radius:8px;
    padding:14px 18px; margin-bottom:8px; background:#fff;
    font-size:0.88rem; color:#1e293b; line-height:1.68;
}
.bbg-terms-text:last-child { margin-bottom:0; }
.bbg-terms-text strong { font-weight:700; }

/* Cookie type card (blue left border, icon + title + body) */
.bbg-terms-cookie {
    border:1px solid #e5e7eb; border-left:4px solid #3b82f6;
    border-radius:0 8px 8px 0; padding:14px 18px;
    margin-bottom:8px; background:#fff;
}
.bbg-terms-cookie:last-child { margin-bottom:0; }
.bbg-terms-cookie-title {
    font-size:0.9rem; font-weight:700; color:#2340d5;
    display:flex; align-items:center; gap:8px; margin-bottom:5px;
}
.bbg-terms-cookie-body { font-size:0.86rem; color:#374151; line-height:1.65; }
.bbg-terms-cookie-body strong { font-weight:700; }

/* Browser pills row */
.bbg-terms-pills-label { font-size:0.88rem; font-weight:600; color:#1e293b; margin-bottom:10px; }
.bbg-terms-pills-wrap  { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:8px; }
.bbg-terms-pill {
    display:inline-flex; align-items:center; gap:6px;
    border:1px solid #e5e7eb; border-radius:6px;
    padding:8px 18px; background:#fff;
    font-size:0.84rem; color:#374151; font-weight:500;
}

/* Responsive */
@media (max-width:768px) {
    .bbg-terms-hero { padding:40px 0; }
    .bbg-terms-toc-grid { grid-template-columns:1fr; }
    .bbg-terms-card-body { padding:20px 18px 28px; }
    .bbg-terms-meta-badge { padding:6px 16px; font-size:0.78rem; }
    .bbg-terms-meta-badge + .bbg-terms-meta-badge { border-left:none; border-top:1px solid #e5e7eb; }
}

/* ============================================================
   REFUND POLICY PAGE  (bbg-refund-*)
   ============================================================ */

.bbg-refund-page {
    background: #e8edf5;
    min-height: 100vh;
    padding: 40px 0 60px;
}

/* ── Hero ── */
.bbg-refund-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #1e3a8a 60%, #1a2a6c 100%);
    border-radius: 18px;
    padding: 48px 56px;
    text-align: center;
    margin-bottom: 28px;
}
.bbg-refund-hero-breadcrumb {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
}
.bbg-refund-hero-breadcrumb a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
}
.bbg-refund-hero-breadcrumb a:hover { color: #fff; }
.bbg-refund-hero-breadcrumb span { color: #f59e0b; margin: 0 6px; }
.bbg-refund-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.bbg-refund-hero-sub {
    font-size: .97rem;
    color: rgba(255,255,255,.75);
    margin: 0;
}

/* ── Stats Bar ── */
.bbg-refund-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.bbg-refund-stat {
    background: #1565c0;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    color: #fff;
}
.bbg-refund-stat-value {
    font-size: 1.65rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}
.bbg-refund-stat-label {
    font-size: .76rem;
    color: rgba(255,255,255,.72);
    margin-top: 5px;
    text-transform: capitalize;
    letter-spacing: .02em;
}

/* ── General + Policy Section Cards ── */
.bbg-refund-general,
.bbg-refund-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 20px;
    box-shadow: 0 2px 14px rgba(30,58,138,.07);
}

/* ── Section header: icon + title ── */
.bbg-refund-sec-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.bbg-refund-sec-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bbg-refund-sec-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a6c;
}

/* ── KEY POLICY POINTS divider ── */
.bbg-refund-divider {
    text-align: center;
    margin: 8px 0 24px;
}
.bbg-refund-divider-title {
    font-size: .88rem;
    font-weight: 600;
    color: #1a2a6c;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.bbg-refund-divider-line {
    width: 44px;
    height: 3px;
    background: #1e3a8a;
    border-radius: 2px;
    margin: 7px auto 0;
}

/* ── Item: text ── */
.bbg-refund-text {
    color: #374151;
    font-size: .96rem;
    line-height: 1.72;
    margin-bottom: 14px;
}
.bbg-refund-text:last-child { margin-bottom: 0; }

/* ── Item: bullet ── */
.bbg-refund-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    font-size: .94rem;
    line-height: 1.65;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}
.bbg-refund-bullet:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bbg-refund-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1e3a8a;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Item: highlight (dark navy box) ── */
.bbg-refund-highlight {
    background: linear-gradient(90deg, #1a2a6c, #1e3a8a);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.bbg-refund-highlight-icon { font-size: 1rem; flex-shrink: 0; }

/* ── Item: alert (amber/warning) ── */
.bbg-refund-alert {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: #92400e;
    margin-bottom: 14px;
}
.bbg-refund-alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Item: note (blue left-border) ── */
.bbg-refund-note {
    background: #f0f7ff;
    border-left: 4px solid #1e3a8a;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    font-size: .92rem;
    color: #1e40af;
    margin-bottom: 14px;
    font-weight: 500;
}
.bbg-refund-note:last-child { margin-bottom: 0; }

/* ── CTA Banner ── */
.bbg-refund-cta {
    background: linear-gradient(135deg, #1a2a6c 0%, #1e3a8a 100%);
    border-radius: 18px;
    padding: 44px 40px;
    text-align: center;
    margin-top: 12px;
}
.bbg-refund-cta-title {
    font-size: 1.65rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.bbg-refund-cta-sub {
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 24px;
}
.bbg-refund-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #1a1a2e;
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}
.bbg-refund-cta-btn:hover {
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

@media (max-width: 900px) {
    .bbg-refund-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .bbg-refund-hero { padding: 32px 20px; }
    .bbg-refund-general,
    .bbg-refund-section { padding: 24px 18px; }
    .bbg-refund-cta { padding: 32px 20px; }
    .bbg-refund-cta-title { font-size: 1.3rem; }
}

/* ============================================================
   DISCLAIMER PAGE  (bbg-disc-*)
   ============================================================ */

/* ── Hero ── */
.bbg-disc-hero {
    background: #1565c0;
    padding: 54px 0 38px;
    text-align: center;
}
.bbg-disc-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.bbg-disc-hero-sub {
    color: rgba(255,255,255,.82);
    font-size: .97rem;
    margin-bottom: 18px;
}
.bbg-disc-hero-breadcrumb {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}
.bbg-disc-hero-breadcrumb a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
}
.bbg-disc-hero-breadcrumb a:hover { color: #fff; }
.bbg-disc-hero-breadcrumb .bbg-disc-sep { color: rgba(255,255,255,.4); margin: 0 7px; }

/* ── Meta Bar ── */
.bbg-disc-meta-bar {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}
.bbg-disc-meta-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.bbg-disc-meta-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .84rem;
    color: #64748b;
    padding: 8px 28px;
    border-right: 1px solid #e5e7eb;
    white-space: nowrap;
}
.bbg-disc-meta-badge:last-child { border-right: none; }
.bbg-disc-meta-badge strong { color: #1565c0; font-weight: 700; }

/* ── Body wrapper ── */
.bbg-disc-body {
    background: #e8edf5;
    padding: 36px 0 60px;
}

/* ── Card shell ── */
.bbg-disc-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(21,101,192,.12);
}

/* ── Card header (solid blue) ── */
.bbg-disc-card-hdr {
    background: #1565c0;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.bbg-disc-card-hdr-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.bbg-disc-card-hdr-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.bbg-disc-card-hdr-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    margin-top: 3px;
}

/* ── Card body ── */
.bbg-disc-card-body {
    background: #fff;
    padding: 32px 36px 40px;
}

/* ── Intro alert (amber) ── */
.bbg-disc-intro {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    font-size: .94rem;
    color: #78350f;
    line-height: 1.68;
}
.bbg-disc-intro-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ── Numbered sections ── */
.bbg-disc-section { margin-bottom: 32px; }
.bbg-disc-section:last-child { margin-bottom: 0; }

.bbg-disc-sec-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.bbg-disc-sec-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 22px;
    padding: 0 7px;
    border-radius: 5px;
    background: #1565c0;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: .04em;
}
.bbg-disc-sec-title {
    font-size: .88rem;
    font-weight: 700;
    color: #1565c0;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ── Content box (bordered, uppercase text) ── */
.bbg-disc-content-box {
    border-left: 4px solid #1565c0;
    background: #f8faff;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    color: #1e293b;
    font-size: .88rem;
    line-height: 1.8;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.bbg-disc-content-box strong { font-weight: 700; }
.bbg-disc-content-box p { margin-bottom: 10px; }
.bbg-disc-content-box p:last-child { margin-bottom: 0; }

/* ── Items below content box (bullet / alert) ── */
.bbg-disc-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    font-size: .94rem;
    line-height: 1.65;
    margin-bottom: 10px;
}
.bbg-disc-bullet:last-child { margin-bottom: 0; }
.bbg-disc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1565c0;
    flex-shrink: 0;
    margin-top: 7px;
}
.bbg-disc-alert {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 13px 17px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .91rem;
    color: #92400e;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .bbg-disc-hero { padding: 36px 0 24px; }
    .bbg-disc-card-hdr { padding: 18px 20px; gap: 12px; }
    .bbg-disc-card-body { padding: 24px 18px 32px; }
    .bbg-disc-meta-badge { padding: 6px 16px; font-size: .8rem; }
    .bbg-disc-meta-badge + .bbg-disc-meta-badge { border-left: none; border-top: 1px solid #e5e7eb; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bbg-body-bg); }
::-webkit-scrollbar-thumb { background: var(--bbg-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--bbg-primary-dark); }

/* ─── BACK TO TOP ─────────────────────────────────────────── */
#bbgBackToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bbg-primary);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(21,93,252,0.30);
}
#bbgBackToTop.visible { opacity: 1; visibility: visible; }
#bbgBackToTop:hover { background: var(--bbg-primary-dark); transform: translateY(-3px); }
