
/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dbet-gold: #d6b765;
    --dbet-gold-light: #f2da91;
    --dbet-gold-dark: #92722e;
    --dbet-black: #050505;
    --dbet-panel: #111111;
    --dbet-text: #f5f5f5;
    --dbet-muted: #a6a6a6;
    --dbet-border: rgba(214, 183, 101, .32);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: var(--dbet-text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(214,183,101,.25),
            transparent 26%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(214,183,101,.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #030303 0%,
            #090706 50%,
            #020202 100%
        );
}


/* =========================================
   MAIN APP
========================================= */

.dbet_app {
    width: min(100% - 30px, 1180px);
    margin: 0 auto;
    padding: 12px 0 40px;
}


/* =========================================
   HEADER
========================================= */

.dbet_header {
    position: relative;

    background: linear-gradient(
        180deg,
        #111111 0%,
        #060606 100%
    );

    border-radius: 0 0 14px 14px;

    overflow: visible;

    box-shadow:
        0 15px 40px rgba(0,0,0,.65);
}

.dbet_header_top {
    min-height: 65px;

    padding: 10px 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================
   LOGO
========================================= */

.dbet_logo {
    flex-shrink: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 5px;

    color: #eeeeee;

    text-decoration: none;

    text-shadow:
        0 2px 10px rgba(0,0,0,.8);
}

.dbet_logo span {
    color: var(--dbet-gold-light);
}


/* =========================================
   LOGIN AREA
========================================= */

.dbet_login_area {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 7px;
}

.dbet_login_area select,
.dbet_login_area input {
    height: 30px;

    width: 125px;

    padding: 0 9px;

    border: 1px solid #8f9aa0;

    background: #edf1f2;

    color: #222;

    font-size: 11px;

    outline: none;
}

.dbet_login_area select {
    width: 105px;
}

.dbet_login_area select:focus,
.dbet_login_area input:focus {
    border-color: var(--dbet-gold);
}

.dbet_login_btn {
    height: 30px;

    padding: 0 16px;

    border: 1px solid #82909a;

    background:
        linear-gradient(
            180deg,
            #627989 0%,
            #364a57 100%
        );

    color: #ffffff;

    font-size: 11px;
    font-weight: bold;

    cursor: pointer;

    transition: .25s ease;
}

.dbet_login_btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}


/* =========================================
   INFO ROW
========================================= */

.dbet_info_row {
    padding: 0 20px 10px;

    display: grid;

    grid-template-columns: auto 1fr;

    align-items: center;

    gap: 12px;
}

.dbet_datetime {
    color: #c4c4c4;

    font-size: 10px;

    white-space: nowrap;
}

.dbet_ticker {
    height: 20px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            #f3f5f6,
            #d7dde0
        );

    border: 1px solid #92999e;
}

.dbet_ticker span {
    position: absolute;

    left: 0;

    white-space: nowrap;

    line-height: 18px;

    color: #333333;

    font-size: 10px;

    animation:
        dbet_ticker_move
        20s linear infinite;
}

@keyframes dbet_ticker_move {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }

}


/* =========================================
   MOBILE HEADER ACTIONS
========================================= */

.dbet_mobile_header_actions {
    display: none;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.dbet_nav {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    background:
        linear-gradient(
            180deg,
            #e4ce8c 0%,
            #b99d59 52%,
            #e0c987 100%
        );

    border-top: 1px solid #927537;
}

.dbet_nav a {
    min-height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 10px;

    color: #1a160d;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 13px;
    font-weight: bold;

    cursor: pointer;

    transition: .25s ease;
}

.dbet_nav a:hover,
.dbet_nav a.active {

    background:
        linear-gradient(
            180deg,
            #1b1812,
            #090909
        );

    color: var(--dbet-gold-light);
}


/* =========================================
   CONTENT
========================================= */

.dbet_content {
    min-height: 550px;

    padding-top: 12px;
}

.dbet_home_view,
.dbet_page_view {

    animation:
        dbet_fade_in
        .35s ease;
}

@keyframes dbet_fade_in {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   HERO
========================================= */

.dbet_hero_grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        250px;

    gap: 10px;
}


/* =========================================
   IMAGE SLIDER
   NO HYPERLINK
========================================= */

.dbet_slider {

    position: relative;

    height: 390px;

    overflow: hidden;

    background: #111111;

    border-radius: 14px;

    box-shadow:
        0 18px 40px rgba(0,0,0,.45);
}

.dbet_slider_track {

    display: flex;

    width: 100%;
    height: 100%;

    transition:
        transform
        .65s cubic-bezier(.77,0,.18,1);
}

.dbet_slide {

    min-width: 100%;

    width: 100%;
    height: 100%;

    position: relative;
}

.dbet_slide img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;

    -webkit-user-drag: none;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.dbet_slider_arrow {

    position: absolute;

    top: 50%;

    z-index: 5;

    width: 45px;
    height: 75px;

    transform:
        translateY(-50%);

    border: none;

    background:
        rgba(0,0,0,.30);

    color: white;

    font-size: 35px;

    cursor: pointer;

    transition: .25s ease;

    opacity: 0;
}

.dbet_slider:hover
.dbet_slider_arrow {
    opacity: 1;
}

.dbet_slider_arrow:hover {

    background:
        rgba(0,0,0,.70);

    color:
        var(--dbet-gold-light);
}

.dbet_slider_prev {
    left: 0;
}

.dbet_slider_next {
    right: 0;
}


/* =========================================
   SLIDER DOTS
========================================= */

.dbet_slider_dots {

    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 13px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 6px 9px;

    border-radius: 30px;

    background:
        rgba(0,0,0,.20);

    backdrop-filter:
        blur(5px);
}

.dbet_slider_dot {

    width: 7px;
    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50px;

    background:
        rgba(255,255,255,.60);

    cursor: pointer;

    transition: .25s ease;
}

.dbet_slider_dot.active {

    width: 24px;

    background:
        var(--dbet-gold-light);
}


/* =========================================
   SIDE PROMO
   NO HYPERLINK
========================================= */

.dbet_side_promo {

    display: block;

    height: 390px;

    overflow: hidden;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 14px;

    background: #111111;
}

.dbet_side_promo img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;

    user-select: none;

    -webkit-user-drag: none;
}

.dbet_side_promo:hover img {
    transform: scale(1.04);
}


/* =========================================
   CATEGORIES
   NO HYPERLINK
========================================= */

.dbet_categories {

    margin-top: 12px;

    padding: 15px 10px 10px;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #211a16,
            #080808
        );
}

.dbet_category_grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 10px;
}

.dbet_category {

    color:
        var(--dbet-gold-light);

    text-align: center;

    text-decoration: none;

    display: block;

    cursor: default;

    user-select: none;
}

.dbet_category_image {

    height: 110px;

    overflow: hidden;

    background: #151515;

    border-radius: 8px;
}

.dbet_category_image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.dbet_category:hover img {
    transform: scale(1.05);
}

.dbet_category_name {

    display: block;

    padding-top: 9px;

    font-size: 13px;
    font-weight: bold;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.dbet_why_choose {

    margin-top: 15px;

    padding: 25px;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #151515,
            #090909
        );
}

.dbet_why_header {

    margin-bottom: 22px;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        rgba(214,183,101,.20);
}

.dbet_why_header small {

    display: block;

    margin-bottom: 7px;

    color:
        var(--dbet-gold);

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 3px;
}

.dbet_why_header h2 {

    color:
        var(--dbet-gold-light);

    font-size: 24px;

    line-height: 1.2;
}

.dbet_why_header p {

    max-width: 700px;

    margin-top: 8px;

    color:
        var(--dbet-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   WHY CHOOSE ITEMS
========================================= */

.dbet_why_grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.dbet_why_item {

    position: relative;

    padding: 18px 18px 18px 20px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 9px;

    background:
        rgba(255,255,255,.025);

    transition:
        .3s ease;
}

.dbet_why_item:hover {

    border-color:
        rgba(214,183,101,.35);

    background:
        rgba(214,183,101,.045);

    transform:
        translateY(-2px);
}

.dbet_why_item::before {

    content: "";

    position: absolute;

    left: 0;
    top: 15px;
    bottom: 15px;

    width: 3px;

    border-radius: 0 3px 3px 0;

    background:
        linear-gradient(
            180deg,
            var(--dbet-gold-light),
            var(--dbet-gold-dark)
        );
}

.dbet_why_item h3 {

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.3;
}

.dbet_why_item p {

    color:
        var(--dbet-muted);

    font-size: 12px;

    line-height: 1.65;
}

.dbet_why_item a {

    color:
        var(--dbet-gold-light);

    text-decoration: none;

    font-weight: bold;
}

.dbet_why_item a:hover {
    text-decoration: underline;
}


/* =========================================
   PAGE HEADER
========================================= */

.dbet_page_header {

    min-height: 170px;

    padding: 35px 40px;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.95),
            rgba(31,24,14,.72)
        );
}

.dbet_page_header small {

    display: block;

    margin-bottom: 8px;

    color:
        var(--dbet-gold);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;
}

.dbet_page_header h1 {

    color: white;

    font-size: 36px;
}

.dbet_page_header p {

    max-width: 600px;

    margin-top: 12px;

    color:
        var(--dbet-muted);

    line-height: 1.6;
}


/* =========================================
   SECTION
========================================= */

.dbet_section {

    margin-top: 15px;

    padding: 22px;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #151515,
            #090909
        );
}

.dbet_section_title {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.dbet_section_title h2 {

    color:
        var(--dbet-gold-light);

    font-size: 20px;
}

.dbet_back_home {

    padding: 8px 13px;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 6px;

    background: transparent;

    color:
        var(--dbet-gold-light);

    font-size: 11px;

    font-weight: bold;

    cursor: pointer;
}

.dbet_back_home:hover {

    background:
        rgba(214,183,101,.10);
}


/* =========================================
   GAME GRID
   DESKTOP = 7 ITEMS
========================================= */

.dbet_game_grid {

    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    gap: 10px;
}


/* =========================================
   GAME CARD
   NO HYPERLINK
========================================= */

.dbet_game_card {

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 8px;

    background: #111111;

    color: white;

    text-decoration: none;

    display: block;

    cursor: default;

    transition: .3s ease;
}

.dbet_game_card:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--dbet-gold-dark);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.45);
}

.dbet_game_card_image {

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #151515;
}

.dbet_game_card_image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.dbet_game_card:hover
.dbet_game_card_image img {

    transform:
        scale(1.08);
}

.dbet_game_card_info {

    padding: 9px 7px 10px;

    text-align: center;
}

.dbet_game_card_info strong {

    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 11px;
}

.dbet_game_card_info span {

    display: block;

    margin-top: 5px;

    color:
        var(--dbet-gold);

    font-size: 9px;

    font-weight: bold;
}


/* =========================================
   MODAL
========================================= */

.dbet_modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,.78);

    backdrop-filter:
        blur(7px);
}

.dbet_modal.show {
    display: flex;
}

.dbet_modal_box {

    position: relative;

    width:
        min(100%, 700px);

    max-height:
        min(85vh,750px);

    overflow-y: auto;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            #1a1a1a,
            #090909
        );

    box-shadow:
        0 25px 80px
        rgba(0,0,0,.7);
}

.dbet_modal_header {

    padding:
        22px 55px 20px 25px;

    border-bottom:
        1px solid
        var(--dbet-border);
}

.dbet_modal_header small {

    color:
        var(--dbet-gold);

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: bold;
}

.dbet_modal_header h2 {

    margin-top: 7px;

    color: white;

    font-size: 25px;
}

.dbet_modal_close {

    position: absolute;

    top: 14px;
    right: 14px;

    width: 35px;
    height: 35px;

    border:
        1px solid
        var(--dbet-border);

    border-radius: 50%;

    background: #151515;

    color:
        var(--dbet-gold-light);

    font-size: 20px;

    cursor: pointer;
}

.dbet_modal_body {

    padding: 25px;
}

.dbet_modal_body p {

    margin-bottom: 20px;

    color: #bcbcbc;

    font-size: 14px;

    line-height: 1.7;
}

.dbet_rule_item,
.dbet_feature_item {

    margin-bottom: 10px;

    padding: 15px;

    border-left:
        3px solid
        var(--dbet-gold);

    background:
        rgba(255,255,255,.035);
}

.dbet_rule_item strong,
.dbet_feature_item strong {

    display: block;

    margin-bottom: 5px;

    color: white;

    font-size: 14px;
}

.dbet_rule_item span,
.dbet_feature_item span {

    color:
        var(--dbet-muted);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .dbet_hero_grid {

        grid-template-columns:
            minmax(0,1fr)
            210px;
    }

    .dbet_slider,
    .dbet_side_promo {
        height: 340px;
    }

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

    .dbet_game_grid {

        grid-template-columns:
            repeat(4,minmax(0,1fr));
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 680px) {

    .dbet_app {

        width: 100%;

        padding:
            0 10px 30px;
    }

    .dbet_header {

        border-radius:
            0 0 12px 12px;
    }


    /* HEADER */

    .dbet_header_top {

        min-height: auto;

        padding:
            13px 15px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        border-bottom:
            1px solid
            rgba(255,255,255,.06);
    }

    .dbet_logo {

        font-size: 28px;

        letter-spacing: 4px;
    }


    /* MOBILE BUTTONS */

    .dbet_mobile_header_actions {

        display: flex;

        align-items: center;

        gap: 8px;
    }

    .dbet_mobile_menu {

        width: 40px;
        height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        border:
            1px solid
            var(--dbet-border);

        border-radius: 7px;

        background:
            linear-gradient(
                180deg,
                #211b12,
                #12100d
            );

        color:
            var(--dbet-gold-light);

        font-size: 18px;

        cursor: pointer;
    }


    /* LOGIN */

    .dbet_login_area {

        position: absolute;

        top:
            calc(100% + 8px);

        left: 0;
        right: 0;

        z-index: 100;

        display: none;

        grid-template-columns:
            1fr 1fr;

        gap: 8px;

        padding: 12px;

        border:
            1px solid
            var(--dbet-border);

        border-radius: 10px;

        background:
            linear-gradient(
                180deg,
                #191919,
                #0a0a0a
            );

        box-shadow:
            0 18px 40px
            rgba(0,0,0,.65);
    }

    .dbet_login_area.show {
        display: grid;
    }

    .dbet_login_area select,
    .dbet_login_area input,
    .dbet_login_btn {

        width: 100%;

        height: 38px;

        border-radius: 5px;
    }

    .dbet_login_area select {
        grid-column: span 1;
    }

    .dbet_login_area input[type="text"] {
        grid-column: span 1;
    }

    .dbet_login_area input[type="password"] {
        grid-column: span 1;
    }

    .dbet_login_btn {

        grid-column: span 1;

        background:
            linear-gradient(
                180deg,
                #d8b96b,
                #8f6926
            );

        border-color:
            #b9974e;

        color:
            #17120a;
    }


    /* INFO */

    .dbet_info_row {

        padding:
            10px 12px 11px;

        display: flex;

        flex-direction: column;

        gap: 8px;

        align-items: stretch;
    }

    .dbet_datetime {

        text-align: center;

        font-size: 10px;

        color: #bdbdbd;
    }

    .dbet_ticker {

        width: 100%;

        height: 24px;
    }

    .dbet_ticker span {
        line-height: 22px;
    }


    /* NAV */

    .dbet_nav {

        position: absolute;

        top:
            calc(100% + 8px);

        left: 0;
        right: 0;

        z-index: 99;

        display: none;

        grid-template-columns: 1fr;

        overflow: hidden;

        border:
            1px solid
            var(--dbet-border);

        border-radius: 10px;

        background: #111111;

        box-shadow:
            0 20px 40px
            rgba(0,0,0,.65);
    }

    .dbet_nav.show {
        display: grid;
    }

    .dbet_nav a {

        min-height: 48px;

        justify-content:
            flex-start;

        padding:
            0 18px;

        border-bottom:
            1px solid
            rgba(255,255,255,.07);

        background:
            #111111;

        color:
            #dddddd;

        font-size: 12px;
    }

    .dbet_nav a:last-child {
        border-bottom: none;
    }

    .dbet_nav a::before {

        content: "›";

        margin-right: 12px;

        color:
            var(--dbet-gold);

        font-size: 18px;
    }

    .dbet_nav a.active,
    .dbet_nav a:hover {

        background:
            linear-gradient(
                90deg,
                rgba(214,183,101,.16),
                rgba(214,183,101,.03)
            );

        color:
            var(--dbet-gold-light);
    }


    /* HERO */

    .dbet_content {
        padding-top: 10px;
    }

    .dbet_hero_grid {
        grid-template-columns: 1fr;
    }

    .dbet_slider {

        height: auto;

        aspect-ratio:
            16 / 9;

        min-height: 200px;

        border-radius: 10px;
    }

    .dbet_side_promo {

        height: 220px;

        border-radius: 10px;
    }

    .dbet_slider_arrow {

        width: 34px;

        height: 55px;

        font-size: 28px;

        opacity: 1;

        background:
            rgba(0,0,0,.28);
    }


    /* CATEGORIES */

    .dbet_categories {

        padding: 10px;

        border-radius: 10px;
    }

    .dbet_category_grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 8px;
    }

    .dbet_category_image {

        height: 115px;
    }

    .dbet_category:last-child {

        grid-column: span 2;

        width: 50%;

        margin: 0 auto;
    }

    .dbet_category_name {

        padding-top: 8px;

        font-size: 11px;
    }


    /* =====================================
       WHY CHOOSE US MOBILE
    ===================================== */

    .dbet_why_choose {

        margin-top: 10px;

        padding: 15px;

        border-radius: 10px;
    }

    .dbet_why_header {

        margin-bottom: 15px;

        padding-bottom: 14px;
    }

    .dbet_why_header h2 {

        font-size: 20px;
    }

    .dbet_why_header p {

        font-size: 12px;
    }

    .dbet_why_grid {

        grid-template-columns:
            1fr;

        gap: 8px;
    }

    .dbet_why_item {

        padding:
            15px 14px 15px 17px;
    }

    .dbet_why_item h3 {

        font-size: 14px;
    }

    .dbet_why_item p {

        font-size: 11px;

        line-height: 1.6;
    }


    /* PAGE */

    .dbet_page_header {

        min-height: 150px;

        padding: 25px 20px;

        border-radius: 10px;
    }

    .dbet_page_header h1 {
        font-size: 28px;
    }

    .dbet_page_header p {
        font-size: 13px;
    }

    .dbet_section {

        padding: 15px;

        border-radius: 10px;
    }

    .dbet_section_title {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    /* =====================================
       MOBILE GAME GRID
       3 ITEMS PER ROW
    ===================================== */

    .dbet_game_grid {

        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 8px;
    }

    .dbet_game_card {

        min-height: 0;

        border-radius: 7px;
    }

    .dbet_game_card_image {

        aspect-ratio: 1 / 1;

        height: auto;
    }

    .dbet_game_card_info {

        padding:
            7px 4px 8px;
    }

    .dbet_game_card_info strong {

        font-size: 10px;
    }

    .dbet_game_card_info span {

        margin-top: 4px;

        font-size: 8px;
    }


    /* MODAL */

    .dbet_modal {
        padding: 10px;
    }

    .dbet_modal_box {

        max-height: 90vh;

        border-radius: 12px;
    }

    .dbet_modal_header {

        padding:
            18px 50px 18px 18px;
    }

    .dbet_modal_body {
        padding: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .dbet_logo {

        font-size: 24px;

        letter-spacing: 3px;
    }

    .dbet_login_area {
        grid-template-columns: 1fr;
    }

    .dbet_login_area select,
    .dbet_login_area input[type="text"],
    .dbet_login_area input[type="password"],
    .dbet_login_btn {

        grid-column:
            span 1;
    }

    .dbet_slider {
        min-height: 180px;
    }

    .dbet_slider_arrow {

        width: 36px;

        height: 60px;

        font-size: 27px;
    }

    .dbet_game_grid {

        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 6px;
    }

    .dbet_game_card_info strong {
        font-size: 9px;
    }

    .dbet_game_card_info span {
        font-size: 7px;
    }

    .dbet_why_choose {
        padding: 13px;
    }

}


/* =========================================
   ACCESSIBILITY / NON-CLICKABLE IMAGES
========================================= */

.dbet_slide,
.dbet_side_promo,
.dbet_category,
.dbet_game_card {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================
   HIDE SCROLLBAR IN MODAL
========================================= */

.dbet_modal_box::-webkit-scrollbar {
    width: 6px;
}

.dbet_modal_box::-webkit-scrollbar-track {
    background: #0b0b0b;
}

.dbet_modal_box::-webkit-scrollbar-thumb {
    background: #5d4b24;
    border-radius: 10px;
}