@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
}

body.first-landing {
    background-image: url(../images/bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.main-wrapper {
    overflow-x: hidden;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s;
}

.header-link:hover {
    color: #f9b300;
}

.header-link.active {
    color: #f9b300;
}

.btn-header {
    background: linear-gradient(0deg, rgba(59, 0, 0, 1) 0%, rgba(255, 0, 0, 1) 100%);
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    border: 3px solid #f5d174;
}

.hero-logo img {
    width: 325px;
}

.hero-content {
    text-align: center;
}

.hero-content p {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 10px;
}

.btn-hero {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    margin-top: 20px;
    /* background-color: #fff; */
    border: 4px solid #f5d174;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(0deg, rgba(59, 0, 0, 1) 0%, rgba(255, 0, 0, 1) 100%);
    text-transform: uppercase;
}

.box-section {
    margin-top: 100px;
}

.service-box {
    width: 260px;
    height: 190px;
    background: linear-gradient(180deg, #1b0f7a, #08013f);
    border-radius: 13px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    border: 3px solid #f5d174;
    box-shadow: 0px 0px 10px 5px rgba(245, 209, 116, 0.5);
}

.service-box img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
}

.service-details {
    margin-top: 60px;
}

.service-details h6 {
    color: #f9b300;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

.service-details p {
    color: #cdcdcd;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    padding: 0 20px;
}

.tab-box .nav-pills {
    justify-content: space-between;
}

.tab-box .nav-pills .nav-item {
    width: 33.33%;
    padding: 8px 16px;
}

.tab-box .nav-pills .nav-item button {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    box-shadow: none;
    border: 0;
    background-color: transparent;
    transition: all 0.3s;
    text-transform: capitalize;
}

.tab-box .nav-pills .nav-item button img {
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

.tab-box .nav-pills .nav-item button.active {
    background-color: transparent;
    color: #f9b300;
}

.tab-box .nav-pills .nav-item button:hover {
    color: #f9b300;
}

.tab-box {
    background-color: rgba(27, 15, 122, 0.6);
}

.main-tab-content .hero-content h1 {
    font-size: 40px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-tab-content .hero-content h1 span {
    color: #f9b300;
}

#landing-tabContent {
    margin-top: 50px;
}

.promotion-tab-content .swiper-slide img {
    width: 100%;
    border-radius: 13px;
}

.promotion-tab-content .swiper-pagination {
    position: unset;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-tab-content .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}

.promotion-tab-content .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    background-color: rgba(255, 255, 255, 1);
}

.how-to-play-section .nav-pills {
    justify-content: center;
}

.how-to-play-section .nav-pills .nav-item {
    min-width: 120px;
}

.how-to-play-section .nav-pills .nav-item button {
    padding: 15px 30px;
    box-shadow: none;
    border: 0;
    background-color: rgba(9, 2, 66, 0.6);
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    border-radius: 0;
}

.how-to-play-section .nav-pills .nav-item:first-child button {
    border-radius: 6px 0 0 6px;
}

.how-to-play-section .nav-pills .nav-item:last-child button {
    border-radius: 0 6px 6px 0;
}

.how-to-play-section .nav-pills .nav-item button.active {
    color: #f9b300;
    background-color: rgba(9, 2, 66, 0.6);
}

.how-to-play-box img {
    width: 120px;
    margin-bottom: 20px;
}

.how-to-play-box h6 {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    color: #f9b300;
    margin-bottom: 10px;
    text-align: center;
}

.how-to-play-box p {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
    padding: 0 50px;
}

.how-to-play-box {
    text-align: center;
}

.how-to-play-section {
    overflow: hidden;
}

.how-to-play-section-inner {
    margin-top: 50px;
}

.tab-box:after,
.tab-box:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, #eab671 50%, transparent 90%);
}

.service-box-inner {
    text-align: center;
    border-radius: 13px;
    height: calc(100% - 70px);
    padding: 20px 30px;
    background: linear-gradient(180deg, #1b0f7a, #08013f);
    border: 3px solid #f5d174;
    box-shadow: 0px 0px 10px 5px rgba(245, 209, 116, 0.5);
    margin-bottom: 70px;
}

.service-box-inner img {
    width: 100px;
    margin-top: -70px;
    margin-bottom: 20px;
}

.service-box-inner h5 {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 15px;
}

.service-box-inner h5 span {
    color: #f9b300;
}

.service-box-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 0;
}

.service-section-inner {
    margin-top: 30px;
    padding-bottom: 0 !important;
}

.footer-top {
    padding: 50px 0 20px;
}

.footer-top ul {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-top ul li {
    list-style: none;
}

.footer-top ul li a {
    text-decoration: none;
    color: #fff;
    background-color: rgba(9, 2, 66, 0.6);
    border-radius: 6px;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
    display: flex;
}

.footer-bottom {
    padding: 10px 0 20px;
}

.footer-bottom p {
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
}

.custom-padding {
    padding: 90px 0;
}

.header-logo img {
    width: 210px;
}

.header-logo a {
    text-decoration: none;
    display: flex;
}


/*---------second landing----------*/

.second-landing-screen {
    background: url(../images/home_bg.jpg), #201106;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.landing-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-header-logo img {
    height: 70px;
    object-fit: cover;
}

.landing-header-logo a {
    text-decoration: none;
    display: flex;
}

.landing-header {
    padding: 14px 0;
    border-bottom: 2px solid #5c1a06;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    z-index: 9;
    background-color: #201106;
}

.landing-header-link-row-1 {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.btn-forgot {
    color: #f9b300;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    display: flex;
}

#datetime {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    min-width: 180px;
    text-align: end;
}

.landing-header-link-row-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.landing-header-link-row-2 .form-control {
    box-shadow: none;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 12px;
    border-radius: 3px;
    max-width: 150px;
}

.landing-header-link-row-2 .form-control::placeholder {
    text-transform: capitalize;
    font-size: 12px;
    line-height: 12px;
}

.btn-header-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 20px;
    text-decoration: none;
    border-radius: 3px;
}

.btn-header-link img {
    width: 24px;
    flex-shrink: 0;
}

.btn-login,
.btn-deposit {
    background: linear-gradient(180deg, #ffbb5a, #895415);
    color: #fff;
}

.btn-join-now,
.btn-withdraw {
    background: linear-gradient(180deg, #c61101, #942416);
    color: #fff;
}

.btn-login-line {
    background: #00c300;
    color: #000;
    padding: 5px 20px;
}

.left-menu {
    position: fixed;
    top: 193px;
    overflow-y: auto;
    overflow-x: hidden;
    left: 15px;
    background-color: rgba(35, 22, 0, .8);
    padding: 16px;
    height: calc(100% - 210px);
    border-radius: 10px;
    width: 300px;
    z-index: 9;
    transition: all 0.5s;
}

.btn-vip-link {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    border-radius: 3px;
    padding: 4px;
}

.btn-vip-link img {
    width: 30px;
    flex-shrink: 0;
}

.vip-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
}

.btn-daily-mission {
    background: linear-gradient(136deg, rgb(0, 25, 255) 0%, rgb(0, 209, 255) 100%), rgba(255, 255, 255, 0.05);
}

.btn-lucky-wheel {
    background: linear-gradient(316deg, rgb(176, 47, 255) 0%, rgb(66, 0, 255) 100%), rgba(255, 255, 255, 0.05);
}

.btn-referral {
    background: linear-gradient(315deg, rgb(255, 175, 56) 0%, rgb(255, 92, 0) 100%), rgba(255, 255, 255, 0.05);
}

.btn-vip {
    background: linear-gradient(316deg, rgb(255, 95, 220) 0%, rgb(255, 0, 61) 100%), rgba(255, 255, 255, 0.05);
}

.btn-promotion {
    background: linear-gradient(316deg, rgb(255, 0, 92) 0%, rgb(166, 0, 40) 100%), rgba(255, 255, 255, 0.05);
}

.btn-download {
    background: linear-gradient(316deg, rgb(188, 47, 255) 0%, rgb(0, 26, 255) 100%), rgba(255, 255, 255, 0.05);
}

.left-menu-link-block {
    background-color: rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 6px;
    margin-top: 16px;
    padding: 6px 0;
}

.left-menu-link-block .btn-left-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 16px;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s;
}

.left-menu-link-block .btn-left-menu-link img {
    width: 30px;
    flex-shrink: 0;
}

.main-screen {
    margin-left: 330px;
    padding-top: 193px;
    margin-right: 15px;
    padding-bottom: 20px;
}

.landing-banner-section {
    border-radius: 13px;
    overflow: hidden;
}

.landing-banner-slider .swiper-slide {
    border-radius: 13px;
}

.landing-banner-slider .swiper-slide img {
    border-radius: 13px;
}

.landing-banner-slider .swiper-pagination {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-banner-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 1);
    opacity: 1;
}

.landing-banner-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    background-color: #f9b300;
}

.cta-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.cta-section .btn-cta {
    text-decoration: none;
    display: flex;
}

.cta-section .btn-cta img {
    border-radius: 13px;
    box-shadow: rgba(146, 118, 79, 0.3) 0px 3px 15px 5px;
    border: 0.01rem solid rgb(146, 118, 79);
}

.provider-block {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
}

.povider-block {
    border: 1px solid #6a6a6a;
    text-align: center;
    transition: all 0.3s;
}

.povider-block img {
    height: 40px;
    object-fit: cover;
    transition: all 0.3s;
}

.game-sliders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-sliders-header h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #f9b300;
    margin-bottom: 0;
    text-transform: capitalize;
}

.slider-controllers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-game-navigation {
    border: 0;
    box-shadow: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.landing-game-navigation img {
    width: 12px;
    flex-shrink: 0;
}

.game-slider-block {
    margin-top: 10px;
}

.game-slider-box-img {
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
}

.game-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.game-slider-box:hover .game-overlay {
    opacity: 1;
}

.game-overlay .btn-play-game {
    border: 0;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.2);
    transition-duration: 0.3s;
    transition-property: all;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-overlay .btn-play-game img {
    width: 28px;
}

.game-sliders {
    margin-top: 20px;
}

.landing-game-navigation.swiper-button-disabled {
    opacity: 0.4;
}

.game-slider-box-details {
    background-color: #201106;
    border-radius: 0 0 8px 8px;
    text-align: center;
    padding: 8px 5px;
}

.game-slider-box-details h5 {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 5px;
}

.game-slider-box-details h6 {
    color: #f9b300;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 0px;
}

.winning-block-section {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
}

.winning-box-2 {
    grid-column: span 2 / span 2;
}

.winning-box-3 {
    grid-column-start: 4;
}

.winning-box {
    height: 200px;
    border: 1px solid #f9b300;
    overflow: hidden;
    border-radius: 13px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(32, 17, 6, 1) 0%, rgb(143 37 0) 100%);
}

.winning-box h6 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.winning-box h1 {
    font-size: 26px;
    line-height: 26px;
    font-weight: 500;
    color: #00c300;
    margin-bottom: 0;
}

.box-bottom p {
    color: #ffbb5a;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
}

.box-bottom .btn-winning-button {
    background: linear-gradient(360deg, rgba(205, 160, 64, 0.4) 0%, rgba(205, 160, 64, 0) 100%);
    border: 1px solid #f9b300;
    border-radius: 100px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 8px 30px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
}

.box-bottom {
    margin-top: 30px;
}

.winning-box.winning-box-2 h1 {
    font-size: 30px;
    line-height: 30px;
    color: #f9b300;
}

.winning-box.winning-box-2 .box-bottom .btn-winning-button {
    min-width: 300px;
    justify-content: center;
}

.user-activity-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.user-activity-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f9b300;
    background: rgba(32, 17, 6, 0.9);
    border-radius: 10px;
}

.user-activity-data h5,
.user-activity-data h6 {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
}

.user-activity-data h4 {
    color: #ffbb5a;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
    margin-top: 8px;
}

.footer {
    background-color: rgba(32, 17, 6, 0.8);
    margin-top: 30px;
    padding: 40px 25px 20px;
    border-radius: 10px;
}

.footer.landing-footer {
    background-color: rgba(27, 15, 122, 0.6);
}

.footer-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 150px;
}

.footer-link-section-block h4 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
}

.footer-link-section {
    display: flex;
    justify-content: space-between;
}

.products-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-link-section-block ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-link-section-block ul li {
    list-style: none;
    margin-top: 15px;
}

.footer-link-section-block ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    display: flex;
    transition: all 0.3s;
}

.game-license-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.game-license-section img {
    height: 40px;
    object-fit: cover;
}

.footer-text {
    margin-top: 30px;
}

.footer-text p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}

.payment-section {
    margin-top: 40px;
}

.payment-section h4 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
}

.payment-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

.payment-row img {
    height: 35px;
    object-fit: cover;
}

.header-page-link-section {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #4a2408;
    margin-top: 10px;
}

.header-page-link-section .btn-header-page-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    font-weight: 400;
    transition: all 0.3s;
}

.header-page-link-section .btn-header-page-link.active {
    color: #f9b300;
}

.header-page-link-section .btn-header-page-link img {
    width: 30px;
    flex-shrink: 0;
}

.user-info p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
    text-align: end;
    padding-right: 5px;
}

.balance-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    background-color: #723b12;
    border-radius: 100px;
    padding: 4px 9px;
}

.balance-info .coin-img {
    width: 18px;
}

.balance-info h6 {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
}

.balance-info .btn-refresh {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-shrink: 0;
}

.balance-info .btn-refresh img {
    width: 13px;
}

.btn-profile {
    background-color: transparent;
    box-shadow: none;
    border: 0;
    display: flex;
    flex-shrink: 0;
}

.btn-profile img {
    width: 50px;
}

.custom-modal .modal-content {
    background-color: #201106;
    border: 1px solid #f0ae51;
    border-radius: 13px;
    overflow: hidden;
}

.custom-modal .modal-header {
    position: relative;
    border: 0;
    padding: 0;
}

.custom-modal .modal-header h1 {
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: center;
}

.custom-modal .modal-header .btn-close-modal {
    background-color: #c36725;
    border: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 10px;
    z-index: 9;
}

.custom-modal .modal-header .btn-close-modal img {
    width: 15px;
}

.custom-modal .modal-body {
    padding: 30px;
    text-align: center;
}

.custom-modal .modal-body h1 {
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: center;
}

.btn-transfer-self {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    color: #fff;
    background-color: #c36725;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}

.btn-transfer-self img {
    width: 24px;
    flex-shrink: 0;
}

.deposite-profile {
    border-top: 1px solid #c36725;
    border-bottom: 1px solid #c36725;
    margin-top: 20px;
    padding: 20px 0;
}

.deposite-profile-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.deposite-profile-box .bank-logo {
    width: 60px;
    flex-shrink: 0;
    border-radius: 50%;
}

.bank-profile-name {
    display: flex;
    align-items: start;
    gap: 20px;
}

.deposite-profile-details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 5px;
    color: #fff;
    text-align: start;
}

.bank-profile-name h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 5px;
    color: #fff;
    text-align: start;
}

.bank-profile-name h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
    color: #fff;
    text-align: start;
}

.btn-name-copy {
    text-decoration: none;
    background-color: #5c1a06;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    padding: 6px 12px;
    display: inline-flex;
    border-radius: 50px;
    text-transform: capitalize;
}

.deposit-rewards-options {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
}

.deposit-rewards-box {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #f9b300;
    border-radius: 20px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.deposit-rewards-box.active {
    background-color: rgba(83, 40, 9, 0.8);
}

.deposit-rewards-box img {
    flex-shrink: 0;
    width: 32px;
}

.deposit-rewards-box p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    text-align: center;
    text-transform: capitalize;
}

.amount-box {
    margin-top: 30px;
}

.amount-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amount-info h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.amount-info p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
}

.quantity {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
    background-color: #fff;
    align-items: center;
    padding: 0 15px;
}

.quantity button {
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #BDBDBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.input-box {
    width: 100%;
    text-align: center;
    border: none;
    padding: 10px;
    outline: none;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
}

.quick-amount {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.quick-amount .btn-quick-amount {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
    background-color: rgba(83, 40, 9, 0.8);
    border: 0;
    border-radius: 8px;
    padding: 10px 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-title {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.promotions-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promotions-blocks .btn-promotion-box {
    display: inline-flex;
    border-radius: 13px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #f9b300;
}

.promotions-blocks .btn-promotion-box img {
    transition: all 0.3s;
}

.promotion-modal-body {
    margin-top: 20px;
}

.promotion-modal-body p {
    color: #f9b300;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
}

.promotion-modal-body img {
    border: 1px solid #c36725;
    border-radius: 13px;
    margin-bottom: 15px;
    width: 80%;
}

.promotion-modal-body .btn-transfer-self {
    text-transform: capitalize;
}

.privilegs-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.privilegs-box {
    border-radius: 13px;
    overflow: hidden;
    text-decoration: none;
}

.privilegs-box img {
    width: 100%;
}

.privilegs-detail-blocks {
    margin-top: 70px;
    text-align: center;
}

.privilegs-detail-blocks img {
    width: 500px;
}

.privilegs-detail-blocks h1 {
    color: #fff;
    font-weight: 600;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 0;
    margin-top: 30px;
}

.privilegs-detail-blocks h1 span {
    color: #f9b300;
}

.privilegs-detail-blocks ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
}

.privilegs-detail-blocks ul li {
    list-style: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    text-align: start;
    margin-bottom: 15px;
}

.slot-banner-slider .slot-banner-link {
    display: flex;
    border-radius: 13px;
    overflow: hidden;
}

.slot-banner-slider .slot-banner-link img {
    width: 100%;
}

.slot-banner-slider .swiper-pagination {
    position: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.slot-banner-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 1);
    opacity: 1;
}

.slot-banner-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    background-color: #f9b300;
}

.slots-game-block {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.slots-game-box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.slots-game-box img {
    width: 100%;
}

.slots-game-box:hover .game-overlay {
    opacity: 1;
}

.btn-notification {
    position: fixed;
    top: 80px;
    right: 10px;
    background-color: transparent;
    box-shadow: none;
    border: 0;
    display: flex;
    z-index: 10;
}

.btn-notification img {
    width: 75px;
}

.notifcations-box {
    background-color: #895415;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.notifcations-box img {
    width: 75px;
}

.notifcations-box h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 10px;
    text-align: start;
}

.notifcations-box p {
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #fff;
    margin-bottom: 0;
    text-align: start;
}

.notifcations-block {
    margin-top: 30px;
}

.notifcations-block .notifcations-box:last-child {
    margin-bottom: 0;
}

.main-screen.ranking-screen {
    margin-left: 15px;
}

.ranking-screen-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.ranking-screen-top .cover-bet-logo {
    width: 150px;
}

.ranking-screen-top .cover-text {
    width: 450px;
}

.ranking-screen-section {
    margin-top: 40px
}

#countdown ul {
    margin-bottom: 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    padding: 10px 10px 15px;
}

#countdown ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4e2608;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    gap: 5px;
    min-width: 95px;
    border-right: 1px solid #201106;
    padding: 0 20px;
}

#countdown ul li:last-child {
    border-right: 0;
}

#countdown ul li span {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
}

.ranking-screen-top h2 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 20px;
}

.ranking-screen-top p {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 0;
    text-align: center;
}

.ranking-table-section {
    margin-top: 50px;
}

.ranking-table-block {
    width: 55%;
    margin: 0 auto;
    border: 1px solid #f9b300;
    border-radius: 10px;
    overflow: hidden;
}

.ranking-table-block .nav-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    background-color: #201106;
    border: 0;
}

.ranking-table-block .nav-tabs .nav-link {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    color: #999999;
    padding: 15px 15px;
    position: relative;
}

.ranking-table-block .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9b300;
    width: 50px;
    height: 3px;
    border-radius: 10px;
    opacity: 0;
}

.ranking-table-block .nav-tabs .nav-link.active {
    color: #fff;
}

.ranking-table-block .nav-tabs .nav-link.active::after {
    opacity: 1;
}

.ranking-table-block .tab-content {
    background-color: rgba(83, 40, 9, 0.8);
}

.ranking-table-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.ranking-table-header p {
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #f9b300;
    text-transform: capitalize;
}

.ranking-table-box {
    padding: 30px 20px;
}

.ranking-table-body {
    margin-top: 15px;
}

.ranking-table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    align-items: center;
    background-color: rgba(32, 17, 6, 0.5);
    border-radius: 10px;
    padding: 5px 0;
    margin-bottom: 10px;
}

.ranking-table-body .ranking-table-row:last-child {
    margin-bottom: 0;
}

.badge-block {
    text-align: center;
}

.badge-block img {
    width: 65px;
}

.user-detials {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.user-detials img {
    width: 55px;
}

.user-detials h1 {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 8px;
}

.user-detials p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
}

.win-amount h1,
.reward-block p {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center;
}

.reward-block {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.reward-block .trophy-img {
    width: 50px;
    flex-shrink: 0;
}

.reward-block .reward-img {
    width: 40px;
    flex-shrink: 0;
}

.other-rank-table-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.other-rank-table-block .badge-block h2 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center;
}

.other-rank-table-block .win-amount h1,
.other-rank-table-block .reward-block p {
    font-size: 16px;
    line-height: 16px;
}

.other-rank-table-block .user-detials img {
    width: 45px;
}

.other-rank-table-block .user-detials h1 {
    font-size: 16px;
    line-height: 16px;
}

.other-rank-table-block .reward-block .reward-img {
    width: 35px;
    flex-shrink: 0;
}

.profile-body ul {
    border: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.profile-body .nav-link,
.profile-body .btn-logout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    text-align: center;
    background-color: #201106;
    border-radius: 10px;
    border: 1px solid #f9b300 !important;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 16px;
    transition: all 0.3s;
}

.profile-body .nav-link img,
.profile-body .btn-logout img {
    width: 30px;
    flex-shrink: 0;
}

.profile-body .nav-link.active {
    background-color: rgba(83, 40, 9, 0.8);
    color: #fff;
}

.profile-body {
    margin-top: 30px;
}

.profile-body .tab-content {
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid #f9b300;
}

.profile-body .tab-content .tab-pane {
    background-color: transparent;
    border: 0;
    border-radius: 0;
}

.profile-body .tab-content .accordion-body h1 {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: capitalize;
}

.profile-body .accordion-body {
    padding: 20px;
}

.account-rank-img {
    width: 80px;
    margin-top: 15px;
}

.profile-body .username-block {
    margin-top: 15px;
}

.profile-body .username-block p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
}

.profile-body .username-block a {
    color: #f9b300;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    margin-top: 5px;
}

.profile-infomarion {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(83, 40, 9, 0.8);
    border-radius: 10px;
    padding: 10px 10px;
    width: 40%;
    justify-content: center;
    margin-top: 15px;
}

.profile-infomarion img {
    width: 60px;
}

.profile-infomarion-div p {
    color: #999999;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
    text-align: start;
}

.profile-infomarion-div h2 {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 8px;
    text-align: start;
}

.query-row p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
    margin-top: 20px;
}

.query-row p a {
    text-decoration: none;
    color: #f9b300;
}

.coupon-block p {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    color: #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
}

.coupon-block p img {
    width: 20px;
    flex-shrink: 0;
}

.use-coupon-img {
    width: 300px;
    margin: 20px 0;
}

.profile-body .accordion-body .btn-transfer-self {
    width: 75%;
    margin: 20px auto 0;
}

.ranks-right-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #4a2408;
    padding: 10px 0;
}

.ranks-right-box img {
    width: 50px;
    flex-shrink: 0;
}

.ranks-right-details h6 {
    color: #fff;
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0;
    display: flex;
    align-items: start;
    gap: 10px;
    text-align: start;
}

.ranks-right-details h6:first-child {
    margin-bottom: 6px;
}

.ranks-right-details h6 p {
    margin-bottom: 0;
}

.ranks-right-block {
    margin-top: 30px;
}

.ranks-right-block .ranks-right-box:first-child {
    padding-top: 0;
}

.ranks-right-block .ranks-right-box:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}