/* ═══════════════════════════════════════════════════════════════
   BC.GAME STYLE THEME - Green/White on Dark Background
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
    --bc-green: #26fa90;
    --bc-green-dark: #1bc47a;
    --bc-green-glow: rgba(38, 250, 144, 0.4);
    --bc-green-subtle: rgba(38, 250, 144, 0.1);
    --bc-bg-dark: #232626;
    --bc-bg-darker: #232626;
    --bc-bg-card: #323738;
    --bc-bg-card-hover: #3a4042;
    --bc-bg-sidebar: #232626;
    --bc-border: rgba(255, 255, 255, 0.08);
    --bc-border-green: rgba(0, 135, 81, 0.3);
    --bc-text: #ffffff;
    --bc-text-muted: rgba(255, 255, 255, 0.6);
    --bc-text-dim: rgba(255, 255, 255, 0.35);
    --bc-radius: 12px;
    --bc-radius-lg: 16px;
    --bc-radius-sm: 8px;
    --bc-sidebar-width: 220px;
    --bc-topbar-height: 48px;
}

/* ── BASE RESET ────────────────────────────────────────────────── */
body {
    background: var(--bc-bg-dark) !important;
    color: var(--bc-text) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ── TOP HEADER BAR ────────────────────────────────────────────── */
.bc-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--bc-topbar-height);
    background: var(--bc-bg-darker);
    border-bottom: 1px solid var(--bc-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.bc-topbar__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hamburger */
.bc-sidebar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s;
}

.bc-sidebar-toggle:hover {
    background: var(--bc-bg-card-hover);
    border-color: var(--bc-green);
}

.bc-sidebar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--bc-text);
    border-radius: 2px;
    transition: all 0.2s;
}

.bc-sidebar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bc-sidebar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bc-sidebar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Logo */
.bc-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bc-logo__img {
    height: 40px;
    width: auto;
}

.bc-logo__text {
    font-size: 18px;
    font-weight: 800;
    color: var(--bc-green);
    letter-spacing: -0.5px;
}

.bc-logo__text-blow {
    color: var(--bc-green);
}

/* Wallet Button */
.bc-wallet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
    color: #000 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px var(--bc-green-glow);
}

.bc-wallet-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--bc-green-glow);
    color: #000 !important;
    text-decoration: none;
}

.bc-wallet-btn__label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* User Button */
.bc-user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: 24px;
    padding: 4px 10px 4px 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.bc-user-btn:hover {
    background: var(--bc-bg-card-hover);
    border-color: var(--bc-border-green);
}

.bc-user-btn__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.bc-user-btn__chevron {
    color: var(--bc-text-muted);
}

/* Currency Shower - BC.game style */
.bc-currency {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.bc-currency:hover {
    border-color: var(--bc-border-green);
}

.bc-currency__flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    background: var(--bc-green);
}

.bc-currency__code {
    font-size: 13px;
    font-weight: 700;
    color: var(--bc-text);
}

.bc-currency__symbol {
    font-size: 13px;
    font-weight: 600;
    color: var(--bc-green);
}

.bc-currency__chevron {
    color: var(--bc-text-muted);
    width: 14px;
    height: 14px;
}

/* Auth Buttons Container */
.bc-auth-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sign Up Button - BC.game style */
.bc-btn-signup {
    background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
    border: none;
    color: #000 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px var(--bc-green-glow);
    text-decoration: none;
}

.bc-btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--bc-green-glow);
    color: #000 !important;
    text-decoration: none;
}

.bc-btn-register {
    background: transparent;
    border: 1px solid var(--bc-green);
    color: var(--bc-green) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.bc-btn-register:hover {
    background: var(--bc-green-subtle);
    color: var(--bc-green) !important;
    text-decoration: none;
}

.bc-btn-login {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    color: var(--bc-text) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.bc-btn-login:hover {
    background: var(--bc-bg-card-hover);
    border-color: var(--bc-border-green);
    color: var(--bc-text) !important;
    text-decoration: none;
}

/* ── LEFT SIDEBAR ──────────────────────────────────────────────── */
.bc-sidebar {
    position: fixed;
    top: var(--bc-topbar-height);
    left: 0;
    bottom: 0;
    width: var(--bc-sidebar-width);
    background: var(--bc-bg-darker);
    border-right: 1px solid var(--bc-border);
    z-index: 900;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(0);
    transition: transform 0.3s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bc-sidebar::-webkit-scrollbar {
    display: none;
}

/* Desktop - hide sidebar when closed class is added */
.bc-sidebar.closed {
    transform: translateX(-100%);
}

/* Mobile - hide sidebar by default */
@media (max-width: 1024px) {
    .bc-sidebar {
        transform: translateX(-100%);
    }
    
    .bc-sidebar.active {
        transform: translateX(0);
    }
    
    .bc-sidebar.closed {
        transform: translateX(-100%);
    }
}

.bc-sidebar__inner {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--bc-topbar-height));
    padding: 12px 0;
}

.bc-sidebar__nav {
    flex: 1;
    padding: 0 8px;
}

.bc-sidebar__section-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bc-text-dim);
    padding: 12px 12px 6px;
}

.bc-sidebar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin: 2px 6px;
    border-radius: var(--bc-radius-sm);
    color: var(--bc-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.15s;
    position: relative;
}

.bc-sidebar__item:hover {
    background: var(--bc-bg-card);
    color: var(--bc-text);
    text-decoration: none;
}

.bc-sidebar__item.active {
    background: var(--bc-green-subtle);
    color: var(--bc-green);
    border-left: 3px solid var(--bc-green);
    margin-left: 5px;
    padding-left: 21px;
}

.bc-sidebar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bc-sidebar__icon svg {
    width: 18px;
    height: 18px;
}

.bc-sidebar__label {
    flex: 1;
}

.bc-sidebar__badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.bc-badge--hot {
    background: #ff4757;
    color: #fff;
}

.bc-badge--new {
    background: var(--bc-green);
    color: #000;
}

.bc-sidebar__divider {
    height: 1px;
    background: var(--bc-border);
    margin: 12px 16px;
}

/* Sidebar Auth CTA */
.bc-sidebar__auth-cta {
    padding: 16px;
    margin: 8px;
    background: var(--bc-bg-card);
    border-radius: var(--bc-radius);
    border: 1px solid var(--bc-border);
    text-align: center;
}

.bc-sidebar__auth-text {
    font-size: 13px;
    color: var(--bc-text-muted);
    margin: 0 0 12px;
}

.bc-sidebar__auth-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
    border: none;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.2s;
}

.bc-sidebar__auth-btn:hover {
    box-shadow: 0 4px 15px var(--bc-green-glow);
}

.bc-sidebar__login-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--bc-border);
    color: var(--bc-text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.bc-sidebar__login-btn:hover {
    border-color: var(--bc-green);
    color: var(--bc-green);
}

/* Sidebar Promo */
.bc-sidebar__promo {
    padding: 12px;
    margin: 8px;
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.15), rgba(0, 135, 81, 0.05));
    border: 1px solid var(--bc-border-green);
    border-radius: var(--bc-radius);
}

.bc-sidebar__promo-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-sidebar__promo-icon {
    font-size: 28px;
}

.bc-sidebar__promo-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--bc-green);
}

.bc-sidebar__promo-sub {
    font-size: 11px;
    color: var(--bc-text-muted);
}

/* Sidebar Overlay (Mobile) */
.bc-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 850;
}

.bc-sidebar-overlay.active {
    display: block;
}

/* ── MAIN CONTENT AREA ─────────────────────────────────────────── */
.bc-main {
    margin-left: 0;
    margin-top: var(--bc-topbar-height);
    min-height: calc(100vh - var(--bc-topbar-height));
    background: var(--bc-bg-dark);
    overflow-x: hidden;
}

/* Game page container fix */
body.crash-page .main-container,
body.crash-page .container-scroller {
    margin-left: var(--bc-sidebar-width) !important;
    margin-top: var(--bc-topbar-height) !important;
    min-height: calc(100vh - var(--bc-topbar-height)) !important;
}

@media (max-width: 1024px) {
    body.crash-page .main-container,
    body.crash-page .container-scroller {
        margin-left: 0 !important;
    }
}

/* Desktop - show sidebar by default */
@media (min-width: 1025px) {
    .bc-main {
        margin-left: var(--bc-sidebar-width);
    }
}

/* ── SLIDER / BANNER ───────────────────────────────────────────── */
.bc-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--bc-radius-lg);
    margin: 16px;
}

.bc-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.bc-slider__slide {
    min-width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bc-bg-card), var(--bc-bg-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bc-slider__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--bc-green-subtle), transparent 60%);
}

/* Dark overlay for text visibility */
.bc-slider__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 35%) 0%, rgb(0 0 0 / 61%) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .bc-slider__slide {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .bc-slider__slide {
        height: 200px;
    }
}

.bc-slider__content {
    display: none;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.bc-slider__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--bc-text);
    margin: 0 0 8px;
}

.bc-slider__title span {
    color: var(--bc-green);
}

.bc-slider__subtitle {
    font-size: 14px;
    color: var(--bc-text-muted);
    margin: 0 0 16px;
}

.bc-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
    color: #000 !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px var(--bc-green-glow);
}

.bc-slider__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--bc-green-glow);
    color: #000 !important;
    text-decoration: none;
}

.bc-slider__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.bc-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bc-text-dim);
    cursor: pointer;
    transition: all 0.2s;
}

.bc-slider__dot.active {
    background: var(--bc-green);
    width: 24px;
    border-radius: 4px;
}

/* ── TOP GAMES CAROUSEL ────────────────────────────────────────── */
.bc-section {
    padding: 20px 16px;
}

.bc-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bc-section__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bc-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-section__title-icon {
    color: var(--bc-green);
}

.bc-section__viewall {
    font-size: 13px;
    color: var(--bc-green);
    text-decoration: none;
    font-weight: 600;
}

.bc-section__viewall:hover {
    text-decoration: underline;
    color: var(--bc-green);
}

/* Games Carousel */
.bc-games-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.bc-games-carousel::-webkit-scrollbar {
    height: 4px;
}

.bc-games-carousel::-webkit-scrollbar-track {
    background: var(--bc-bg-card);
    border-radius: 2px;
}

.bc-games-carousel::-webkit-scrollbar-thumb {
    background: var(--bc-green);
    border-radius: 2px;
}

/* Game Card */
.bc-game-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: var(--bc-bg-card);
    border-radius: var(--bc-radius);
    overflow: hidden;
    border: 1px solid var(--bc-border);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.bc-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--bc-border-green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.bc-game-card__thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--bc-bg-darker);
    overflow: hidden;
}

.bc-game-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bc-game-card:hover .bc-game-card__thumb img {
    transform: scale(1.05);
}

.bc-game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.bc-game-card__badge--hot {
    background: #ff4757;
    color: #fff;
}

.bc-game-card__badge--new {
    background: var(--bc-green);
    color: #000;
}

.bc-game-card__play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.bc-game-card:hover .bc-game-card__play {
    opacity: 1;
}

.bc-game-card__play-btn {
    background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-game-card__body {
    padding: 12px;
}

.bc-game-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--bc-text);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-game-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-game-card__provider {
    font-size: 11px;
    color: var(--bc-text-dim);
}

.bc-game-card__rtp {
    font-size: 11px;
    color: var(--bc-green);
    font-weight: 600;
}

/* ── GAMES GRID ────────────────────────────────────────────────── */
.bc-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.bc-footer {
    background: var(--bc-bg-darker);
    border-top: 1px solid var(--bc-border);
    margin-left: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (min-width: 1025px) {
    .bc-footer {
        margin-left: var(--bc-sidebar-width);
        width: calc(100% - var(--bc-sidebar-width));
    }
}

.bc-footer__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
}

.bc-footer__top {
    padding: 50px 0;
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.bc-footer__brand {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 180px;
}

.bc-footer__logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.bc-footer__logo-img {
    height: 50px;
    width: auto;
}

.bc-footer__logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--bc-green);
}

.bc-footer__tagline {
    font-size: 13px;
    color: var(--bc-text-muted);
    line-height: 1.7;
    margin: 0 100px 20px 0px;
}

.bc-footer__social {
    display: flex;
    gap: 10px;
}

.bc-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: 50%;
    color: var(--bc-text-muted);
    transition: all 0.2s;
}

.bc-footer__social-link:hover {
    background: var(--bc-green);
    border-color: var(--bc-green);
    color: #000;
}

.bc-footer__links {
    flex: 1;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.bc-footer__col {
    min-width: 140px;
}

.bc-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bc-text);
    margin: 0 0 16px;
}

.bc-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bc-footer__list li a {
    font-size: 13px;
    color: var(--bc-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.bc-footer__list li a:hover {
    color: var(--bc-green);
}

/* Compliance Footer - 2 Column Layout */
.bc-footer__compliance {
    display: flex;
    gap: 48px;
    width: 100%;
    flex-wrap: wrap;
}

.bc-footer__compliance-col {
    flex: 1;
    min-width: 280px;
}

.bc-footer__compliance-col--left {
    max-width: 400px;
}

.bc-footer__compliance-col--center {
    flex: 1.5;
    min-width: 280px;
}

.bc-footer__compliance-col--right {
    max-width: 400px;
}

.bc-footer__links-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bc-footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-footer__link-group a {
    font-size: 13px;
    color: var(--bc-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.bc-footer__link-group a:hover {
    color: var(--bc-green);
    text-decoration: underline;
}

.bc-footer__link-group a {
    font-size: 13px;
    color: var(--bc-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.bc-footer__link-group a:hover {
    color: var(--bc-green);
    text-decoration: underline;
}

.bc-footer__brand-desc {
    font-size: 14px;
    color: var(--bc-text-muted);
    line-height: 1.7;
    margin: 16px 0;
}

.bc-footer__compliance-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.bc-footer__compliance-links a {
    font-size: 13px;
    color: var(--bc-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.bc-footer__compliance-links a:hover {
    color: var(--bc-green);
    text-decoration: underline;
}

.bc-footer__dot {
    width: 3px;
    height: 3px;
    background: var(--bc-text-dim);
    border-radius: 50%;
}

.bc-footer__age-notice {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-footer__age-text {
    font-size: 12px;
    color: var(--bc-text-dim);
}

.bc-footer__compliance-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--bc-text);
    margin: 0 0 16px;
    letter-spacing: 0.5px;
}

.bc-footer__compliance-text {
    font-size: 13px;
    color: var(--bc-text-muted);
    line-height: 1.7;
    margin: 0 0 12px;
}

.bc-footer__compliance-text:last-child {
    margin-bottom: 0;
}

.bc-footer__compliance-text strong {
    color: var(--bc-text);
    font-weight: 600;
}

.bc-footer__compliance-text--play-responsible {
    color: var(--bc-green);
    font-size: 12px;
}

/* Payment Strip */
.bc-footer__payments {
    background: var(--bc-bg-card);
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
    padding: 16px 0;
}

.bc-footer__payments .bc-footer__container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bc-footer__payments-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--bc-text-dim);
}

.bc-footer__payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bc-pay-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bc-border);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Bottom */
.bc-footer__bottom {
    padding: 20px 0;
}

.bc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.bc-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--bc-green);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    color: var(--bc-green);
}

.bc-footer__copy {
    font-size: 12px;
    color: var(--bc-text-dim);
    margin: 0;
}

.bc-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-footer__license {
    font-size: 12px;
    color: var(--bc-text-muted);
}

.bc-footer__license-dot {
    width: 4px;
    height: 4px;
    background: var(--bc-green);
    border-radius: 50%;
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bc-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .bc-sidebar.active {
        transform: translateX(0);
    }
    
    .bc-sidebar-toggle {
        display: flex;
    }
    
    .bc-main {
        margin-left: 0;
    }
    
    .bc-footer {
        margin-left: 0;
    }
    
    .bc-sidebar-overlay.active + .bc-sidebar,
    .bc-sidebar.active {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .bc-footer__top {
        flex-direction: column;
        gap: 32px;
    }
    
    .bc-footer__compliance {
        flex-direction: column;
        gap: 32px;
    }
    
    .bc-footer__compliance-col--left,
    .bc-footer__compliance-col--center,
    .bc-footer__compliance-col--right {
        max-width: 100%;
    }
    
    .bc-footer__links-grid {
        gap: 16px 32px;
    }
    
    .bc-footer__brand {
        flex: 0 0 auto;
    }
    
    .bc-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bc-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .bc-game-card {
        flex: 0 0 140px;
    }
}

@media (max-width: 480px) {
    .bc-btn-register {
        display: none;
    }
    
    .bc-wallet-btn__label {
        display: none;
    }
    
    .bc-slider__title {
        font-size: 22px;
    }
    
    .bc-game-card {
        flex: 0 0 120px;
    }
}

/* ── PROFILE DROPDOWN FIX ──────────────────────────────────────── */
.profile-dropdown {
    background: var(--bc-bg-card) !important;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.profile-dropdown .profile-head {
    background: var(--bc-bg-darker);
    border-bottom: 1px solid var(--bc-border);
}

.profile-dropdown .profile-name {
    color: var(--bc-text) !important;
}

.profile-dropdown li a {
    color: var(--bc-text-muted) !important;
}

.profile-dropdown li a:hover {
    background: var(--bc-bg-card-hover) !important;
    color: var(--bc-green) !important;
}

.profile-dropdown li a .ico {
    color: var(--bc-green) !important;
}

/* ── MOBILE BOTTOM NAVIGATION ──────────────────────────────────── */
.bc-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bc-bg-darker);
    border-top: 1px solid var(--bc-border);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.bc-mobile-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.bc-mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--bc-text-muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.2s;
    min-width: 60px;
}

.bc-mobile-nav__item:hover,
.bc-mobile-nav__item.active {
    color: var(--bc-green);
    text-decoration: none;
}

.bc-mobile-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.bc-mobile-nav__icon svg {
    width: 22px;
    height: 22px;
}

.bc-mobile-nav__item--wallet {
    background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
    color: #000 !important;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-top: -20px;
    box-shadow: 0 4px 15px var(--bc-green-glow);
}

.bc-mobile-nav__item--wallet .bc-mobile-nav__icon {
    width: 22px;
    height: 22px;
}

.bc-mobile-nav__item--wallet .bc-mobile-nav__icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .bc-mobile-nav {
        display: block;
    }
    
    .bc-main {
        padding-bottom: 80px;
    }
    
    .bc-footer {
        padding-bottom: 80px;
    }
    
    .bc-sidebar-toggle {
        display: flex;
    }
    
    .bc-topbar__right .bc-currency {
        display: none;
    }
    
    .bc-topbar__right .bc-wallet-btn {
        display: none;
    }
    
    .bc-topbar__right .bc-user-btn {
        display: none;
    }
    
    .bc-auth-btns {
        gap: 6px;
    }
    
    .bc-btn-login,
    .bc-btn-signup {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .bc-mobile-nav {
        display: none !important;
    }
}

/* ── MODERN USER DROPDOWN ─────────────────────────────────────── */
.bc-user-dropdown {
    position: relative;
}

.bc-user-dropdown .bc-user-btn {
    padding: 4px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: 50%;
    cursor: pointer;
}

.bc-user-dropdown .bc-user-btn:hover {
    border-color: var(--bc-border-green);
}

.bc-user-dropdown .bc-user-btn__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.bc-dropdown-menu {
    min-width: 220px;
    background: var(--bc-bg-card) !important;
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0;
    margin-top: 8px;
}

.bc-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bc-bg-darker);
    border-bottom: 1px solid var(--bc-border);
}

.bc-dropdown-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.bc-dropdown-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--bc-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.bc-dropdown-id {
    font-size: 12px;
    color: var(--bc-text-muted);
}

.bc-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--bc-text-muted);
    transition: all 0.15s;
}

.bc-dropdown-menu .dropdown-item:hover {
    background: var(--bc-bg-card-hover);
    color: var(--bc-green);
}

.bc-dropdown-menu .dropdown-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bc-dropdown-menu .dropdown-divider {
    border-color: var(--bc-border);
    margin: 0;
}

.bc-dropdown-menu .text-danger {
    color: #ff6b6b !important;
}

.bc-dropdown-menu .text-danger:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b !important;
}
