html {
    font-size: 20px;
}

body {
    font-size  : 14px;
    line-height: 24px;
    font-weight: 400;
    background : #141418;
    color      : white;
    position   : relative;
}

body::after {
    left     : auto;
    right    : 12px;
    transform: rotateY(180deg);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row>* {
    padding-left : 10px;
    padding-right: 10px;
}

.row {
    margin-left : -10px;
    margin-right: -10px;
}

a {
    transition     : 0.3s;
    color          : var(--color1);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: unset;
    color          : var(--color1);
}

img {
    max-width : 100%;
    object-fit: contain;
}

ul {
    list-style: none;
    padding   : 0;
    margin    : 0;
}

:root {
    --color1             : #F60;
    --color2             : #FFB328;
    --btn-color1         : #FF8A00;
    --btn-color2         : #4DE761;
    --btn-color3         : #FFE500;
    --btn-color4         : #00E1E1;
    --scroll-bar-bg-color: #353535;
}


/* Works on Chrome, Edge, and Safari */

.content-intro::-webkit-scrollbar {
    width : 2px;
    height: 32px;
}

.content-intro::-webkit-scrollbar-track {
    background: var(--scroll-bar-bg-color);
}

.content-intro::-webkit-scrollbar-thumb {
    background-color: var(--color1);
    border-radius   : 12px;
}

.btn {
    background       : var(--btn-color1);
    border-radius    : 8px;
    /* box-shadow    : 0px 2px 6.3px 0px rgba(255, 138, 0, 0.30), 0px -3px 4px 0px rgba(255, 138, 0, 0.30), 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25) inset; */
    color            : #151515;
    line-height      : 20px;
    padding          : 12px 10px;
    width            : 195px;
    border           : 0;
    font-size        : 16px;
    transition       : .2s;
    text-transform   : capitalize;
    font-weight      : 700;
}

.btn a {
    color: inherit;
}

.btn2 {
    background: var(--btn-color2);
    box-shadow: 0px 2px 6.3px 0px rgba(173, 255, 47, 0.40), 0px -3px 4px 0px rgba(173, 255, 47, 0.40), 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25) inset;
}


/* Header */

#header {
    padding: 44px 0 24px;
}

#header .logo {
    position: relative;
    z-index : 99;
    display : inline-block;
}

.g-imgtop.pc {
    max-height: 67px;
}


/* Footer */

#footer {
    padding   : 24px 0;
    background: #1B1B20;
    font-size : 16px;
}

#footer a {
    text-decoration: underline;
}

#footer .logo {
    display      : block;
    margin-bottom: 10px;
}

.g-imgbot {
    position: fixed;
    bottom  : 0;
    z-index : 99;
    width   : 100%;
}

.g-imgbot img {
    width     : 100%;
    max-height: 80px;
}

.btn-close {
    color        : #fff !important;
    background   : #000;
    width        : 30px;
    height       : 30px;
    border-radius: 30px;
    opacity      : 1 !important;
    border       : 2px #fff solid;
    position     : absolute;
    left         : calc(50% - 15px);
    top          : -15px;
    padding      : 0;
    z-index      : 9;
}


/* Body */

.g-imgtop img {
    max-height: 80px;
    z-index   : 99;
    position  : relative;
}

#main-content {
    padding-bottom: 50px;
    text-align    : center;
}

.bg-tophome {
    position: absolute;
    width   : 100%;
    top     : 0;
    left    : 0;
    z-index : -1;
    filter  : blur(4px);
}

h1 {
    font-size  : 25px;
    font-weight: 700;
    line-height: 24px;
    color      : var(--color2);
}

h2 {
    color         : var(--color1);
    font-size     : 18px;
    font-weight   : 700;
    line-height   : 24px;
    text-transform: capitalize;
    margin-bottom : 12px;
}

h3 {
    font-size    : 16px;
    font-weight  : 700;
    line-height  : 24px;
    margin-bottom: 10px;
}

h4 {
    font-size    : 14px;
    line-height  : 24px;
    margin-bottom: 6px;
    font-weight  : 700;
}

p {
    margin-bottom: 10px;
}

.top-main {
    position      : relative;
    padding-top   : 10px;
    padding-bottom: 50px;
}

/* .top-main::after {
    content       : '';
    background    : linear-gradient(180deg, rgba(11, 11, 11, 0.00) 0%, #141418 100%);
    position      : absolute;
    bottom        : 50px;
    width         : 100%;
    height        : 130px;
    left          : 0;
    pointer-events: none;
    z-index       : 11;
} */

.main-link {
    gap            : 5px;
    position       : relative;
    z-index        : 11;
    align-items    : center;
    display        : flex;
    justify-content: center;
    flex-wrap      : wrap;
}

.ref-link {
    position: absolute;
    width   : 100%;
    height  : 100%;
    left    : 0;
    top     : 0;
    z-index : 999;
}

.main-right {
    justify-content: flex-start;
}

.bg-img {
    position: absolute;
    left    : -30%;
    top     : -35%;
    z-index : -1;
}

.img-right {
    left : auto;
    right: -35%;
}

.img-intro {
    height  : auto;
    z-index : -1;
    position: relative;
}

@keyframes animateLeft {

    0%,
    50% {
        opacity: 0;
        width  : 0;
    }

    75% {
        opacity: 1;
        width  : 100%;
    }

    76%,
    100% {
        opacity: 0;
    }
}

.group-link {
    padding        : 10px 10px;
    border-radius  : 12px;
    border         : 1px solid var(--color1);
    background     : rgba(23, 22, 28, 0.20);
    backdrop-filter: blur(2.75px);
    text-align     : center;
    max-width      : 100%;
    transition     : .2s;
    position       : relative;
}

.group-link.link2 {
    border-color      : rgba(173, 255, 47, 0.36);
    /* display        : flex; */
    /* flex-direction : column; */
    /* justify-content: flex-end;
    align-items       : center; */
}

.group-link.link3 {
    border-color: var(--btn-color3);
}

.group-link.link4 {
    border-color: var(--btn-color4);
}

.group-link img {
    transition: .2s;
}

.group-link.link3 img,
.group-link.link4 img {
    /* height    : 67px;
    width     : 80px;
    object-fit: contain; */
}

.group-link p {
    min-height: 48px;
    margin    : 12px 0 32px;
}

.des {
    margin-bottom: 52px;
}

.group-btn {
    display      : flex;
    gap          : 20px;
    margin-bottom: 20px;
}

.btn-bet {
    width: 147px;
}

.btn.bet {
    background   : var(--btn-color2);
    /* box-shadow: 0px 2px 6.3px 0px rgba(77, 231, 97, 0.40), 0px -3px 4px 0px rgba(77, 231, 97, 0.40), 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25) inset; */
}

.btn.bet2 {
    background   : var(--btn-color1);
    /* box-shadow: 0px 2px 6.3px 0px rgba(255, 143, 11, 0.40), 0px -3px 4px 0px rgba(255, 143, 11, 0.40), 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25) inset; */
}

.btn.bet3 {
    background   : var(--btn-color3);
    /* box-shadow: 0px 2px 6.3px 0px rgba(255, 214, 0, 0.40), 0px -3px 4px 0px rgba(255, 214, 0, 0.40), 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25) inset; */
}

.btn.bet4 {
    background   : var(--btn-color4);
    /* box-shadow: 0px 2px 6.3px 0px rgba(0, 225, 225, 0.40), 0px -3px 4px 0px rgba(0, 225, 225, 0.40), 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25) inset; */
}

.introduce {
    padding-top   : 35px;
    padding-bottom: 50px;
}

.casters,
.seo-content {
    padding: 50px 0;
}

.casters p {
    margin-bottom: 36px;
}

.list-cast {
    display              : grid;
    grid-template-columns: auto auto auto auto;
    justify-content      : center;
    gap                  : 20px;
    text-align           : center;
}

.list-cast .item {
    width: 200px;
}

.list-cast img {
    margin-bottom: 12px;
    width        : 100px;
    height       : 100px;
}

.list-cast span {
    display: block;
    color  : #868686;
}

.list-cast span.name {
    color      : white;
    font-size  : 16px;
    font-weight: 700;
    margin-top : 8px;
}

.nav-content ul {
    display       : flex;
    flex-direction: column;
    gap           : 24px;
}

.nav-item a {
    color      : #888;
    font-size  : 18px;
    line-height: 28px;
}

.nav-item.active a {
    color      : var(--color1);
    font-weight: 700;
}

body.modal-open {
    overflow: auto !important;
    padding : 0 !important;
}

.modal-backdrop.show {
    opacity: 0;
}

.modal-body {
    padding: 0;
}

.title-nc {
    text-transform: uppercase;
}

.list-nha-cai {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 20px;
}

.list-nha-cai h2 {
    color: #fff;
}

.row-nhacai {
    display        : flex;
    gap            : 16px;
    border-radius  : 12px;
    border         : 2px solid #616161;
    background     : rgba(23, 22, 28, 0.20);
    backdrop-filter: blur(2.75px);
    padding        : 20px;
    position       : relative;
}

.logobox img {
    object-fit: contain;
}

.khuyenmaibox {
    color: #989898;
}

.datcuocbox {
    margin-left: auto;
    display    : flex;
    align-items: center;
}

.datcuocbox a {
    width    : 115px;
    padding  : 0 20px;
    font-size: 14px;
}

.contents {
    display        : flex;
    flex-direction : column;
    height         : 100%;
    justify-content: center;
}

#buttons-list .btn-bet {
    padding: 0;

}


#buttons-list .btn-bet a {
    width          : 100%;
    height         : 100%;
    border-radius  : 7px;
    min-height     : 40px;
    display        : flex;
    justify-content: center;
    align-items    : center;
    padding        : 5px;
}

.popup {
    position       : fixed;
    top            : 0;
    left           : 0;
    z-index        : 1050;
    width          : 100%;
    height         : 100%;
    outline        : 0;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : 0.3s ease-out;
}

.popup .overlay {
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup .img_popup {
    max-width: 500px;
    margin   : auto;
    z-index  : 99;
    position : relative;
}

.popup-close {
    background-color: #fff;
    display         : flex;
    align-items     : center;
    justify-content : center;
    position        : absolute;
    top             : 5px;
    right           : 5px;
    width           : 30px;
    height          : 30px;
    border-radius   : 4px;
    cursor          : pointer;
    font-size       : 20px;
    font-weight     : 500;
    color           : #333;
}

.ref-code-e3612312312 {
    display       : flex;
    flex-direction: row;
}


@media (max-width: 768px) {
    .ref-code-e3612312312 {
        display       : flex;
        flex-direction: column;
    }
}

.ref-code-e3612312312 a {
    padding: 0px;
}