:root {
    /* Dark theme colors as default */
    --primary-color: #31ee91;
    --white: #292d2e;
    --black: #fff;
    --primary-bg: #232626;
    --secondry-bg: #323738;
    --secondry-bg-light: #232626f5;
    --form-bg: #292d2e;
    --secondry-bg-hover: #292d2e;
    --Expandbg: #292d2e;
    --switcher-bg: #292d2e;
    --listArrow-bg: #464f50;
    --transition: 0.5s all ease;
    --color: #fff;
    --ddd: #444444;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--primary-bg);
}

body.dark-theme {
    /* Dark theme colors */
    --white: #292d2e;
    --primary-bg: #292d2e;
    --secondry-bg: #323738;
    --secondry-bg-light: #232626f5;
    --form-bg: #292d2e;
    --secondry-bg-hover: #292d2e;
    --Expandbg: #292d2e;
    --switcher-bg: #292d2e;
    --listArrow-bg: #464f50;
    --black: #fff;
    --ddd: #444444;
    --color: #fff;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}


.sidebar::-webkit-scrollbar {
    width: 0px;
}

.sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}


.notification .content .body .info .promotion::-webkit-scrollbar {
    width: 0px;
}

.notification .content .body .info .promotion::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

.notification .content .body .info .promotion::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}

.searchDetails .body .data::-webkit-scrollbar {
    width: 0px;
}


.searchDetails .body .data::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}


.searchDetails .body .data::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}

.header {
    width: 100%;
    max-height: 6vh;
    background: var(--white);
    box-shadow: 0 0 5px var(--ddd);
    padding: 10px 0;
    position: fixed;
    z-index: 100;
}


.header .menuIcon {
    background: var(--secondry-bg);
    padding: 8px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.header .menuIcon:hover {
    background: var(--secondry-bg-hover);
    transition: var(--transition);
}

.header .menuIcon img {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.header .menuIcon svg {
    width: 18px;
    fill: #5f6d6d;
}

.header .liveCur {
    gap: 8px;
    border: 1px solid var(--secondry-bg);
    padding: 5px 15px;
    border-radius: 5px;
}

.header .liveCur img {
    width: 25px;
}

.header .liveCur h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.header .user {
    width: 34px;
    height: 34px;
    padding: 2px;
    border-radius: 50%;
    border: 1px solid var(--secondry-bg);
    cursor: pointer;
}

.header .user img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 0;
}

.header .logo a img {
    width: 50%;
}

.loginSignUp {}

.loginSignUp .signIn {
    border: 2px solid var(--secondry-bg);
    background: none;
    outline: none;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color);
    cursor: pointer;
}

.loginSignUp .signUp {
    cursor: pointer;
    outline: none;
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.loginSignUp .signUp:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);
}





/* Sidebar start */
.sidebar {
    width: 240px;
    height: 88vh;
    overflow-y: scroll;
    background: var(--white);
    box-shadow: 0 5px 5px var(--ddd);
    padding: 0 20px;
    padding-top: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar.collapsed {
    width: 35px;
}

.sidebar.collapsed .bcToken,
.sidebar.collapsed .lightDark {
    display: none;
}

.sidebar .bcToken {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-image: radial-gradient(85.75% 170.25% at 0% 100%, rgba(35, 238, 136, 0.15) 0%, rgba(35, 238, 136, 0) 100%);
    background-color: var(--primary-bg);
    color: var(--black);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.sidebar .bcToken img {
    width: 24px;
    height: 24px;
}

.sidebar .bcToken>svg {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
    background: var(--ddd);
    fill: var(--color);
    padding: 3px;
    border-radius: 3px;
}

.sidebar .bcToken h5 {
    font-size: 15px;
    font-weight: 700;
}

.sidebar .bcToken .tkper svg {
    width: 12px;
    height: 12px;
    fill: var(--primary-color);
    margin-right: 5px;
}

.sidebar .bcToken .tkper span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.sidebar .bcToken .info p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.sidebar .leftMenu {}

.sidebar .leftMenu ul.menuPrimary {}

.sidebar .leftMenu ul.menuPrimary>li {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    background: var(--secondry-bg);
    margin-bottom: 5px;
    /* padding: 7px; */
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    height: 38px;
    overflow: hidden;
}

.sidebar .leftMenu ul.menuPrimary>li.active {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    background: var(--secondry-bg);
    margin-bottom: 5px;
    /* padding: 7px; */
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    height: auto;
    overflow: visible;
}

.sidebar .leftMenu ul.menuPrimary li:last-child {
    margin-bottom: 0px;

}

.sidebar .leftMenu ul.menuPrimary li.active {
    background: var(--secondry-bg);
}

.sidebar .leftMenu ul.menuPrimary li .flex-between {
    padding: 7px;
}

.sidebar .leftMenu ul.menuPrimary>li:hover {
    transition: var(--transition);
    background-image: radial-gradient(85.75% 170.25% at 0% 100%, rgba(35, 238, 136, 0.15) 0%, rgba(35, 238, 136, 0) 100%);
    background-color: var(--primary-bg);
    color: var(--black);
}

.sidebar .leftMenu ul.menuPrimary>li.active:hover {
    transition: var(--transition);
    background-image: var(--secondry-bg);
}

.sidebar .leftMenu ul.menuPrimary li ul {}

.sidebar .leftMenu ul.menuPrimary li ul li {
    background: transparent;
}

.sidebar .leftMenu ul.menuPrimary li ul li:hover {
    transition: var(--transition);
    background-image: radial-gradient(85.75% 170.25% at 0% 100%, rgba(35, 238, 136, 0.15) 0%, rgba(35, 238, 136, 0) 100%);
    background-color: var(--primary-bg);
    color: var(--black);
}

.sidebar .leftMenu ul.menuPrimary li .align-center {
    gap: 10px;
}

.sidebar .leftMenu ul.menuPrimary li i {
    font-size: 16px;
    color: var(--color);
}

.sidebar .leftMenu ul.menuPrimary li a {
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
}

.sidebar .leftMenu ul.menuPrimary li svg {
    width: 18px;
    height: 18px;
    /* transform: rotate(180deg); */
    background: var(--ddd);
    fill: var(--color);
    padding: 3px;
    border-radius: 3px;
    transform: rotate(270deg);
}

.sidebar .leftMenu ul.menuPrimary li ul li svg {
    transform: rotate(180deg);
}

.sidebar .leftMenu ul.menuPrimary li ul li {
    position: relative;
}

.sidebar .leftMenu ul.menuPrimary li ul li ul {
    position: absolute;
    left: 110%;
    background: var(--secondry-bg);
    top: 0;
    width: 200px;
    border-radius: 5px;
    transform: rotateY(90deg);
    transform-origin: left;
    transition: var(--transition);
}

.sidebar .leftMenu ul.menuPrimary li ul li:hover ul {
    transition: var(--transition);
    transform: rotateY(0deg);
    transform-origin: left;
    z-index: 55;
}

.sidebar .leftMenu ul.menuPrimary li ul li ul li {
    padding: 7px;
}


.lightDark {
    background: var(--secondry-bg);
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding: 3px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

.lightDark .dark,
.lightDark .light {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    width: 48%;
    border-radius: 5px;
}

.lightDark .dark svg,
.lightDark .light svg {
    width: 20px;
    fill: var(--color);
}

.lightDark .dark.active {
    background: var(--ddd);
}

.lightDark .light.active {
    background: var(--ddd);
}

.lightDark .dark span,
.lightDark .light span {
    color: var(--color);
}


/* Sidebar end */




/* Right Side */
.rightSide {
    width: calc(100% - 280px);
    height: 88vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--secondry-bg);
    /* padding: 0 20px; */
    padding-top: 12vh;
    /* transition: var(--transition); */
}

.rightSide.collapsed {
    /* transition: var(--transition); */
    width: calc(100% - 35px);
}

.rightSide::-webkit-scrollbar {
    width: 4px;
}

.rightSide::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

.rightSide::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}

.rightSide .banner {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    height: 270px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: linear-gradient(262deg, var(--white) 61.46%, rgb(157, 164, 165) 180.6%);
    overflow: hidden;
}

.rightSide .banner img:nth-child(1) {
    position: absolute;
    width: 35%;
    top: 0;
    left: -10%;
}

.rightSide .banner img:nth-child(2) {
    width: 60%;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.rightSide .banner img:nth-child(3) {
    width: 5%;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.rightSide .banner .info {
    position: absolute;
    left: 20%;
    text-align: center;
}

.rightSide .banner .info .bg {
    background: #a9a9a933;
    padding: 20px 50px;
    backdrop-filter: blur(12px);
    border-radius: 5px;
    margin-bottom: 15px;
}

.rightSide .banner .info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 10px;
}

.rightSide .banner .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 10px;
}

.rightSide .banner .info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 10px;
}

.rightSide .banner .info h4:last-child {
    margin-bottom: 0;
}

.rightSide .banner .info h3 span {
    color: #31ee91;
}

.rightSide .banner .info a {}

.rightSide .banner .info a {
    cursor: pointer;
    outline: none;
    border: none;
    padding: 7px 50px;
    border-radius: 5px;
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.rightSide .banner .info a:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);

}



.recentBigWin {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.recentBigWin h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.recentBigWin h4 span {
    width: 8px;
    height: 8px;
    background: #31ee91;
    border-radius: 50%;
    position: relative;
}

.recentBigWin h4 span::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #31ee91;
    left: 0%;
    top: 0%;
    /* transform: translate(-50%, -50%); */
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) 0s infinite normal none running;
}

@keyframes ping {
    0% {
        transform: scale(0);
    }

    100% {
        transform: translate(-25%, -25%) scale(1);
        background: #31ee9100;
    }
}

.recentBigWin ul {
    display: flex;
    align-items: center;
}

.recentBigWin ul li {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 1px solid #31ee9100;
}

.recentBigWin ul li a {
    color: var(--color);
}

.recentBigWin ul li.active {
    border-bottom: 1px solid #31ee91;
}

.recentBigWin marquee {}

.recentBigWin .allItems {
    display: flex;
    gap: 10px;
}

.recentBigWin .item {
    width: 6%;
    animation: moveRtl 3s linear infinite;
}

@keyframes moveRtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.recentBigWin .item img {
    border-radius: 8px;
    margin-bottom: 5px;
}

.recentBigWin .item .info {}

.recentBigWin .item .info .align-center {
    gap: 5px;
}

.recentBigWin .item .info img {
    width: 20px;
}

.recentBigWin .item .info h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--color);
}

.recentBigWin .item .info>h5 {
    font-size: 12px;
    font-weight: 700;
    color: #31ee91;
}





.featured {
    display: flex;
    gap: 2%;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.featured .left {
    width: 59%;
    display: flex;
    gap: 2%;
}

.featured .left .sinFeature {
    border-radius: 10px;
    width: 49%;
    height: 260px;
    position: relative;
}

.featured .left .sinFeature img {}

.featured .left .sinFeature .info {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.featured .left .sinFeature .info img {
    width: 25px;
}

.featured .left .sinFeature .info h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.featured .left .sinFeature h5 {
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    color: var(--color);
}

.featured .right {
    width: 39%;
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    row-gap: 10px;
}


.featured .right .sinFeature {
    border-radius: 10px;
    width: 49%;
    height: 125px;
    position: relative;
}

.featured .right .sinFeature img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.featured .right .sinFeature .info {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 20px;
}

.featured .right .sinFeature .info img {
    width: 20px;
    position: relative;
}

.featured .right .sinFeature .info h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}


.bcOriginal {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.bcOriginal h4,
.lotteryDraw h4,
.latestRace h4,
.liveSports h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.bcOriginal h4 a,
.lotteryDraw h4 a,
.liveSports h4 a {
    margin-right: 60px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px;
    background: var(--white);
    border-radius: 5px;
    color: var(--color);
}

.bcOriginal .allBc {
    display: flex;
    gap: 0.5%;
}

.bcOriginal .allBc .sinbc {
    width: 12%;
    margin: 0 5px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bcOriginal .allBc .sinbc img {}

.bcOriginal .allBc .sinbc .info {
    position: absolute;
    background: #00000033;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.bcOriginal .allBc .sinbc:hover .info {
    transform: scale(1);
    transition: var(--transition);
}

.bcOriginal .allBc .sinbc .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.bcOriginal .allBc .sinbc .info i {
    color: #fff;
    padding: 12px 11px;
    border-radius: 50%;
    background: #ffffff50;
}

.bcOriginal .allBc .sinbc h5 {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00000033;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.bcOriginal .allBc .sinbc h5 i {}




.slick-next::before,
.slick-prev::before {
    color: #31ee91;
    font-size: 15px;
    background: var(--white);
}

.slick-prev:before {
    content: '➜';
    transform: rotate(-180deg);
    background: var(--white);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #31ee91;
    font-size: 15px;
    opacity: 1;
}

.slick-next {
    right: 5px
}

[dir=rtl] .slick-next {
    right: auto;
    right: 5px
}

.slick-prev {
    right: 35px !important;
    z-index: 99;
}

.slick-next:before {
    content: '➜';
    background: var(--white);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #31ee91;
    font-size: 15px;
    opacity: 1;
}



.bcOriginal .slick-next,
.bcOriginal .slick-prev {
    top: -25%;
}

.liveSports .slick-next,
.liveSports .slick-prev {
    top: -17%;
}

.lotteryDraw .slick-next,
.lotteryDraw .slick-prev {
    top: -17%;
}

.liveSports {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.liveSports .allLive {
    display: flex;
    gap: 1%;
}

.liveSports .sinLive {
    width: 32%;
    padding: 20px;
    margin: 0 7px;
    background: var(--white);
    border-radius: 10px;
    position: relative;
}

.liveSports .sinLive .live {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #31ee9133;
    color: #31ee91;
    padding: 5px 7px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.liveSports .sinLive .live i {
    margin-right: 5px;
    font-size: 13px;
}

.liveSports .sinLive .live h5 {
    font-size: 13px;
    font-weight: 700;
}

.liveSports .sinLive .left {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liveSports .sinLive .left img {
    width: 70px;
    margin-bottom: 15px;
}

.liveSports .sinLive .left h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color);
}

.liveSports .sinLive .mid {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liveSports .sinLive .mid h2 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 10px;
}

.liveSports .sinLive .mid h4 {
    font-size: 16px;
    color: var(--color);
}

.liveSports .sinLive .right {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liveSports .sinLive .right img {
    width: 70px;
    margin-bottom: 15px;
}

.liveSports .sinLive .right h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color);
}

.liveSports .sinLive .result {
    margin-top: 15px;
    display: flex;
    justify-content: space-evenly;
}

.liveSports .sinLive .result div {
    background: #fc3c3c26;
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-radius: 5px;
}

.liveSports .sinLive .result div:last-child {
    background: #31ee9126;
}

.liveSports .sinLive .result h4 {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}


.lotteryDraw {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.allDraw {
    display: flex;
}

.allDraw .sinDraw {
    width: 20%;
    margin: 0 7px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.allDraw .sinDraw img {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 60px;
    border-radius: 50%;
    border: 10px solid var(--secondry-bg);
}


.allDraw .sinDraw:nth-child(1),
.allDraw .sinDraw:nth-child(6),
.allDraw .sinDraw:nth-child(16),
.allDraw .sinDraw:nth-child(21) {
    background: linear-gradient(rgba(244, 62, 139, 0) 0%, #f43e8b99 100%), var(--white);
}

.allDraw .sinDraw:nth-child(2),
.allDraw .sinDraw:nth-child(7),
.allDraw .sinDraw:nth-child(17),
.allDraw .sinDraw:nth-child(22) {
    background: linear-gradient(rgba(244, 182, 62, 0) 0%, #f4b63e99 100%), var(--white);
}

.allDraw .sinDraw:nth-child(3),
.allDraw .sinDraw:nth-child(8),
.allDraw .sinDraw:nth-child(18),
.allDraw .sinDraw:nth-child(23) {
    background: linear-gradient(rgba(230, 246, 44, 0) 0%, #e6f62c99 100%), var(--white);
}

.allDraw .sinDraw:nth-child(4),
.allDraw .sinDraw:nth-child(9),
.allDraw .sinDraw:nth-child(19),
.allDraw .sinDraw:nth-child(24) {
    background: linear-gradient(rgba(44, 246, 89, 0) 0%, #2cf65999 100%), var(--white);
}

.allDraw .sinDraw:nth-child(5),
.allDraw .sinDraw:nth-child(10),
.allDraw .sinDraw:nth-child(15),
.allDraw .sinDraw:nth-child(25) {
    background: linear-gradient(rgba(44, 125, 246, 0) 0%, #2c7df699 100%), var(--white);
}

.allDraw .sinDraw h5 {
    font-size: 15px;
    line-height: 22px;
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.allDraw .sinDraw h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.allDraw .sinDraw h3 {}

.allDraw .sinDraw h6 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 8px;
}

.allDraw .sinDraw .timing {
    margin-bottom: 10px;
}

.allDraw .sinDraw .timing .h {
    padding: 5px 7px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.allDraw .sinDraw:nth-child(1) .timing .h,
.allDraw .sinDraw:nth-child(6) .timing .h,
.allDraw .sinDraw:nth-child(16) .timing .h,
.allDraw .sinDraw:nth-child(21) .timing .h {
    background: #f43e8b99;
}

.allDraw .sinDraw:nth-child(2) .timing .h,
.allDraw .sinDraw:nth-child(7) .timing .h,
.allDraw .sinDraw:nth-child(17) .timing .h,
.allDraw .sinDraw:nth-child(22) .timing .h {
    background: #f4b63e99;
}

.allDraw .sinDraw:nth-child(3) .timing .h,
.allDraw .sinDraw:nth-child(8) .timing .h,
.allDraw .sinDraw:nth-child(18) .timing .h,
.allDraw .sinDraw:nth-child(23) .timing .h {
    background: #e6f62c99;
}

.allDraw .sinDraw:nth-child(4) .timing .h,
.allDraw .sinDraw:nth-child(9) .timing .h,
.allDraw .sinDraw:nth-child(19) .timing .h,
.allDraw .sinDraw:nth-child(24) .timing .h {
    background: #2cf65999;
}

.allDraw .sinDraw:nth-child(5) .timing .h,
.allDraw .sinDraw:nth-child(10) .timing .h,
.allDraw .sinDraw:nth-child(15) .timing .h,
.allDraw .sinDraw:nth-child(25) .timing .h {
    background: #2c7df699;
}

.allDraw .sinDraw .timing .h {}

.allDraw .sinDraw a {
    cursor: pointer;
    display: block;
    text-align: center;
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--color);
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.allDraw .sinDraw a:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);
}




.deposit {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
    margin: 0 20px 20px 20px;
}

.deposit h1 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
}

.deposit h1 span {
    color: #31ee91;
}

.deposit .paymentMethod {
    display: flex;
    gap: 30px;
}

.deposit .paymentMethod img {
    width: 40px;
    height: auto;
}



.latestRace {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.latestRace h4 {}

.latestRace ul {
    background: var(--secondry-bg-hover);
    display: flex;
    align-items: center;
    border-radius: 7px;
}

.latestRace ul li {
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}

.latestRace ul li a {
    color: var(--color);
}

.latestRace ul li.active {
    background: var(--white);
}

.latestRace ul li.active a {
    color: var(--black)
}

.latestRace .racetab {
    display: none;
}

.latestRace .racetab.active {
    display: block;
}

.latestRace table {
    width: 100%;
    background: var(--white);
    border-radius: 7px;
    border-collapse: collapse;
}

.latestRace table thead {}

.latestRace table thead tr {
    text-align: left;
    padding: 7px;
    color: var(--black);
}

.latestRace table thead tr th {
    padding: 8px;
    font-size: 13px;
    color: var(--black);
}

.latestRace table tbody {}

.latestRace table tbody tr:nth-child(odd) {
    background: var(--secondry-bg);
}

.latestRace table tbody tr td {
    padding: 7px;
    padding: center;
    color: var(--color);
}

.latestRace table tbody tr td img {
    width: 20px;
}

.latestRace .Wager {}

.latestRace .Wager .top {
    display: flex;
    gap: 1%;
}

.latestRace .Wager .top .left {
    width: 49%;
    background: linear-gradient(45deg, #2cd97d33, var(--white));
    height: 150px;
    position: relative;
    border-radius: 10px;
}

.latestRace .Wager .top .left img {
    position: absolute;
    left: 0;
    height: 120px;
    width: 120px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.latestRace .Wager .top .left .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.latestRace .Wager .top .left .info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #31ee91;
    text-align: center;
    margin-bottom: 10px;
}

.latestRace .Wager .top .left .info h6 {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color);
    text-align: center;
}

.latestRace .Wager .top .left .info h2 {
    font-size: 25px;
    font-weight: 700;
    color: #31ee91;
    text-align: center;
}

.latestRace .Wager .top .left .info h2 span {}

.latestRace .Wager .top .right {
    width: 49%;
    display: flex;
    gap: 1%;
}

.latestRace .Wager .top .right .timeremain {
    width: 49%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
}

.latestRace .Wager .top .right .timeremain h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.latestRace .Wager .top .right .remain {
    display: flex;
    align-items: center;
    gap: 10px;
}

.latestRace .Wager .top .right .remain .hour {
    background: var(--secondry-bg);
    padding: 10px;
    border-radius: 5px;
}

.latestRace .Wager .top .right .remain .hour h2 {
    color: var(--color);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.latestRace .Wager .top .right .remain .hour p {
    color: var(--color);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.latestRace .Wager .top .right .lastChamp {
    width: 49%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.latestRace .Wager .top .right .lastChamp span {
    position: absolute;
    background: var(--primary-color);
    color: var(--black);
    padding: 5px 30px;
    transform: rotate(-45deg);
    left: -25px;
    top: 16px;
    font-size: 13px;
    font-weight: 700;
}

.latestRace .Wager .top .right .lastChamp h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.latestRace .Wager .top .right .lastChamp .profil {
    display: flex;
    align-items: center;
    gap: 10px;
}

.latestRace .Wager .top .right .lastChamp .profil img {
    width: 50px;
}

.latestRace .Wager .top .right .lastChamp .profil .proDe {}

.latestRace .Wager .top .right .lastChamp .profil .proDe p {
    color: var(--color);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.latestRace .Wager .top .right .lastChamp .profil .proDe p i {

    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}


.latestRace .Wager .mid {
    margin: 20px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latestRace .Wager .mid .sinMid {
    width: calc(25% - 1px);
    border-right: 1px solid var(--secondry-bg);
}

.latestRace .Wager .mid .sinMid img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.latestRace .Wager .mid .sinMid h5 {
    color: var(--color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.latestRace .Wager .mid .sinMid h4 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.latestRace .Wager .mid .sinMid p {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    text-align: center;
}






/* Footer */
.footer {
    background: var(--white);
    padding: 40px;
}

.footer .abtHelp {
    display: flex;
    gap: 4%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondry-bg);
}

.footer .abtHelp .abt:first-child {
    width: 53%;
}

.footer .abtHelp .abt:last-child {
    width: 43%;
}

.footer .abtHelp .abt h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.footer .abtHelp .abt p {
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 10px;
}

.footer .abtHelp .abt>a {
    font-size: 13px;
    font-weight: 600;
    background: var(--secondry-bg);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--black);
    transition: var(--transition);
}

.footer .abtHelp .abt>a:hover {
    transition: var(--transition);
    background: var(--secondry-bg-hover);
}

.footer .abtHelp .abt p a {
    color: #31ee91;

}

.footer .img {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondry-bg);
}

.footer .img img {
    width: 12%;
}

.footer .img2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondry-bg);
}

.footer .img2 img {
    width: 12%;
}

.footer .img2 img:nth-child(1) {
    width: 10%;
}

.footer .img2 img:nth-child(2) {
    width: 10%;
}

.footer .img2 img:nth-child(3) {
    width: 10%;
}

.footer .img2 img:nth-child(4) {
    width: 10%;
}

.footer .img2 img:nth-child(5) {
    width: 10%;
}

.footer .img2 img:nth-child(6) {
    width: 7%;
}

.footer .img2 img:nth-child(7) {
    width: 7%;
}

.footer .img2 img:nth-child(8) {
    width: 7%;
}

.footer .footerLinks {}

.footer .footerLinks .fSinMn {
    width: 13%;
}

.footer .footerLinks .fSinMn h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.footer .footerLinks .fSinMn ul li {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
}

.footer .footerLinks .fSinMn ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color);
}

.footer .footerLinks .fSinMn ul li a svg {
    width: 20px;
    height: 20px;
    fill: #31ee91;
}



.footer .footerLinks .fSinSoc {
    width: 30%;
}

.footer .footerLinks .fSinSoc h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.footer .footerLinks .fSinSoc ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer .footerLinks .fSinSoc ul li {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
}

.footer .footerLinks .fSinSoc ul li a {
    background: var(--secondry-bg);
    padding: 8px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.footer .footerLinks .fSinSoc ul li a:hover {
    background: var(--secondry-bg-hover);
    transition: var(--transition);
}

.footer .footerLinks .fSinSoc ul li a svg {
    width: 30px;
    height: 30px;
}


.footer p.copyright {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    margin-top: 20px;
}

/* Footer */
/* SignUp Login start*/
.wrapSgupSin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: var(--transition);
    z-index: 101;
}

.wrapSgupSin.active {
    background: #000000aa;
    transition: var(--transition);
    transform: scale(1);
}

.wrapSgupSin .content {
    width: 800px;
    height: 550px;
    overflow: hidden;
    background: var(--white);
    border-radius: 10px;
}

.wrapSgupSin .content {
    position: relative;
}

.wrapSgupSin .content .signClose {
    position: absolute;
    top: 20px;
    right: 20px;
}

.wrapSgupSin .content .signClose svg {
    width: 15px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
}

.wrapSgupSin .content .signUp {
    display: none;
}

.wrapSgupSin .content .signUp.active {
    display: flex;
}

.wrapSgupSin .content .signUp .left {
    width: 50%;
    position: relative;
    height: 550px;
}

.wrapSgupSin .content .signUp .left img {
    height: 550px;
}

.wrapSgupSin .content .signUp .left .info {
    position: absolute;
    bottom: 15%;
    width: 100%;
    text-align: center;
}

.wrapSgupSin .content .signUp .left .info h1 {
    color: var(--color);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}

.wrapSgupSin .content .signUp .left .info h4 {
    color: var(--color);
    font-size: 15px;
    font-weight: 500;
}

.wrapSgupSin .content .signUp .right {
    padding: 20px;
    width: calc(50% - 40px);
    background: var(--secondry-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wrapSgupSin .content .signUp .right h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wrapSgupSin .content .signUp .right form {
    margin-bottom: 25px;
}

.wrapSgupSin .content .signUp .right form .control {
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.wrapSgupSin .content .signUp .right form .control input {
    padding: 8px 6px;
    background: var(--form-bg);
    width: calc(100% - 12px);
    border: 1px solid var(--secondry-bg-hover);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}

.wrapSgupSin .content .signUp .right form .control input:focus {
    border: 1px solid #31ee91;
}

.wrapSgupSin .content .signUp .right form .control svg {
    position: absolute;
    width: 18px;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    fill: var(--color);
    cursor: pointer;
}

.wrapSgupSin .content .signUp .right form .refer {
    height: 25px;
    overflow: hidden;
    cursor: pointer;
}

.wrapSgupSin .content .signUp .right form .refer.active {
    height: auto;
}

.wrapSgupSin .content .signUp .right form .refer h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wrapSgupSin .content .signUp .right form .refer h4 svg {
    width: 15px;
    fill: var(--color);
    cursor: pointer;
    transform: rotate(270deg);
    transition: var(--transition);
}

.wrapSgupSin .content .signUp .right form .refer h4 svg.active {
    transform: rotate(90deg);
    transition: var(--transition);
}

.wrapSgupSin .content .signUp .right form .forget {
    margin-bottom: 10px;
}

.wrapSgupSin .content .signUp .right form .forget a {
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}

.wrapSgupSin .content .signUp .right form .control input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.wrapSgupSin .content .signUp .right form .control label {
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    color: var(--color);
    cursor: pointer;
}

.wrapSgupSin .content .signUp .right form .control label a {
    color: #31ee91;
}

.wrapSgupSin .content .signUp .right form button {
    width: 100%;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.wrapSgupSin .content .signUp .right form button:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);
}

.wrapSgupSin .content .signUp .right h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 20px;
}

.wrapSgupSin .content .signUp .right h5 a {
    color: #31ee91;
}

.wrapSgupSin .content .signUp .right .loginDirect {}

.wrapSgupSin .content .signUp .right .loginDirect h5 {
    text-align: center;
    color: var(--color);
    position: relative;
    height: 15px;
    width: 100%;
}

.wrapSgupSin .content .signUp .right .loginDirect h5::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--secondry-bg-hover);
    left: 0;
    top: 50%;
    z-index: 1;
}

.wrapSgupSin .content .signUp .right .loginDirect h5 span {
    background: var(--secondry-bg);
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 5px;
}

.wrapSgupSin .content .signUp .right .loginDirect h4 a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--secondry-bg-hover);
    padding: 8px 0;
    color: var(--color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wrapSgupSin .content .signUp .right .loginDirect h4 svg {
    width: 15px;
    fill: var(--color);
}

.wrapSgupSin .content .signUp .right .loginDirect h4 span {}

.wrapSgupSin .content .signUp .right .loginDirect ul {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.wrapSgupSin .content .signUp .right .loginDirect ul li {}

.wrapSgupSin .content .signUp .right .loginDirect ul li a {}

.wrapSgupSin .content .signUp .right .loginDirect ul li a svg {
    width: 20px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.wrapSgupSin .content .signUp .right .loginDirect ul li a svg:hover {
    transition: var(--transition);
    fill: #31ee91;
    background: var(--secondry-bg);
}

/* SignUp Login end */
/* searchDetails Start */
.searchDetails,
.lanCur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondry-bg-light);
    z-index: 200;
    height: 100vh;
    overflow: hidden;
    display: none;
}

.searchDetails.active,
.lanCur.active {
    display: block;
}

.searchDetails {}

.searchDetails .head {
    /* background: #000; */
}

.searchDetails .head {
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    padding: 15px 0;
    margin-bottom: 15px;
    /* background: #000; */
}


.searchDetails .head h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color);
}
/* ✅ Full fixed version */
.sortPro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 10px 0;
  padding: 0 10px; /* ← left-right equal spacing */
  box-sizing: border-box;
}

.control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control label {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.control select {
  padding: 6px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #222;
  color: #fff;
  width: 100%;
}

/* 🔹 Mobile Responsive */
@media (max-width: 600px) {
  .sortPro {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 15px; /* Mobile এ extra padding for both sides */
  }

  .control {
    justify-content: space-between;
    width: 100%;
  }

  .control select {
    width: 65%;
  }
}

.searchDetails .head svg,
.notification .content h5 svg {
    width: 15px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
}

.searchDetails .body {}

.searchDetails .body .srchbr {
    display: flex;
    border: 1px solid var(--secondry-bg-hover);
    background: var(--form-bg);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.searchDetails .body .srchbr.active {
    border: 1px solid #31ee91;

}

.searchDetails .body .control {
    display: flex;
    position: relative;
}

.searchDetails .body .control label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}

.searchDetails .body .control select {
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.searchDetails .body .control svg {
    width: 20px;
    fill: var(--color);
    padding-left: 5px;
    margin-right: 5px;
    border-left: 1px solid var(--secondry-bg-hover);
}

.searchDetails .body .control input[type="search"] {
    width: calc(100% - 20px);
    padding: 8px 10px;
    border: none;
}

.searchDetails .body .searchDrop {
    position: absolute;
    background: var(--white);
    top: 40px;
    left: 0;
    width: calc(100% - 30px);
    border-radius: 5px;
    padding: 15px;
    z-index: 12;
}

.searchDetails .body .searchDrop {
    display: none;
}

.searchDetails .body .searchDrop.active {
    display: block;
}

.searchDetails .body .searchDrop h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid var(--secondry-bg);
}

.searchDetails .body .searchDrop h5 svg {
    width: 15px;
    padding: 3px;
    border-radius: 5px;
    background: var(--secondry-bg);
    fill: var(--black);
}

.searchDetails .body .searchDrop h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.searchDetails .body .searchDrop h4 a {
    color: var(--color);
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    background: var(--secondry-bg);
}

.searchDetails .body .searchDrop ul {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.searchDetails .body .searchDrop ul li a {
    display: flex;
    color: var(--color);
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    background: var(--secondry-bg);
    gap: 5px;
    align-items: center;
}

.searchDetails .body .searchDrop ul li a svg {
    width: 10px;
    fill: var(--color);
}

.searchDetails .body ul.SrchTabMenu {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}

.searchDetails .body ul.SrchTabMenu li {
    padding: 8px 12px;
    border-radius: 5px;
}

.searchDetails .body ul.SrchTabMenu li.active {
    background: var(--white);
}

.searchDetails .body ul.SrchTabMenu li a {
    color: var(--color);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.searchDetails .body ul.SrchTabMenu li a svg {
    width: 15px;
    fill: var(--color);
}

.searchDetails .body .sortPro {
    margin-bottom: 15px;
}

.searchDetails .body .sortPro .control {
    border: 1px solid var(--secondry-bg-hover);
    background: var(--form-bg);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    padding: 0 12px;
}

.searchDetails .body .data {
    height: calc(100vh - 35vh);
    overflow-y: scroll;
}

.searchDetails .body .data .srAllBc {
    display: flex;
    gap: 0.5%;
    flex-wrap: wrap;
    row-gap: 10px;
}

.searchDetails .body .data .srAllBc .sinbc {
    width: 11%;
    margin: 0 5px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.searchDetails .body .data .srAllBc .sinbc img {}

.searchDetails .body .data .srAllBc .sinbc .info {
    position: absolute;
    background: #00000033;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.searchDetails .body .data .srAllBc .sinbc:hover .info {
    transform: scale(1);
    transition: var(--transition);
}

.searchDetails .body .data .srAllBc .sinbc .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.searchDetails .body .data .srAllBc .sinbc .info i {
    color: #fff;
    padding: 12px 11px;
    border-radius: 50%;
    background: #ffffff50;
}

.searchDetails .body .data .srAllBc .sinbc h5 {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00000033;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.searchDetails .body .data .pagination {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.searchDetails .body .data .pagination .leftArr {}

.searchDetails .body .data .pagination .leftArr svg {
    width: 15px;
    fill: var(--black);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
}

.searchDetails .body .data .pagination input {
    width: 15px;
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    margin: 0 5px;
}

.searchDetails .body .data .pagination h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}

.searchDetails .body .data .pagination h5 span {}

.searchDetails .body .data .pagination .rightArr {}

.searchDetails .body .data .pagination .rightArr svg {
    width: 15px;
    fill: var(--black);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    transform: rotate(180deg);
}



.lanCur {
    border-radius: 10px;
}

.lanCur.active {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.lanCur .content {
    width: 390px;
    background: var(--white);
}

.lanCur .content svg {
    margin: 15px;
    width: 15px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    transform: rotate(180deg);
}

.lanCur .content ul {
    display: flex;
}

.lanCur .content ul li {
    width: 50%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color);
    cursor: pointer;
}

.lanCur .content ul li.active {
    border-bottom: 1px solid #31ee91;
}

.lanCur .content .language {
    background: var(--secondry-bg);
    padding: 10px;
    height: 300px;
    display: none;
}

.lanCur .content .language.active {
    display: block;
}

.lanCur .content .language h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color);
    line-height: 20px;
    margin-bottom: 10px;
}

.lanCur .content .language .control {
    display: flex;
    border: 1px solid var(--secondry-bg-hover);
    border-radius: 5px;
}

.lanCur .content .language .control svg {
    background: transparent;
    transform: rotate(0deg);
    margin: 10px;
    width: 20px;
}

.lanCur .content .language .control input {
    padding: 10px;
    background: var(--secondry-bg);
    border: none;
    width: 100%;

}

.lanCur .content .language ul {
    display: flex;
    flex-direction: column;
    /* padding: 15px; */
    width: 100%;
}

.lanCur .content .language ul li {
    width: calc(100% - 20px);
    border: none;
}

.lanCur .content .language ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
}

.lanCur .content .language ul li a .bar {
    width: 10px;
    height: 10px;
    border: 2px solid var(--secondry-bg-hover);
    border-radius: 50%;
}

.lanCur .content .language ul li.active a .bar {
    width: 10px;
    height: 10px;
    border: 2px solid #31ee91;
    border-radius: 50%;
}

/* Default (desktop/laptop) */
.searchDetails .body .data .srAllBc .sinbc {
    width: 11%;
    margin: 0 5px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* ✅ Mobile view (max 767px) — show 3 per row */
@media (max-width: 767px) {
    .searchDetails .body .data .srAllBc {
        justify-content: space-between;
    }

    .searchDetails .body .data .srAllBc .sinbc {
        width: 32%;
        /* roughly 3 per row with small gaps */
        margin: 0 0 10px 0;
    }
}

/* ✅ Tablet view (768px – 1023px) — show 4 per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .searchDetails .body .data .srAllBc .sinbc {
        width: 23%;
        /* 4 per row */
    }
}


.notification {
    position: absolute;
    right: 100%;
    top: 0;
    height: 95vh;
    z-index: 999;
    width: 390px;
    background: var(--white);
    padding: 15px;
}

.notification.active {
    right: 0%;
}

.notification .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color);
}

.notification .content .body {
    background: var(--secondry-bg);
    height: 80vh;
    margin-top: 2vh;
    padding: 10px;
    overflow: hidden;
}

.notification .content .body ul {
    display: flex;
    justify-content: space-between;
    background: var(--secondry-bg-hover);
    border-radius: 5px;
    margin-bottom: 15px;
}

.notification .content .body ul li {
    width: calc(33% - 24px);
    padding: 7px 12px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
}


.notification .content .body ul li.active {
    background: var(--white);
}

.notification .content .body .info {
    overflow: hidden;
}

.notification .content .body .info .promotion {
    height: 77vh;
    overflow: scroll;
}

.notification .content .body .info .promotion .sinPromo {
    background: var(--white);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.notification .content .body .info .promotion .sinPromo h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color);
}

.notification .content .body .info .promotion .sinPromo h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.notification .content .body .info .promotion .sinPromo .ggg {
    height: 100px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.notification .content .body .info .promotion .sinPromo .ggg.active {
    height: auto;
    overflow: hidden;
}

.notification .content .body .info .promotion .sinPromo .ggg img {
    margin-bottom: 10px;
}

.notification .content .body .info .promotion .sinPromo .ggg p {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    line-height: 20px;
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide {
    text-align: right;
    position: absolute;
    bottom: 15px;
    right: 10px;
    cursor: pointer;
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide .show {
    padding: 8px 12px;
    border-radius: 5px;
    background: var(--secondry-bg-hover);
    font-size: 13px;
    color: var(--color);
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide .hide {
    padding: 8px 12px;
    border-radius: 5px;
    background: var(--secondry-bg-hover);
    font-size: 13px;
    color: var(--color);
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide .show {
    display: block;
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide .hide {
    display: none;
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide.active .hide {
    display: block;
}

.notification .content .body .info .promotion .sinPromo .ggg .showHide.active .show {
    display: none;
}

.notification .content .body .info .promotion .sinPromo .det {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification .content .body .info .promotion .sinPromo .det a {
    background: var(--secondry-bg);
    padding: 8px 12px;
    color: var(--color);
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
}

.notification .content .body .info .promotion .sinPromo .det a svg {
    background: transparent;
    width: 15px;
    fill: var(--color);
}

.notification .content .body .info .tabpan {
    display: none;
}

.notification .content .body .info .promotion.active {
    display: block;
}

.notification .content .body .info .transactions.active {
    display: block;
}

.notification .content .body .info .system.active {
    display: block;
}

.notification .content .body .info .tabpan {}

.notification .content .body .info .transactions {
    padding: 10px;
}

.notification .content .body .info .transactions img {}

.notification .content .body .info .transactions h5 {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.notification .content .body .info .system {
    background: var(--white);
    padding: 10px;
    border-radius: 5px;
}

.notification .content .body .info .system h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 10px;
}

.notification .content .body .info .system h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color);
    margin-bottom: 10px;
}

.notification .content .body .info .system p {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    line-height: 20px;
}




.slick-dots {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: inline-flex !important;
    border-radius: 0 !important;
    width: auto;
    padding: 0 !important;
    border-radius: 0 !important;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button,
.slick-dots li button {
    padding: 4px;

}

.slick-dots li.slick-active button,
.slick-dots li.slick-active button {
    background: #31ee91;
    color: var(--secondry-bg);
}



.heroSlider {
    margin: 5px;

}

.heroSlider .item {
    margin: 0 5px;
}

.heroSlider .item img {}

.heroSlider .item .garadientColor {
    /* position: absolute;
    background: #000;
    width: 600px;
    height: 600px;
    top: 0;
    left: 0; */
}


.footerMenu {
    display: none;
}

.fmenuBig {
    display: none;
}


/* Search Bar */
.search-bar {
    padding: 15px;
    background: #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar input {
    width: 90%;
    max-width: 500px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: #2b2b2b;
    color: #fff;
}

.search-bar input:focus {
    outline: 2px solid #ff9800;
}

/* Horizontal Menu */
.menu-section {
    background: #141414;
    padding: 10px 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.menu-section::-webkit-scrollbar {
    display: none;
}

.menu-items {
    display: inline-flex;
    gap: 15px;
}

.menu-items a {
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    background: #2b2b2b;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
}

.menu-items a:hover {
    background: #ff9800;
    color: #000;
}

/* Section */
.section {
    margin: 10px 15px;
    /* Normal gap */
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Scroll buttons (like screenshot) */
.scroll-btns {
    display: flex;
    gap: 8px;
}

.scroll-btns button {
    background: #232626;
    border: none;
    color: #fff;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
}

.scroll-btns button:hover {
    background: #ff9800;
    color: #000;
    transform: scale(1.05);
}

/* Game Slider */
.game-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.game-slider::-webkit-scrollbar {
    display: none;
}

.game-card {
    flex: 0 0 auto;
    width: calc(33.33% - 8px);
    /* Mobile default 3 per row */
    background: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.game-card:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (min-width: 768px) {
    .game-card {
        width: calc(16.66% - 10px);
        /* Desktop 6 per row */
    }

    .game-card img {
        height: 180px;
    }
}

/* ===== BODY ===== */


/* ===== TOP ICON MENU ===== */
.top-menu {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 15px;
    background: #292C2D;
    scrollbar-width: none;
    cursor: grab;
}

.top-menu::-webkit-scrollbar {
    display: none;
}

.top-menu .menu-item {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.top-menu .menu-item:hover {
    background: #555;
}

/* ===== BANNER SLIDER ===== */
.banner-slider {
    height: 180px;
    margin: 20px 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.5s;
}

.banner-slider img.active {
    display: block;
}

/* Slider Dots */
.dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots span.active {
    background: #00ff88;
}

/* ===== SECTION ODDS ===== */
.section {
    margin: 30px 0;
    padding: 0 15px;
    position: relative;
}

.section h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Odds Container */
.odds-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.odds-container::-webkit-scrollbar {
    display: none;
}

/* Odds Box */
.odds-box {
    flex: 0 0 300px;
    background: #232626;
    border-radius: 12px;
    padding: 15px;
}

.odds-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.league-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
}

.teams {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.flags {
    display: flex;
    gap: 5px;
    font-size: 20px;
}

/* Odds Numbers */
.odds {
    display: flex;
    gap: 10px;
}

.odds button {
    flex: 1;
    padding: 10px;
    background: #333;
    border: none;
    border-radius: 8px;
    color: #00ff88;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.odds button:hover {
    background: #555;
}

/* Section Arrows */
.arrow {
    background: #232626;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    background: #444;
}

@media(max-width:768px) {
    .odds-box {
        flex: 0 0 90%;
    }
}

/* ====== Header Banner ====== */
.lottery-banner {
    background: linear-gradient(135deg, #1f4d2e, #256d39);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lottery-banner h2 {
    font-size: 20px;
    font-weight: bold;
}

.lottery-banner p {
    font-size: 14px;
    opacity: 0.8;
}

.lottery-banner a {
    color: #4ade80;
    font-size: 14px;
    text-decoration: underline;
}

/* ====== Search Box ====== */
.search-box {
    margin: 15px 0;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

/* ====== Section Title ====== */
.section-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title button {
    background: #222;
    color: #fff;
    font-size: 13px;
    border: 1px solid #444;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* ====== Lottery Cards ====== */
.lottery-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.card {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 14px;
    font-weight: bold;
}

.card-header img {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.card-amount {
    font-size: 18px;
    font-weight: bold;
    color: #4ade80;
}

.card-timer {
    font-size: 14px;
    color: #aaa;
}

.countdown {
    font-size: 14px;
    font-weight: bold;
    color: #f87171;
}

.btn {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: #2e2e2e;
    border: 1px solid #444;
    color: #fff;
    font-size: 13px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #444;
}

.btn-group {
    display: flex;
    gap: 8px;
}

/* ====== Responsive ====== */
@media (max-width: 600px) {
    .lottery-banner h2 {
        font-size: 18px;
    }

    .lottery-banner p {
        font-size: 13px;
    }

    .card {
        padding: 12px;
    }

    .card-amount {
        font-size: 16px;
    }

    .btn-group {
        flex-direction: column;
    }
}

.ludu-banner {
    background: linear-gradient(135deg, #5b21b6, #7c3aed, #a855f7);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.ludu-banner h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ludu-banner p {
    font-size: 15px;
    opacity: 0.9;
}

/* Search */
.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #1c1c1c;
    color: #eee;
}

.search-box::after {
    content: "🔍";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title button {
    background: #222;
    border: 1px solid #444;
    color: #ddd;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.section-title button:hover {
    background: #333;
}

.tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.table-card {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: 0.3s;
}

.table-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h3 {
    font-size: 16px;
    font-weight: 600;
}

/* === Facebook style LIVE Badge === */
.live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.3;
    }
}

.players,
.mode {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #aaa;
}

.bet-info {
    font-size: 15px;
    font-weight: 600;
    color: #4ade80;
}

.countdown {
    font-size: 13px;
    color: #fbbf24;
    font-weight: 500;
}

.btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

@media(max-width:600px) {
    .ludu-banner h2 {
        font-size: 22px;
    }

    .table-card {
        padding: 14px;
    }

    .btn {
        font-size: 14px;
    }
}

.container {
    max-width: var(--max);
    margin: 28px auto;
    padding: 0 18px
}

header.hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: center;
    margin-bottom: 22px
}

@media (max-width:900px) {
    header.hero {
        grid-template-columns: 1fr;
    }
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(2, 6, 23, 0.6)
}

.hero h1 {
    margin: 0 0 8px;
    font-size: 28px
}

.hero p.lead {
    color: var(--muted);
    margin: 0 0 16px
}

.stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.stat {
    background: var(--glass);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    color: #dff8ff
}

.mission {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.06), rgba(59, 130, 246, 0.02));
    padding: 20px;
    border-radius: 12px
}

.mission small {
    color: var(--muted)
}

.section {
    margin: 22px 0
}

.section h2 {
    margin: 0 0 12px
}

.grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width:1000px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .grid {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6)
}

.team-card {
    display: flex;
    gap: 12px;
    align-items: center
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover
}

.tmeta h4 {
    margin: 0;
    font-size: 16px
}

.tmeta p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px
}

.headline {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between
}

.headline h3 {
    margin: 0
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px
}

.content-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    padding: 14px;
    border-radius: 10px
}

.content-item h4 {
    margin: 0 0 8px
}

.content-item p {
    margin: 0;
    color: var(--muted)
}

:root {
    --bg: #0f1723;
    --card: #0b1220;
    --muted: #9aa4b2;
    --accent: #ffb86b;
    --accent2: #7ce7c7;
    --glass: rgba(255, 255, 255, 0.03);
    --radius: 12px;
    --gap: 18px;
    --max-width: 1200px;
    --text: #e6eef6;
}

/* Reset */
.wrap {
    box-sizing: border-box;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    /* Left-right padding restore */
    width: 100%;
}


html,
body {
    height: 100%
}

body {
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(180deg, var(--bg) 0%, #071126 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%
}

.sponsors-header {
    text-align: center;
    margin-bottom: 18px
}

.sponsors-header h2 {
    font-size: 28px;
    letter-spacing: 0.2px
}

.sponsors-header .subtitle {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px
}

/* Carousel */
.logo-carousel {
    overflow: hidden;
    margin: 22px 0;
    background: var(--glass);
    border-radius: 10px;
    padding: 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.logo-track {
    display: flex;
    gap: 22px;
    align-items: center;
    will-change: transform;
    transform: translateX(0)
}

.logo-item {
    min-width: 140px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent)
}

.logo-item img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05) saturate(0.95)
}

/* tier cards */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 18px
}

.tier-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .22s ease, box-shadow .22s ease
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6)
}

.tier-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent);
    border: 1px solid rgba(255, 184, 107, 0.12)
}

.tier-card h3 {
    margin: 12px 0 6px;
    font-size: 18px
}

.tier-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 12px
}

.tier-card ul {
    margin: 0 0 12px 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px
}

.cta {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
    color: #072228
}

.cta-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--accent2)
}

.cta-ghost {
    background: transparent;
    border: none;
    color: var(--muted)
}

.sponsors-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02)
}

.sponsors-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.contact-btn {
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    background: var(--accent2);
    color: #022b27;
    font-weight: 700
}

/* small accents */
.tier-premium {
    outline: 3px solid rgba(255, 184, 107, 0.06)
}

.tier-gold {
    outline: 3px solid rgba(255, 215, 110, 0.03)
}

.tier-standard {
    outline: 3px solid rgba(124, 231, 199, 0.03)
}

/* Responsive */
@media(max-width:980px) {
    .tier-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .logo-item {
        min-width: 120px
    }
}

@media(max-width:640px) {
    .tier-grid {
        grid-template-columns: 1fr
    }

    .sponsors-header h2 {
        font-size: 20px
    }

    .logo-item {
        min-width: 90px
    }

    .sponsors-footer {
        flex-direction: column;
        align-items: stretch
    }

    .sponsors-footer .contact-btn {
        width: 100%;
        text-align: center
    }
}

/* Accessibility helper */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* searchDetails end */
/* Right Side */


/* Game Lobby Styles */
.game-lobby-container {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.provider-section {
    margin-bottom: 40px;
}

.provider-title {
    color: #e2e8f0;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
}

.game-card {
    background-color: #2d3748;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    text-decoration: none !important;
    color: #e2e8f0 !important;
    transition: transform 0.2s ease-in-out;
    display: block;
}

.game-card:hover {
    transform: translateY(-5px);
    background-color: #4a5568;
}

.game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 1px solid #4a5568;
    display: block;
}

.game-card-name {
    padding: 12px 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}