/* ========== Tema / renk değişkenleri (eski variables.css) ========== */
:root {
    /* Ana renkler */
    --primary: #850f83;
    --secondary: #109121;
    --secondary-rgb: 16, 145, 33;
    --primary-rgb: rgba(133, 15, 131, 0.9);
    --primary-rgb2: rgba(133, 15, 131, 0.5);
    --primary-rgb3: rgba(133, 15, 131, 0.3);
    --hover-color: #9e13a0;

    /* Genel arka plan ve metin */
    --darkBG: #000b24;
    --body-bg: #0a0719;
    --white-color: #ffffff;
    --black-color: #000000;
    --darkGray: #1e1e1e;
    --textwhite: 255, 255, 255;

    /* Header ve menü */
    --headerBG: #661760;
    --menuBG: #0b0b24;
    --menu-text: #e0c8ff;

    /* Sidebar ve footer */
    --sidebarBG: #000b24;
    --footer-bg: var(--body-bg);
    --mobileFootIcon: #109121;

    /* Butonlar ve giriş paneli */
    --login-button-bg: #850f83;
    --login-button-text: #fff;
    --btntText: #fff;

    /* Game ve bahis kutuları */
    --betSlipBG: #111111;
    --gameBox: rgba(233, 196, 10, 0.07); /* hafif altın dokunuşlu siyah */
    --oddBox: #e9c40a;
    --oddBoxHover: #cfa708;

    /* Diğer metinler */
    --dropdown-text: #ffffff;
    --tabText: #ffffff;

    /* Layout */
    --max-width: 1440px;
    --base-con: #7a154b;

    /* Yalnızca Casino Royal'de kullanılan font: BetConstruct-Icons. Metin için sistem fontu. */
    --font-sans: Arial, Helvetica, sans-serif;
    --font-icons: BetConstruct-Icons, sans-serif;
}

/* ========== Base stiller ========== */
* {
    box-sizing: border-box;
}

/* Dikey scroll — alan tutmaz, overlay (kaydırma sırasında görünür) */
html {
    scrollbar-gutter: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
}
body {
    -ms-overflow-style: none;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: transparent;
}

a { text-decoration: none; cursor: pointer; transition: all 0.3s; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, ul, li { margin: 0; padding: 0; }
h1 { font-size: 34px; font-weight: 600; }
h2 { font-size: 28px; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }
.btn { font-weight: 400; font-size: 14px; }
button:focus { box-shadow: none !important; outline: none !important; }
.close { font-size: 2rem; font-weight: 400; padding: 0.5rem 1rem !important; margin: -0.6rem -1rem -1rem auto !important; }

.container {
    max-width: var(--max-width, 2620px);
}
body {
    background:
        url("/assets/images/main-bg.jpg") no-repeat fixed center / cover,
        linear-gradient(89deg, #661760 0%, rgb(0, 11, 36) 50%, #0e005a 100%) !important;
    background-color: #0a0719;
    line-height: 20px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    direction: ltr;
    min-height: 100vh;
}

/* All layout wrappers transparent so body background shows through */
.mainContentWrap,
.page-wrapper,
.page-content,
.content-wrapper,
.main-wrapper,
#main-content,
.layout-content,
.inner-page,
.section-wrap {
    background: transparent !important;
}
.bg-primary, .badge-primary { background: var(--primary) !important; }
.btn-primary { background: var(--primary) !important; border-color: var(--primary) !important; color: var(--btntText); box-shadow: none !important; }
.btn-outline-primary { border-color: var(--primary) !important; color: var(--white-color); }
.btn-outline-primary:hover { background: var(--primary) !important; }
/* site menus only — do NOT paint every .active (breaks CM622 profile accordion) */
.mainMenu .active,
.sideSports .active,
.filterRow ul li.active,
.eventTabs .nav-pills .nav-link.active,
.slipTabs .nav-pills .nav-link.active,
.tabsRow .active,
.event-TabRow .active,
.filterTab ul li a.active,
.kycTabs .active,
.cryptoCoinList a.active,
.amoutvalue .active {
    background: var(--hover-color);
}
.form-group { position: relative; }
.badge { padding: .25em .4em .10em; line-height: 14px; }
.backBtn {
    background: var(--darkBG)!important;
    padding: 11px 16px;
    color: var(--white-color);
    margin: -4px 10px 0 0;
}
.breadcrumb {
    background: var(--darkBG);
    align-items: center;
    display: inline-block;
}
.breadcrumb .breadcrumb-item {
    color: var(--primary);
    font-size: 15px;
    display: inline-block;
}
.breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}
.breadcrumb .breadcrumb-item::before {
    content: '|';
    font-size: 20px;
    font-weight: 100;
    color: var(--white-color);
}
.breadcrumb .breadcrumb-item a {
    color: var(--white-color);
    opacity: 0.7;
}
.daterangepicker .ranges li.active,
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background: var(--primary)!important;
}
/* ========== /base stiller ========== */

.btn-primary-bc.loading .btn-text {
    opacity: 0;
}

.btn-primary-bc.loading .loading {
    display: block !important;
}

/* ----- Form / input ortak yapısı (floating label) ----- */
label {
    margin-bottom: 0.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control-label-bc.inputs {
    display: block;
    position: relative;
    width: 100%;
    cursor: text;
}

.form-control-input-bc {
    width: 100%;
    height: 50px;
    padding: 24px 20px 8px 20px;
    font-size: 13px;
    text-indent: 0;
    color: rgba(245, 240, 255, 0.95);
    background: var(--menuBG);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-control-input-bc:focus {
    border-color: var(--secondary);
    background: rgba(81, 33, 223, 0.2);
}

.form-control-input-bc::placeholder {
    color: transparent;
}

select.form-control-input-bc {
    padding: 10px 20px;
}

.form-control-input-stroke-bc {
    display: none;
}

.form-control-title-bc {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: top 0.22s ease-out, transform 0.22s ease-out, color 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1.3;
    will-change: transform;
}

.form-control-label-bc.focused .form-control-title-bc,
.form-control-label-bc.has-value .form-control-title-bc {
    top: 8px;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.75);
}

.form-control-label-bc.focused select.form-control-input-bc,
.form-control-label-bc.has-value select.form-control-input-bc {
    padding: 10px 20px;
}

/* Hata durumu (input) */
.form-control-input-bc.error,
.form-input.error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.08) !important;
}

/* Input altı hata metni – login ve register aynı stil (global) */
.field-error-text,
.login-error-text,
.register-error-text {
    display: none;
    margin-top: 0.3rem;
    padding: 4px 10px 4px 6px;
    font-size: 12px;
    color: #ffffff;
    background-color: #6b2d5c;
    border-radius: 4px;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

@media (max-width: 576px) {
    .form-group {
        margin-bottom: 10px;
    }

    .form-control-input-bc {
        font-size: 14px;
        padding: 24px 10px 8px 10px;
    }

}
/* cache-bust: 20260528042150 */
