body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
    font-family: 'Rubik';
    color: #333333;
    width: 100%;

    background: url("../img/theme-bg.png") no-repeat center center fixed;
    background-size: cover;
}
  :root{
    --bg: #0a0c10;
    --panel: #14161c;
    --panel-edge: #1f222a;
    --gold-1: #f5cf7d;
    --gold-2: #c9922f;
    --gold-3: #6b4d1a;
    --text-main: #f2e9d8;
    --text-dim: #a89a7c;
    
  }
  
html {
    scroll-behavior: smooth;
}
html, body{
    overflow-x: hidden;

}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #F5C04A, #B67A12);
    border-radius: 20px;
    border: 2px solid #0d0d0d;
}
a,.btn {
    transition: all 0.3s ease-in-out;
}
a.chart-result-btn:hover {
    color: white;
}
button,input,optgroup,select,textarea {
    letter-spacing: 0.5px;
}
input {
    letter-spacing: 0.5px;
    background: #000000;
    border: 1px solid #ccc;
}
p,h1,h2,h3,h4,h5,h6 {
    margin-bottom: 0
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
a {
    text-decoration: none;
}
.container {
    max-width: 1440px;
}
.header-sec {
    padding: 17px 0px;
    background: linear-gradient(160deg, #1f1f1f, #000000);
    position: relative;
    z-index: 99;
    color: #fff;
}
.main-header-info{
  position: relative;  
}
.header-bg{
      position: absolute;
    left: 5%;
    margin: auto;
}
.header {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    /* background-image: url('../img/header-bg.png'); */
    background-position: center;
    background-size: cover;
}
.mobile-num-img img {
    filter: invert(1);
    width: 25px;
    animation: phoneShake 1s infinite;
    transform-origin: center;
}
.whatsapp-num-img img {
    filter: invert(1);
    width: 31px;
}

@keyframes phoneShake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    70% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}
.whatsapp-num-img img {
    width: 30px;
    animation: whatsappBeat 2.5s infinite;
    transform-origin: center;
}
@keyframes whatsappBeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
.header .row {
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    padding-bottom: 0px;
}
.header-menu ul li a {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 9px;
}
.header-menu ul li a:hover {
    color: #ffbe57;
}
.small-btn-bg {
    border: 2px solid #000 !important;
    color: #000 !important;
}
.small-btn-bg {
    border: 2px solid #000;
    color: #000;
}
.small-btn-bg img {
    filter: invert(1);
}
.small-btn-bg:hover img {
    filter: invert(1) !important;
}
.download-btn{
    font-size: 23px;
    display: inline-flex;
    padding: 11px 21px;
    text-transform: uppercase;
    font-weight: 600;
    justify-content: center;
    border-radius: 10px;
    max-width: 398px;
    height: 69px;
    width: 100%;
    align-items: center;
    margin-bottom: 29px;
    gap: 6px;
    position: relative;
    color: #fff;
    text-shadow: 0px 2px 9px black;
    text-decoration: none;
    font-weight: 500;
    z-index: 9999;
    transition: .4s;
}
.download-btn::after{
    content: "";
    background-image: url('../img/btn-bg.png');
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.download-btn::before{
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 9px;
    border: 8px solid rgb(221 122 4);
    animation: pulseRing 1.8s infinite;
    z-index: -1;
}
.download-btn img{
    width: 26px;
    animation: bounceIcon 1s infinite;
}
.hero-text h1 img{
    width: 648px;
    margin-bottom: 17px;
}
.download-btn:hover{
    transform: translateY(-5px) scale(1.05);
}
@keyframes pulseRing{
    0%{
        transform: scale(.9);
        opacity: 1;
    }

    100%{
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes glowBlink{
    from{
        opacity:.4;
    }

    to{
        opacity:1;
    }
}

@keyframes bounceIcon{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(4px);
    }
}

.small-btn {
    font-size: 19px;
    display: inline-flex;
    padding: 11px 21px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    align-items: center;
    margin-bottom: 29px;
    gap: 6px;
    position: relative;
        background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: .4s;
    overflow: hidden;
}
.small-btn::before,.small-btn::after {
    content: "";
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    background: #fff;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 2;
    width: 37px;
    height: 199px;
}
.small-btn::before {
    left: -60%;
}
.small-btn::after {
    left: -100%;
}
.small-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.small-btn:hover::before {
    left: 120%;
    opacity: 0.3;
}
.small-btn:hover::after {
    left: 200%;
    opacity: 0.6;
}
.our-blog-details.no-record {
    margin: auto;
    justify-content: center;
    text-align: center;
}
.read-more-btn {
    color: #c7c7c7;
    font-size: 13px;
    cursor: pointer;
}
.news-date-time span {
    font-size: 13px;
    font-weight: 500;
    color: #c7c7c7;
}
.news-date-time {
    display: flex;
    align-items: center;
    margin-top: 14px;
    border-top: solid 1px #c7c6c673;
    gap: 10px;
    padding-top: 7px;
    justify-content: space-between;
    color: var(--primaryColor);
    font-size: 15px;
}
.our-blog-details {
    column-gap: 19px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    row-gap: 23px;
}
.search-input {
    display: flex;
    max-width: 725px;
margin-left: auto;
    margin-bottom: 46px;
    justify-content: end;
    margin-top: 25px;
    position: relative;
}
.page-section {
   padding: 44px 0px;
}
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 43px 0 10px;
    margin: 0;
}
.page-link:focus{
    box-shadow: none;
}
.loader-bg {
    height: 200px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.loader-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
    margin: 100px auto;
}
.main-blog-content {
    border-radius: 10px;
 background:#0000007d;
    border: 1px solid #ffffff45;
    padding: 20px;
}
.blog-info-inner {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}
.blog-info-inner span {
    color: #e0e0e0;
    font-size: 17px;
    font-weight: 400;
}
.blog-social h2 {
    color: #ffffff;
    font-size: 24px;
}
.blog-share {
    display: flex;
    justify-content: end;
    gap: 9px;
    margin: 0px 10px 10px 10px;
}
.blog-share img {
    width: 30px;
    transition: 0.6s;
}
.blog-share img:hover {
    transform: scale(1.2);
}
img.whatsapp-icon {
    background: #fff;
    border-radius: 50%;
}
.blog-content.blog-content-data .blog-img img {
    border-radius: 8px;
    height: 613px;
    margin-bottom: 28px;
    width: 100%;
}
img.mail-icon {
    filter: invert(1);
}
.news-featured-items-sec .our-project-card {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #64646485;
    box-shadow: none;
    background: #232425;
}
.blog-description p br{
    display: none;
}
.blog-description li br{
    display: none;
}
.blog-description li{
    margin-bottom: 10px;
    font-size: 16px;    
    color: #c1c1c1;
}
.blog-description strong {
    color: #c1c1c1;
    font-weight: 600;
    font-size: 19px;
}
.blog-title {
    color: #ffbc5d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.news-featured-items-sec{
    background: #141515;
    border-radius: 10px;
    box-shadow: 0 2px 6px 1px #312f2f33;
    padding: 16px;
}
.blog-description p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #c1c1c1;
}
.blog-description p strong {
    color: #fff !important;
    font-weight: 500;
}
.form-control:focus{
    box-shadow: none;
}
.our-project-card.no-record {
    width: 100%;
    box-shadow: none;
    margin-top: 50px;
    border: none;
    background: transparent;
}
.our-project-card.no-record p {
    color: #fff;
    margin-top: 21px;
    font-size: 20px;
}
.our-project-card.no-record img {
    width: 234px;
}
.loader-bars span:nth-child(1) {
    animation-delay: 0s;
}
.loader-bars span {
    width: 8px;
    height: 10px;
       background: #d5a83d;
    animation: bar 1s infinite ease-in-out;
}

.loader-bars span:nth-child(1) { animation-delay: 0s; }
.loader-bars span:nth-child(2) { animation-delay: .1s; }
.loader-bars span:nth-child(3) { animation-delay: .2s; }
.loader-bars span:nth-child(4) { animation-delay: .3s; }
@keyframes bar {
    0%, 100% { height: 10px; }
    50% { height: 50px; }
}
.page-item:first-child .page-link {
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
}
li.page-item.disabled .page-link {
    pointer-events: none !important;
}
.page-item.disabled .page-link {
    color: #877b71;
    pointer-events: none;
    background-color: #252525;
    border-color: #777777;
}
li.page-item.disabled .page-link {
    pointer-events: none !important;
}
.page-item:last-child .page-link {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}
.form-control{
    color: #fff;
}
.game-results-body .results-name {
    text-align: left;
}
.form-control:focus{
    color: #fff;
}
.active>.page-link, .page-link.active {
background-color: #ffbc5d !important;
    border-color: #ffbc5d !important;
    color: #000 !important;
}
.page-link:hover{
    background-color: #ffbc5d !important;
    border-color: #ffbc5d !important;
    color: #000 !important;
}

.page-link {
    position: relative;
    display: block;
    color: #ffb768;
    text-decoration: none;
    background-color: #161616;
    border: 1px solid #ffffff75;
}
.search-input .form-control {
    padding: 10px 12px;
    background: #000000a3;
    border: 1px solid rgb(247 187 104 / 48%);
}
.footer-brand img {
    width: 184px;
    margin-bottom: 15px;
}
.search-input button {
     position: absolute;
    right: 0;
    bottom: 0;
    font-weight: 600;
    color: #000;
        background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    border: none;
    border-radius: 0px 5px 5px 0px;
    padding: 12px 20px;
}
.our-project-card {
       background: linear-gradient(182deg, #272727, #0f1116);
    border-radius: 10px;
       border: 1px solid #ffffff45;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px;
    width: 23.9%;
    position: relative;
    z-index: 1;
}

.blog-card-img img {
    width: 100% !important;
    height: 200px;
    object-fit: fill;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}
.blog-info-data h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    color: #fff;
    padding: 18px 0px 9px;
    max-width: 100%;
    transition: all .5s;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.news-description p {
    font-weight: 400;
        color: #ffffffde;
}   
.news-description {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    padding: 4px 0px;
    max-width: 100%;
    height: 64px;
    margin: 0 auto;
    line-height: 19px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}
.news-description p strong{
    font-weight: 500;
}
.read-more {
    color: #ffbc5d;
    font-weight: 600;
    text-align: left;
    display: flex;
    margin-top: 6px;
}
.read-more:hover {
    color: #fff;
}
.main-header {
    padding: 11px 10px;
}
.small-btn img {
    width: 22px;
    margin-right: 5px;
}
.hero-section{
    padding:9px 0 0;
    overflow:hidden;
}

.hero-container{
    width: 100%;
    max-width: 1501px;
    margin:auto;
    display:grid;
    grid-template-columns:320px 1fr 280px;
    gap:35px;
    align-items:center;
}
.feature-card-info{
    text-align: center;
    padding: 20px 5px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
}
.feature-card-info::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(120deg, var(--gold-2), #ffffff2b 30%, #ffffff17 70%, #ffc968);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.top-badge,
.menu-card,
.feature-card-info{
     background: linear-gradient(182deg, #272727, #0f1116);
    border-radius:12px;
    box-shadow:0 0 20px rgba(255,184,61,.15);
}
.top-badge h4{
        background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.top-badge span{
    color: #fff;
}
.top-badge{
    display:flex;
    gap:18px;
    padding:20px;
    align-items:center;
    position: relative;
    margin-bottom:46px;
}
.top-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(120deg, var(--gold-2), #ffffff2b 30%, #ffffff17 70%, #ffc968);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-grid-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-card-ingo{
    padding:25px;
    text-align:center;
}

.feature-card-info img{
    width: 52px;
    margin-bottom: 18px;
}

.feature-card-info h5{
    color: #ffbe57;
    font-size:24px;
}

.feature-card-info p{
    color:#fff;
    margin-top:6px;
}

.hero-center{
    text-align:center;
    position:relative;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    color:#f7b447;
    line-height:1;
}

.hero-subtitle{
    font-size:42px;
    color:#fff;
    margin-top:8px;
}

.hero-experience{
    display:inline-block;
    margin-top:18px;
    padding:14px 40px;
    border-radius:50px;
    color:#ffcc69;
    font-size:46px;
    font-weight:700;
    background:#2b2b2b;
    border:2px solid #e5a438;
}

.hero-brand{
    width:max-content;
    margin:18px auto 25px;
    padding:10px 35px;
    border-radius:40px;
    background:#252525;
    color:#ffcc69;
    font-weight:700;
    border:1px solid #e5a438;
}
.hero-image img{
    width:360px;
}
.hero-right{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.menu-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    position: relative;

}

.menu-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(120deg, var(--gold-2), #ffffff2b 30%, #ffffff17 70%, #ffc968);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.menu-card img{
       width: 78px;
    height: 69px;

}
.menu-card h4{
    color:#ffbe57;
    font-size: 18px;
    margin-bottom: 3px;
}

.menu-card span{
    color:#ddd;
    font-size:15px;
}

.hero-text h1 {
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 53px;
    line-height: 69px;
    font-weight: 700;
    -webkit-text-stroke: 2px #c2792e;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.hero-text .small-btn:hover {
    text-decoration: none;
    color: #000;
}
.game-rates,.game-results-info,.faqs-info {
    padding: 60px 0px;
}
.faqs-info {
    background-position: center;
    background-size: cover;
}
.chart-btn:hover {
    color: #000;
    transform: translate(0, -5px);
}
.sec-title {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 112px;
    position: relative;
    gap: 22px;
    text-align: center;
}
.sec-title h2 {
      padding: 0;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 38px;
    font-weight: 600;
    background: linear-gradient(180deg, #fffdf2 0%, #ffeab0 8%, #ffd067 18%, #f4ab2c 30%, #b96718 45%, #7b3f0f 52%, #d78d2c 62%, #ffdd86 74%, #fff2c8 84%, #d38b2b 92%, #7a3d0d 100%);
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #c7bdb5;
    filter: drop-shadow(0 1px 0 #3d1d06) drop-shadow(0 3px 4px rgba(0, 0, 0, .45)) drop-shadow(0 0 8px rgba(255, 185, 60, .35));
    position: relative;
}
.sec-title h2::before {
    content: '';
    background-image: url('../img/title-border.png');
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    background-size: cover;
    width: 57%;
    height: 100%;
}

.screenshot-sec .swiper {
    width: 86.9%;
    margin-top: 60px;
    min-height: max-content;
    height: max-content;
    padding-bottom: 12px;
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgb(191 110 0 / 52%), rgba(0, 0, 0, 0));
    border-radius: 52px;
    left: -9px;
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to left, rgb(191 110 0 / 52%), rgba(0, 0, 0, 0));
    border-radius: 52px;
    left: -8px;
}
.swiper-slide {
    width: 300px;
    height: 600px;
    border-radius: 10px;
}
.mobile-num:hover {
    color: #f8931f;
}
.whatsapp-info:hover {
    color: #f8931f;
}
.hero-text .small-btn:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
.swiper-button-next, .swiper-button-prev {
background: #f7b04d;
    color: #000 !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: 3px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 3px;
}
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    align-items: center;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 24px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-weight: bold;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
a:hover {
    color: #ffffff;
}
.card-info ul li b {
    font-weight: 600;
    color: #fbaa59;
}
.card-title h1 {
    font-size: 26px;
    color: #fff;
}
.card-title {
text-align: center;
    border-top: 1px solid #f8931d70;
    border-bottom: 1px solid #f8931d70;
    background: linear-gradient(180deg, #171717, #0d0d0d);
    background-position: center;
    background-size: cover;
    padding: 42px 10px;
    margin-bottom: 25px;
}
.screenshot-sec {
    padding-top: 62px;
    padding-bottom: 50px;
    /* background-image: url('../img/coin-bg.png'); */
    background-position: bottom;
    background-size: contain;
}
.game-results-info {
    background-position: center;
    background-size: cover;

}
section.game-results-info.game-results-bg {
    margin-bottom: 0;
}
.contact {
    display: flex;
    text-align: center;
    padding: 95px 10px;
    align-items: center;
    margin: auto;
    column-gap: 17px;
    width: 100%;
    position: relative;
    z-index: 1;
    justify-content: center;
    background-image: url('../img/data-info.png');
    background-size: cover;
    background-position: center;
}
.inner-deatils-info{
    display: flex;
    gap:10px;
        margin-top: 21px;
}
.mobile-num {
    transition: 0.3s;
    display: flex;
    color: #ffc54b;
    text-shadow: 0px 10px 14px #000000;
    height: 48px;
    font-size: 21px;
    font-weight: 500;
    position: relative;
    padding: 3px 0px;
    border-radius: 12px;
    align-items: center;
}
.mobile-num::after{
    content: "";
    position: absolute;
    top: -1px;
    right: -36px;
    height: 52px;
    width: 4px;
    background: #a5a5a585;
}
.card-list-info.inner-card-body p {
    border-radius: 0;
    border-bottom: 1px solid #ffffff2e;
}
.card-list-info.inner-card-body p:last-child{
    border-radius: 0px 0px 10px 10px;
}
.card-list-box h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 18px;
}
.card-list-box {
        width: 32.33%;
    border: 1px solid #e3a333ab;
    border-radius: 10px;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.card-list-box::after{
    background-image: url(../img/logo.png);
    background-size: cover;
    background-position: center;
    width: 335px;
    height: 200px;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    content: '';
    opacity: 0.06;
    z-index: -1;
}
.card-info.card-inner-info p {
    font-size: 19px;
}
.card-list-box p {
    background: transparent;
    color: #000;
    padding: 9px;
    border-top: 1px solid #0000004f;
    font-size: 17px !important;
    border-radius: 0px 0px 10px 10px;
}
.card-list-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 42px;
}
.card-info h3 b{
    color: #f7b04d;
    font-weight: 500;
}
.card-info.card-inner-info {
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
}
.card-info.card-inner-info h2 {
    margin-bottom: 22px;
    font-size: 24px;
    color: #000;
}
.about-section {
    padding: 37px 0;
    color: #fff;
    position: relative;
    padding-top: 20px;
    overflow: hidden;
}
.chart-btn-info {
    padding: 6px 29px !important;
    margin-bottom: 6px;
}
.chart-btn-info{
    padding: 10px 18px;
}
.card-info h3 {
    font-size: 20px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 29px;
    padding-top: 14px;
    z-index: 1;
    position: relative;
}
.card-list-box h3 {
    font-size: 20px;
    color: #000;
    margin-top: 0;
    margin-bottom: 29px;
    padding-top: 14px;
    z-index: 1;
    position: relative;
}
.card-list-box  h3::after{
content: '';
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #60530a 0%, #dea813 8%, #ffd067 18%, #f4ab2c 30%, #b96718 45%, #7b3f0f 52%, #d78d2c 62%, #b3923e 74%, #e0bd4e 84%, #d38b2b 92%, #7a3d0d 100%);
    width: 100%;
    height: 166px;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 79% 32%, 23% 32%);
    position: absolute;
}
.card-info h2 {
    background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-info p{
    color: #ffffffcf;
}
.card-info ul {
    padding-left: 19px;
}
.card-info ul li{
    margin-top: 4px;
    list-style: disc;
        color: #ffffffcf;
}
.inner-chart-btn {
    margin-top: 42px;
    text-align: end;
}
.card-info {
        word-wrap: break-word;
    margin-bottom: 58px;
    background: linear-gradient(180deg, #171717, #0d0d0d);
    border: 1px solid rgba(255, 183, 58, .18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    border-radius: 10px;
    padding: 27px;
}
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.about-image {
      width: 605px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-to-play {
    padding: 62px 0;
    color: #fff;
    text-align: center;
}

.download-steps-section{
 padding: 90px 0;
    padding-bottom: 28px;
    margin-top: 180px;
}
.download-steps-container{
    width:95%;
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.step-card{
     position: relative;
    padding: 23px 17px;
    border-radius: 13px;
    background: linear-gradient(180deg, #171717, #0d0d0d);
    border: 1px solid rgba(227, 170, 90, .45);
    text-align: center;
    transition: .35s;
}
.step-card:hover{
    transform:translateY(-8px);
    border-color:#e5b05c;
    box-shadow:0 20px 45px rgba(229,176,92,.18);
}

.step-card::before{
    content:"";
    position:absolute;
    inset:0;
      background: radial-gradient(circle at top, rgb(255 255 255 / 12%), transparent 60%);
    pointer-events:none;
}
.phone-frame{
    width: 253px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: -159px;
    position: relative;
    z-index: 2;
}
.phone-frame img{
    width:100%;
        max-width: 173px;
    display:block;
}
.step-content{
    margin-top:20px;
}
.step-number{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 18px;
    background: #151515;
    border: 1px solid #dca85dba;
    color: #f2bf6b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3{
     font-size: 23px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: normal;
    background: linear-gradient(377deg, #f4d559 -3.7%, #f7e272 32.96%, #b17c2a 76.47%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step-content p{
  color: #d7d7d7;
    font-size: 15px;
    line-height: 23px;
}
.play-wrapper {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
}

.game-info-section {
    padding: 62px 0;
}
.game-info-section .sec-title {
    margin-bottom: 33px;
}

.section-heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 600;
}

.sub-heading {
    text-align: center;
    font-size: 20px;
    margin: 40px 0;
}
.game-info-section .sec-title h2::before{
    width: 22%;
}
.game-list-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
        margin-top: 101px;
}

.game-list {
    list-style: none;
    padding: 0;
}

.game-list li {
    position: relative;
    margin: 12px 0;
    font-size: 15px;
}

.download-section {
    padding: 127px 20px;
    text-align: center;
    margin-top: 60px;
    background-image: url(../img/data-info.png);
    background-size: cover;
    background-position: center;

}
.menu-item {
    position: relative;
    list-style: none;
}

.menu-link {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}
li.dropdown-item {
    padding: 0 !important;
}
li.menu-item.has-dropdown i {
    padding-left: 4px;
}
.dropdown-menu {
    position: absolute;
    top: 111%;
    display: block !important;
    left: -61px;
    background: #0f0f0a;
    min-width: 180px;
    list-style: none;
    padding: 0px 0;
    border: 1px solid #fbaa59;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    border-radius: 6px;
    z-index: 100;   
}
.dropdown-item a {
    display: block;
     padding: 13px 15px !important;
    border-bottom: 1px solid #5c5c5c4d;
    color: #fff;
    font-weight: 400 !important;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-item a:hover {
background: #ffffff14;
    color: #ffb963 !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #1e2125;
    background-color: transparent;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
ul.game-list li:hover a{
    color: #ffbc5d;
} 
ul.game-list li  i{
    color: #ffbc5d;
}  
.copy-right-img {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.sec-title.mt-5 {
    margin-top: 132px !important;
}
ul.game-list li a{
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
    width: 100%;

}
ul.game-list-grid.game-list.game-list-inner {
    grid-template-columns: repeat(4, 1fr);
}
ul.game-list li {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 21px;
    margin: 0px;
    color: #fff;
    flex-direction: column-reverse;
     background: linear-gradient(180deg, #171717, #0d0d0d);
    display: flex;
        border-radius: 9px;
    padding: 13px 19px;
    border:1px solid #ffbc5d;
}
.choose-us-section {
    padding: 62px 0px;
}
.download-heading {
       margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 38px;
    font-weight: 600;
    background: linear-gradient(180deg, #fffdf2 0%, #ffeab0 8%, #ffd067 18%, #f4ab2c 30%, #b96718 45%, #7b3f0f 52%, #d78d2c 62%, #ffdd86 74%, #fff2c8 84%, #d38b2b 92%, #7a3d0d 100%);
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #c7bdb5;
    filter: drop-shadow(0 1px 0 #3d1d06) drop-shadow(0 3px 4px rgba(0, 0, 0, .45)) drop-shadow(0 0 8px rgba(255, 185, 60, .35));
}
.feature-highlights-section{
    padding:40px;
    border-radius:28px;
    background:linear-gradient(180deg,#171717,#0d0d0d);
    border:1px solid rgba(255,183,58,.18);
    box-shadow:0 20px 50px rgba(0,0,0,.45);
    overflow:hidden;
    position:relative;
}

.feature-highlights-section::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:1px;
    background:linear-gradient(90deg,transparent,#f8c15b,transparent);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    position:relative;
    padding-right:15px;
}

.feature-card:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-12px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:85px;
    background:linear-gradient(180deg,
    transparent,
    rgba(255,193,89,.65),
    transparent);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 18px rgba(255,187,51,.25);
    flex-shrink:0;
}

.feature-icon img{
    width: 67px;
}

.feature-content h4{
    color: #fff;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p{
     color: #c9c9c9;
    font-size: 16px;
    line-height: normal;
    margin: 0;
}


.download-text {
    font-size: 17px;
    line-height: 1.6;
    margin: auto;
    color: #fff;
}

.choose-us-img {
    width: 22%;
    text-align: center;
}
.choose-us-content {
    width: 65%;
}

.choose-us-main {
    display: flex;
        gap: 59px;
        align-items: center;
}

.steps {
    width: 55%;
}

.steps-left {
    text-align: right;
}

.steps-right {
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 40px;
    padding: 14px 10px;
    border-radius: 11px;
    background: #fff1f1;
    border: 3px solid #f59a1a;
    gap: 15px;
}

.steps-right .step-item {
    justify-content: flex-start;
}

.step-text {
    font-size: 18px;
    color: #000;
}
.step-content-info {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 50px;
    position: relative;
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(rgb(23, 23, 23), rgb(13, 13, 13));
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 183, 58, 0.18);
    border-image: initial;
    overflow: hidden;
}
.step-content-info ul {
    color: #000000;
    text-align: left;
}
.step-content-info ul li {
    font-size: 18px;
    display: flex;
    gap: 14px;
    color: #ffffffd4;
    font-weight: 500;
    line-height: 36px;
    align-items: center;
}
.step-content-info i{
    color: #c07001;
}
.step-icon {
    width: 36px;
    height: 36px;
      border: 2px solid #ff450f7a;
    display: flex;
    align-items: center;
      background: #fccfa5;
    justify-content: center;
    border-radius: 6px;
    color: #000;
    font-size: 16px;
}

.mobile-preview {
    text-align: center;
}

.mobile-preview img {
    width: 100%;
    max-width: 666px;
    height: auto;
}
.mobile-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 1;
    height: 133px;
    width: 297px;
}
.inner-chart-info a img {
    width: 60px;
}
.mobile-info-box::before{
    content: "";
    background-image: url('../img/info-shape.png');
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* .about-image::after{
    content: '';
    position: absolute;
    left: 13%;
    top: -56px;
    border-radius: 191px 191px 0px 0px;
    width: 569px;
    height: 628px;
    z-index: -1;
    background-color: #fffcfa;
} */
.about-image img {
    max-width:498px;
    width: 100%;
}

.about-content {
    flex: 1;
    max-width: 802px;
    background-image: url(../img/about-bg.png);
    background-size: cover;
    background-position: center;
    padding: 28px 33px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}
.about-content .sec-title{
    justify-content: left;
    margin-bottom: 42px;
}
.about-content .sec-title h2{
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 38px;
    font-weight: 600;
    background: linear-gradient(180deg, #fffdf2 0%, #ffeab0 8%, #ffd067 18%, #f4ab2c 30%, #b96718 45%, #7b3f0f 52%, #d78d2c 62%, #ffdd86 74%, #fff2c8 84%, #d38b2b 92%, #7a3d0d 100%);
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #c7bdb5;
    filter: drop-shadow(0 1px 0 #3d1d06) drop-shadow(0 3px 4px rgba(0, 0, 0, .45)) drop-shadow(0 0 8px rgba(255, 185, 60, .35));
    position: relative;
}
.about-content .sec-title h2::before{
    display: none;
}
.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: url('../img/shape.png') no-repeat center/contain;
    opacity: 0.3;
    z-index: -1;
}


.about-section::before {
    top: 20%;
    left: 5%;
}

.about-section::after {
    top: 11%;
    right: 10%;
}

.mobile-num-img {
    position: relative;
    color: #fff;
    background: #f28e16;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    margin-right: 0;
}
.whatsapp-info {
    transition: 0.3s;
    display: flex;
    color: #ffc54b;
    text-shadow: 0px 10px 14px #000000;
    height: 48px;
    font-size: 21px;
    font-weight: 500;
    position: relative;
    padding: 3px 0px;
    border-radius: 12px;
    align-items: center;
}
.whatsapp-num-img {
    position: relative;
    background-color: #44c054;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    margin-right: 0;
}
.contact span {
    color: #ffc842;
    font-weight: 600;
    margin-right: 15px;
}
.section-title {
    text-align: center;
}
.header-menu ul {
    display: flex;
    align-items: center;
    margin-top: 2px;
}
.header-menu ul li {
    display: inline-block;
}

.hero-text h5 {
     font-size: 18px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ffc54e;
    margin-top: 21px;
    margin-bottom: 11px;
}
.hero-img-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}
.hero-text {
    text-align: center;
}
.hero-img-inner img {
       max-width: 757px;
    height: 100%;
}
.logo img {
    width: 129px;
    margin: 0px 51px;
}
.hero-text-sec .row {
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.hero-text-sec {
    padding: 0px 0px;
    justify-content: space-between;
    height: 89%;
    align-items: center;
    width: 100%;
    display: flex;
}
a.burger,a.closebtn {
    display: none;
}
.hero-section {
    position: relative;
    padding: 10px 0 69px;
    padding-bottom: 0px;
    overflow: hidden;
    z-index: 1;
}
.right-social-media a {
    width: 37px;
    height: 37px;
    border-radius: 7px;
    align-items: center;
    display: flex;
    font-size: 22px;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
}
.facebook{
    background-color: #1877F2;

}
.right-social-media a:hover{
    transform: scale(1.1);
    opacity: 0.9;
}
.instagram{
    background: linear-gradient( 45deg,#f09433,#e6683c, #dc2743,#cc2366, #bc1888);
}
.youtube{
    background-color: #FF0000;
}
.right-social-media {
    display: flex;
    align-items: center;
    gap: 7px;
}
.game-rates {
    padding: 62px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.game-rates-box img {
     width: 200px;
    position: relative;
    z-index: 99;
}
.chart-details {
    padding: 62px 0px;
}
.inner-chart-info a i {
    font-size: 26px;
    padding: 16px 17px;
    border-radius: 30px;
    color: #000000;
    background: #ec955e;
}
.inner-chart-info a{
     gap: 0px;
    display: flex;
    padding: 0;
    background-size: cover;
    font-size: 19px;
    font-weight: 600;
    align-items: center;
    color: #ffffff;
    width: 23%;
    justify-content: left;
    box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.10) !important;
}
.inner-chart-info a:hover span{
    color: #fff;
}
.inner-chart-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.chart-result-info {
    font-weight: 600;
    margin: 11px 0px;
    line-height: 1.5;
    background: #FFF1F1;
    font-size: 18px;
    padding: 16px 16px;
    color: #000;
    border-radius: 11px;
    box-shadow:0 0 13px 0 rgb(0 0 0 / 11%);
}
.chart-result-btn a:hover {
    text-decoration: none !important;
}
.chart-result-btn {
       background-image: linear-gradient(to right top, #383838, #727272);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    margin: 2px 0 -1px;
    display: inline-block;
    transition: all .3s;
    cursor: pointer;
    text-shadow: none;
    font-style: normal;
    border-radius: 6px;
    border: 1px solid #415fc7;
}
.chart-result-info span {
    font-size: 25px;
    font-weight: 500;
}
.inner-chart-info a span {
    display: flex;
    padding: 17px 28px;
    border: 1px solid #ffc94b;
    border-radius: 30px 10px 10px 30px;
    margin-left: -17px;
    font-size: 20px;
    color: #ffbc5d;
    background-color: #1c1b1b;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7% 48%);
    width: 100%;
}
.game-rates-box span {
    display: block;
}
.game-rates-box{
    background-image: url('../img/rate-bg.png');
    background-position: center;
    background-size: cover;
    border-radius: 48px;
    padding: 49px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 200, 50, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    gap: 4px;
}
.game-rates-box p {
    color: #ffd294;
    font-size: 20px;
    text-shadow: 4px 2px 0px #1d1d1d;
}
.game-rates-box:hover {
    box-shadow: 0 0 15px rgb(250 176 40 / 25%);
    transform: scale(1.02);
}
.game-rates-info .row {
    row-gap: 31px;
    position: relative;
    justify-content: center;
    z-index: 111;
}
.game-results-info {
    padding: 62px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.game-results-box {
    background: #0B0B0B;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 22px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(250, 176, 40, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.game-results-box::after{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 17px;
    padding: 2px;
    background: linear-gradient(135deg, #ffd494 0%, #b77a16 25%, #e1a635 50%, #bf8a36 75%, #f8be69 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    box-shadow: 0 0 8px rgb(212 163 79), 0 0 15px rgba(212, 163, 79, .15);
    opacity: 0.8;
    z-index: -1;
}
.game-type-info {
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.game-type-info .game-results-body{
    padding: 0px;
}
.game-results-box:hover {
    transform: scale(1.01);
}
.game-results-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: linear-gradient(90deg, #333, #000);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    position: relative;
}
.game-results-head i {
    color: #c59837;
    font-size: 18px;
}
.game-results-head span {
    font-size: 9px;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
.text-red {
    background: #201313;
    color: #dc3545;
    border: 1px solid #dc3545;
}
.text-green {
    background: rgba(0, 255, 0, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}
.top-games-result .game-results-body {
   position: relative;
}
.top-games-result .game-results-body::before {
   content: "";
    position: absolute;
    top: 0;
    right: 3px;
    width: 179px;
    opacity: 0.4;
    height: 100%;
    background-image: url('../img/result-img.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.inner-results-box .game-results-body::before {
   content: "";
    position: absolute;
    top: 0;
    right: 3px;
    width: 179px;
    opacity: 0.4;
    height: 100%;
    background-image: url('../img/result-img.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.game-results-body {
    text-align: left;
    padding: 20px;
    color: #000;
}
.game-results-body .results-times{
 font-size: 18px;
    font-weight: 400;
    margin-top: 11px;
    color: #fff;
    padding-top: 8px;
    display: flex;
    width: max-content;
    border-top: 1px solid #93939373;
    border-bottom: 1px solid #9393935e;
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.results-times i{
    background: linear-gradient(to bottom, #d4a017 0%, #ffbf76 25%, #ff9600 50%, #ffe7c3 75%, #e3af25 100%);
    background-clip: text;
    color: transparent;
    padding-right: 8px;
        font-size: 28px;
}
.game-results-body a{
    margin-top: 10px;
    padding: 6px 23px;
    background: linear-gradient(to bottom, #ffb903 0%, #ffb056 25%, #ffd668 50%, #ff9900 75%, #e3af25 100%);
    background-clip: text;
    color: #87636300;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    width: max-content;
    border-radius: 5px;
    position: relative;
}
.game-results-body a::after{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, #ffd494 0%, #b77a16 25%, #e1a635 50%, #bf8a36 75%, #f8be69 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    box-shadow: 0 0 8px rgb(212 163 79), 0 0 15px rgba(212, 163, 79, .15);
    opacity: 0.8;
    z-index: -1;
}
.game-type-icon img {
    width: 64px;
}
.results-name {
        font-size: 23px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.game-title-info{
    padding: 8px 10px;
    border-bottom: 1px solid #d8975485;
    border-radius: 0px;
}
.top-games-result .game-results-box {
    border: none;
}
.results-num {
      font-size: 25px;
    font-weight: 500;
    color: #f28e16;
}
.game-bg-logo {
    position: absolute;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    width: 173px;
    z-index: -1;
    opacity: 0.1;
}
.open-time {
    color: #199300;
    font-weight: 600;
}
.game-results-bottom span i{
    color: #cac9c9;
    padding-right: 4px;
}
.close-time {
    color: #9D0000;
        font-weight: 600;
}
.game-results-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    color: #fff;
    align-items: center;
       padding: 12px 12px;
}
.accordion-item {
    margin-bottom: 10px;
    border: none;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #debf6f;
    box-shadow: inset 0 -1px 0 rgb(222 191 111);
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5);
}

.accordion-button {
    font-size: 17px;
    font-weight: 500;
    background: #1a1a1a;
    color: #fff;
}

.accordion-body {
    font-size: 16px;
    background: #1a1a1a;
    color: #fff;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1510%) hue-rotate(179deg) brightness(116%) contrast(100%);
}
p.copy-right-text a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.copy-right {
    text-align: center;
    padding: 34px 20px 34px;
    color: #fff;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
    background: #080808;
    z-index: 1;
}

.players-img {
    margin-top: 36px;
}
.players-img img{
    filter: brightness(0) saturate(100%) invert(63%) sepia(9%) saturate(2642%) hue-rotate(3deg) brightness(95%) contrast(96%);
}
.footer-logos {
    display: flex;
    justify-content: space-around;
    margin: 44px 0px;
}
.footer-logos img{
    filter: brightness(0) saturate(100%) invert(63%) sepia(9%) saturate(2642%) hue-rotate(3deg) brightness(95%) contrast(96%);
}
.copy-right-img p {
    font-size: 18px;
    margin-top: 12px;
    color: #fff !important;
}
.copy-right-img {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: none !important;
}

.panel-heading h3 {
    font-size: 19px;
    color: #fff;
    text-shadow: 0px 0px;
    margin: 0px;
    padding: 12px;
}

.panel-heading {
    background-color: #3f51b5;
}

.time-chart-info table {
    min-width: 0;
}

table,
th,
td {
    border: 1px solid #ffffff47;
}

thead {
       background: linear-gradient(182deg, #fede3d, #9b5b1c);
    color: #000;
    font-weight: bold;
    text-align: center;
}
.small-btn.chart-btn {
    padding: 13px 21px;
    display: table;
    font-size: 17px;
    margin-left: auto;
    border-radius: 6px;
}
.game-results-box.game-result-card .game-results-body {
    padding: 0px;
}
.main-section {
    padding: 62px 0px;
}
.chart-title {
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}
.chart-title h2 {
position: relative;
    font-size: 36px;
    font-weight: 600;
    display: inline-block;
    z-index: 1;
}
.chart-title h2::before {
   display: none;
}
.sec-title.chart-title {
    display: block;
        margin-bottom: 55px;
    
}

.chart-title h2::after {
    left: 100%;
    margin-left: -50px;
}
.chart-title p {
    margin-top: 15px;
    color: #ffffff;
}
.chart-table-data {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background-color: #000;
    overflow-x: auto;
}
thead th {
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

table tbody td {
    font-size: 17px;
    text-align: center;
    border: 1px solid #333 !important;
    background-color: #232323;
    color: #ffffff;
    padding: 10px;
    font-weight: 500;
}

table tbody tr:nth-child(odd) td {
    background-color: #131313;
}

table {
    min-width: 1000px;
}
.scroll-info {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 12px;
}

.small-btn.scroll-btn {
    border:1px solid #00000075;
    font-weight: 500;
    font-size: 15px;
    justify-content: center;
    display: flex;
    width: 162px;
    padding: 10px 14px;
    margin-bottom: 20px;
}
.small-btn.scroll-btn:hover{
    color: #000;
}

.modal-body.time-chart-info tbody td {
    font-size: 15px;
    font-weight: 400;
    padding: 12px;
}

.modal-body.time-chart-info th {
    text-transform: uppercase;
    padding: 9px;
    border: 1px solid #333333;
}

table .text-red,
table .text-green {
    border: none;
}

.tbl-font {
    font-size: 14px;
    display: block;
    width: 100%;
    font-weight: 500;
}

.tbl-td {
    padding: 11px !important;
    vertical-align: middle !important;
    line-height: 1.65;
}

.modal-header {
    padding: 8px 15px;
    border-radius: 6px 6px 0px 0px;
    background: #272626;
    border-bottom: 1px solid #b37c2473;
}

.modal-title {
    color: #fff;
}

.modal-content {
    border: 2px solid #222;
    border-radius: 10px;
}

.modal-header .btn-close {
    filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(1%) hue-rotate(180deg) brightness(110%) contrast(97%);
}

.modal-body {
    background: #111111;
    border-radius: 0px 0px 7px 7px;
    padding: 0px 16px 16px;
}

.all-chart-data {
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    border-radius: 20px;
    padding: 12px 20px;
    margin-bottom: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}

.all-chart-data::before {
    content: "";
    position: absolute;
    top: 0%;
    right: -54%;
    width: 100%;
    height: 124%;
    background: radial-gradient(circle, rgb(186 143 56), transparent);
    z-index: 0;
    transform: rotate(-26deg);
}

.all-chart-data:hover {
    transform: scale(1.02);
}
.all-card-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #a86728;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.all-card-box {
    position: relative;
    z-index: 11;
}

.chart-title.all-chart-title {
    margin-bottom: 35px;
}

.all-chart-info {
    width: 100%;
    padding-top: 50px;
    max-width: 800px;
    margin: auto;
}

.scroll-info.footer {
       margin-bottom: 59px;
    border: none;
    background: transparent;
}




  .timing-card{
    display:flex;
    align-items:center;
    background: linear-gradient(182deg, #272727, #0f1116);
    border: 1px solid var(--panel-edge);
    border-radius: 10px;
    padding: 10px 18px 10px 10px;
    position:relative;
    box-shadow: 0 0 0 1px rgba(201,146,47,0.15) inset, 0 4px 14px rgba(0,0,0,0.4);
  }
.results-time-text {
    color: #ffffffde;
    font-size: 18px;
}
  .timing-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:10px;
    padding:1px;
    background: linear-gradient(120deg, var(--gold-2), #ffffff2b 30%, #ffffff17 70%, #ffc968);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events:none;
  }

  .timing-card-badge{
    flex: 0 0 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #2a1c05;
    background: linear-gradient(180deg, #ae815c -3.7%, #f5dd39 32.96%, #915f25 76.47%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin-right: 16px;
    box-shadow: 0 0 12px rgba(245, 207, 125, 0.35);
  }
  .open-time i,.close-time i{
        color: #cac9c9;
            padding-right: 5px;
  }

  .timing-card-name{
    flex: 1 1 auto;
    color: var(--text-main);
    font-weight:600;
    font-size: 16px;
    letter-spacing: 0.4px;
    text-transform:uppercase;
  }

  .timing-card-slot{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding: 0 18px;
    border-left: 1px solid #efcb534d;
  }

  .timing-card-slot-label{
    color: var(--gold-1);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight:700;
    margin-bottom: 4px;
  }

  .timing-card-slot-value{
    display:flex;
    align-items:center;
    gap:6px;
    color: var(--text-dim);
    font-size: 14px;
    font-weight:600;
    white-space:nowrap;
  }
  .timing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
        margin-top: 128px;
}

  .timing-card-clock-icon{
    width:14px;
    height:14px;
    flex:none;
    stroke: var(--gold-2);
  }

  .timing-card-arrow{
    flex: 0 0 auto;
    margin-left: 10px;
    color: var(--gold-2);
    font-size: 18px;
  }

/*==============================*/

.footer{
    background: linear-gradient(180deg, #171717, #0d0d0d);
    border: 1px solid rgba(255, 174, 73, .15);
    overflow:hidden;
    position:relative;
    color:#fff;
}
.footer-top{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding: 60px 0px;
    border-bottom: 1px solid rgba(255, 174, 73, .15);
}
.footer-logo{
    width:170px;
    margin-bottom:25px;
}
.footer-desc{
    color:#aaa;
      line-height: 22px;
}
.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    color:#f7b04d;
    border:1px solid #f7b04d;
    font-weight:600;
    transition:.3s;
}

.footer-btn:hover{

background:#f7b04d;

color:#111;

box-shadow:0 0 25px rgba(247,176,77,.4);

}

/*==============================*/

.footer-column h4{

margin-bottom:25px;

font-size:20px;

color:#fff;

}

.footer-column h4 i{

color:#f7b04d;

margin-right:10px;

}

.footer-column ul{

list-style:none;

}

.footer-column li{
    margin-bottom: 13px;

}

.footer-column a{
    font-size: 16px;
    text-decoration: none;
    color: #e4e4e4;
    transition:.3s;
}

.footer-column a:hover{

color:#f7b04d;

padding-left:8px;

}

/*==============================*/

.footer-support{
    border: 1px solid rgba(247, 176, 77, .4);
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(180deg, #292929, #0d0d0d);
    text-align: center;

}

.support-icon{

width:75px;

height:75px;

margin:auto;

border-radius:50%;

border:2px solid #f7b04d;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

color:#f7b04d;

margin-bottom:20px;

}

.footer-support h3{
    color:#f7b04d;
    margin-bottom:10px;
}

.footer-support p{

color:#ddd;

}

.footer-support span{
    display:block;
    margin:1px 0;
    color:#999;
}

.footer-support hr{
    border: none;
    height: 1px;
    background: #c9c9c9;
    margin: 17px 0;
}

.footer-support a{
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    font-weight: 500;

}

/*==============================*/

.footer-middle{
    border-top: 1px solid rgba(255, 174, 73, .15);
display:grid;

grid-template-columns:1fr auto 1fr;

align-items:center;

padding:35px 60px;

position:relative;

}

/*==============================*/

.security{

display:flex;

align-items:center;

gap:20px;

}

.security i{

width:60px;

height:60px;

border-radius:50%;

background:#181818;

border:1px solid #f7b04d;

display:flex;

align-items:center;

justify-content:center;

color:#f7b04d;

font-size:22px;

}

.security h4{

color:#f7b04d;

margin-bottom:5px;

}

/*==============================*/

.crown-box{
     background: #1b1b1b;
    border: 1px solid #ffffff26;
    padding: 25px 128px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    text-align: center;
    box-shadow: 0 0 30px rgb(255 255 255 / 0%);

}

.crown-box i{
    font-size:34px;
    background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;


}

.crown-box h3{

color:#f7b04d;

margin-bottom:6px;

    background: linear-gradient(180deg, #F8F68A -3.7%, #F5DD39 32.96%, #8A4D04 76.47%);
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

/*==============================*/

.social{

display:flex;

justify-content:flex-end;

align-items:center;

gap:15px;

}

.social span{

margin-right:10px;

font-weight:600;

color:#f7b04d;

}


.social a:hover{
transform:translateY(-4px);

}




/*==============================*/

.footer-bottom{

padding:22px;

text-align:center;

border-top:1px solid rgba(255,174,73,.15);

    color: #c7c7c7;

font-size:15px;

}

.inner-wrapper {
    padding-top: 44px;
}




  .nav-header{
    width:100%;
    max-width: 1280px;
    position:relative;
    border-radius: 14px;
    padding: 4px;
  }

  .nav-header-brand img {
    width: 129px;
}
  .nav-header-inner{
    position:relative;
    border-radius: 11px;
    background-image: url('../img/header-bg.png');
    background-size: cover;
    background-position: center;
    background-color: var(--panel-dark);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 18px 120px;
    min-height: 206px;
    padding-right: 24px;
  }

  .nav-header-links{
    display:flex;
    align-items:center;
    gap: 4px;
    list-style:none;
    margin:0;
    padding:0;
  }

  .nav-header-links-left{
    justify-content:flex-start;
  }

  .nav-header-links-right{
    justify-content:flex-end;
  }

  .nav-header-link{
    color: var(--text-main);
    font-size: 15px;
    font-weight:700;
    letter-spacing: 0.5px;
    text-decoration:none;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
    transition: color 0.2s ease;
  }

  .nav-header-link:hover{
    color: var(--gold-1);
  }

  .nav-header-link-caret{
    font-size: 11px;
    color: var(--gold-2);
  }

  .nav-header-brand{
    flex: 0 0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding: 0 28px;
    padding-right: 0;
    text-align: end;
    width: 323px;
  }

  .nav-header-brand-badge{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-1), var(--gold-2));
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size: 18px;
    color: #241a05;
    box-shadow: 0 0 18px rgba(245,207,125,0.4);
    border: 2px solid var(--gold-3);
  }

  .nav-header-brand-name{
    margin-top: 6px;
    color: var(--gold-1);
    font-weight:800;
    font-size: 18px;
    letter-spacing: 1px;
  }

  .nav-header-brand-tagline{
    color: var(--text-main);
    font-size: 9px;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-top: 2px;
  }
.mob-inner-logo{
    display: none;
}
    
@media (max-width:1650px) {
    .hero-img-inner img {
        max-width: 391px;
    }
    .our-project-card {
        width: 23.7%;
    }
    .card-title{
    padding: 35px 10px;
    }
    .inner-chart-btn {
    margin-top: 27px;
    }
    .sec-title h2 {
        font-size: 29px;
    }
    .hero-container{
        max-width: 1310px;
    }
    .sec-title.mt-5 {
    margin-top: 100px !important;
}
}
@media (max-width:1500px) {
        .hero-container {
        max-width: 1210px;
            grid-template-columns: 320px 497px 303px;
    }
        .hero-text h5 {
            margin-top: 18px;
            font-size: 12px;
        }
    
        .hero-text h1 {
            -webkit-text-stroke: 1px #c2792e;
            font-size: 35px;
            line-height: 50px;
        }
        .container {
            max-width: 1284px;
        }
        ul.game-list li a {
                gap: 9px;
        }
        .hero-text h1 img {
            width: 468px;
        }
        .feature-card-info h5 {
            font-size: 20px;
        }
        .hero-right{
                gap: 9px;
        }
    
        .menu-card img {
            width: 73px;
            height: auto;
        }
    
        .hero-image img {
            width: 309px;
        }
    
        .feature-card-info img {
            width: 44px;
            margin-bottom: 12px;
        }
        .about-image {
            width: 426px;
        }

        .main-section {
            padding: 41px 0px;
        }

        .game-rates {
            padding: 42px 0;
        }
        .screenshot-sec {
            padding-top: 34px;
        }
        .how-to-play {
             padding: 30px 0;

        }
        .inner-chart-info a span{
            font-size: 18px;
                padding: 11px 26px;
        }
        .inner-chart-info a img {
            width: 47px;
        }
        .game-results-bottom{
                gap: 8px;
    font-size: 14px;
        }
                
    }
@media (max-width:1400px) {
    .chart-title h2 {
        font-size: 25px;
    }
        .game-results-bottom {
        gap: 8px;
        font-size: 13px;
    }
    .game-rates-box img {
        width: 120px;
        margin-bottom: 10px;
    }
    .feature-icon{
            width: 57px;
            height: auto;
    }
    .feature-highlights-section {
         padding: 20px;
    }
    .download-steps-container{
        width: 100%;
        max-width: 100%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .download-steps-section{
        margin-top: 129px;
    }
    .phone-frame img{
        max-width: 144px;
    }
    .footer-desc{
            padding-right: 18px;
    }
    .footer-top{
                gap: 14px;    
    }
    .step-content-info ul li {
    font-size: 16px;
    }
    .phone-frame {
        width: 100%;
        margin-top: -124px;
    }
    .step-content-info{
          padding: 19px;
    border-radius: 13px;
    }
    .step-content p{
            font-size: 14px;
    line-height: 22px;
    }
    .step-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    }
    .step-card {
    position: relative;
    width: 23.9%;
    padding: 19px 11px;
    border-radius: 13px;
    }
    .feature-card {
        gap: 9px;
    }
    .feature-content p{
            font-size: 14px;
            line-height: 23px;
    }
    .feature-icon img {
        width: 50px;
    }
    .feature-content h4{
        font-size: 15px;
    }
    .nav-header-inner{
            padding: 18px 86px;
            min-height: 174px;
            padding-right: 24px;
    }

    .header-menu ul li a {
    font-size: 13px;
    }
 
    .nav-header-brand{
        width: 297px;
              padding: 0px 49px;
        padding-right: 0;
    }
    .about-image img{
            max-width: 371px;
    }
    .nav-header-brand img {
    width: 112px;
}
    .container {
        max-width: 1140px;
    }
    .game-rates-box::before{
            left: -55px;
    }
    .chart-title p {
        margin-top: 10px;
        font-size: 12px;
    }

    .chart-result-info {
        font-size: 15px;
    }

    .sec-title h2::before,
    .sec-title h2::after {
        width: 300px;
    }
    .screenshot-sec .swiper {
        width: 74.9%;
    }
    .game-list-grid{
        grid-template-columns: repeat(4 1fr);
    }

    .sec-title h2{
        font-size: 30px;
    }
    .game-results-info {
        padding: 59px 0;
    }
    .steps {
        width: 48%;
    }
    .about-image::after{
        left: -5%;
        top: -56px;
    }

    .mobile-preview img {
        width: 100%;
    }
    ul.game-list li{
        font-size: 17px;
    }
    ul.game-list li a{
        font-size: 17px;
    }
    .results-name {
        font-size: 18px;
    }
    .hero-text h1 {
        font-size: 40px !important;
        line-height: 54px;
    }
    .hero-text h1 {
        font-size: 46px;
        line-height: 57px;
    }
    .container{
        max-width: 1140px;
    }
    .chart-result-info {
        font-size: 16px;
    }
    .step-item{
            margin-bottom: 15px;
    }
    .results-num{
            font-size: 23px;
    }
    .game-type-icon img{
          width: 40px;
    }
    .game-type-info {
        padding: 11px 9px;
    }
        .feature-grid{
        grid-template-columns:repeat(4,1fr);
        row-gap:35px;
    }

    .feature-card:nth-child(3)::after{
        display:none;
    }
        .inner-chart-info a span{
            font-size: 16px;
                padding: 14px 22px;
    }
    .inner-chart-info a img {
    width: 48px;
}

}

@media (max-width: 1250px) {
    #sidebar {
        left: -300px;
    }
    .download-heading{
            font-size: 26px;
    }
    .user-img img {
        width: 188px;
    }
    .about-image::after{
        display: none;
    }
    .hero-img-inner img {
              max-width: 408px;
    }
    .nav-header-inner{
                padding: 4px 73px;
        min-height: 167px;
        padding-right: 24px;
    }

    .inner-chart-info a{
            width: 32%;
    }
        .game-results-info {
        padding: 42px 0;
    }
    .mobile-preview img {
        width: 100%;
    }
    .our-project-card {
        width: 31.7%;
    }
    .steps {
        width: 48%;
    }
    .step-card{
        width: 22.9%;
    }
    .sec-title h2::before,
    .sec-title h2::after {
        width: 200px;
    }
    .inner-chart-info{
            gap: 13px;
    }
        .hero-container {
        max-width: 919px;
        grid-template-columns: 263px 326px 285px;
            gap: 20px;
    }
    .hero-text h5{
                margin-top: 14px;
        font-size: 10px;
    }
        .hero-text h1 img {
        width: 319px;
    }
    .game-list-grid{
            grid-template-columns: repeat(5, 1fr);
    }
    .menu-card{
        padding: 13px;
    }
    .sec-title img {
    width: 48px;
}
    .sec-title h2 {
        font-size: 19px;
    }
    .about-content .sec-title h2{
            font-size: 27px;
    }
    .chart-details {
        padding: 26px 0px;
    }
    .choose-us-section {
        padding: 27px 0px;
    }
    .about-content .sec-title {
        margin-bottom: 17px;
    }
        .game-results-bottom {
        gap: 8px;
        font-size: 11px;
    }
    .game-rates-box p {
    font-size: 16px;
    }
    .game-rates-box{
            padding: 31px 14px;
    }
        .game-rates-box img {
        width: 126px;
        }
    .top-badge img {
        width: 35px;
    }
    .download-btn{
        margin-bottom: 12px;
        height: 52px;
        font-size: 18px;
    }
    .menu-card span {
        font-size: 13px;
    }
    .menu-card h4{
            font-size: 16px;
    }
        .hero-image img {
        width: 262px;
    }
    .top-badge h4{
            font-size: 19px;
    }
 
    .hero-text h1 {
        font-size: 25px !important;
                line-height: 44px;
    }
    .header-menu ul li a{
        font-size: 11px;
    }
     .nav-header-inner {
        padding: 4px 73px;
        min-height: 167px;
        padding-right: 24px;
    }
    .main-header {
        padding: 11px 5px;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .security,
    .social {
        justify-content: center;
    }
    .timing-grid{
            gap: 9px 9px;
    }
    .timing-card-badge{
        flex: 0 0 47px;
        height: 39px;
        margin-right: 8px;
        font-size: 17px;
    }
     .sec-title{
            margin-bottom: 80px;
            margin-bottom: 99px;
            gap: 10px;
    }
    .game-list-grid{
            gap: 8px;
            margin-top: 84px;
    }
    .game-list li{
        margin: 0px 0;
    }
}

@media (max-width: 1100px) {
    .nav-header-brand {
        width: 254px;
        padding: 0px 102px;
        padding-right: 0px;
    }
    .nav-header-inner {
            padding: 4px 16px;
                min-height: 151px;
    }
    .card-list-box {
    width: 48.33%;
    }
}

@media (max-width: 991px) {
    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
    }
    .page-section {
        padding: 48px 0px;
    }
        .hero-text h1 img {
        width: 263px;
    }
    .hero-container{
        max-width: 853px;
        grid-template-columns: 212px 280px 222px;
        gap: 9px;
        justify-content: center;
    }
    .nav-header-inner{
        padding: 4px 20px;
    }
    .inner-chart-info a{
        width: 31%;
    }
    .nav-header-inner{
        flex-direction: column;
    }
    .container{
        max-width: 960px;
    }
    .text-box h3 {
        font-size: 34px;
    }

    .sec-title h2::before,
    .sec-title h2::after {
        display: none;
    }
    .top-badge{
            padding: 15px;
            margin-bottom: 28px;
    }
    .feature-card-info img {
         width: 32px;
    }
    .game-rates-box img {
        width: 88px;
    }
   
    .sec-title h2::before{
            bottom: -36px;
    }
    .game-rates-box{
        gap: 8px;
        border-radius: 15px;
        padding: 19px 13px;
    }
        .game-rates-box::before {
       display: none;
    }
    li.mobile-logo img {
        width: 121px;
        margin: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        display: flex;
    }
    .header .right-social-media{
        display: none;
    }

    .text-box ol li {
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 21px !important;
        line-height: 29px;
    }
    .top-badge span {
    font-size: 13px;
    }
    .hero-section {
        padding: 30px 0 50px;
    }

    .hero-img-inner img {
        max-width: 300px;
    }

    .mobile-logo {
        display: block !important;
    }

    .slider-testimonial {
        max-width: 100%;
    }

    .header-menu img {
        width: 40px;
    }
    .burger img{
        filter: invert(1);

    }

    .header-menu {
        background: #010101f2;
        border-radius: 5px;
        padding: 0px;
    }

    .small-btn img {
        width: 23px !important;
    }

    .text-box p {
        font-size: 14px;
        font-weight: 500;
        line-height: 22px;
    }

    .logo img {
        width: 80px;
    }

    .header-menu ul li a {
        font-size: 13px;
    }

    .header-menu ul li {
        padding: 0px 11px;
        border: 1px solid #8e8e8ef7;
    }

    li.mobile-logo {
        padding-top: 0px !important;
    }

    #mob-menu {
        height: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
                width: 200px;
        left: -250px;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 7px;
        display: block;
        border-right: 1px solid #f8931f;
            box-shadow: 0px 4px 8px 0px rgb(66 66 66);
        transition: all 0.5s;
    }
    .nav-header-inner{
        background-image: none;
    }
    .header-menu ul li a:hover{
        color: #f8931f;
    }
    li.menu-item.has-dropdown {
        padding: 0px 0px;
    }
    #mob-menu .closebtn {
              position: absolute;
        top: -2px;
        right: 14px;
        font-weight: 100;
        font-size: 36px;
        z-index: 999;
        margin-left: 51px;
        color: #e2e2e2;
    }

    .menu.open #mob-menu {
        width: 250px;
        margin-left: 0px;
        display: block;
        text-align: left;
        left: 0px;
        transition: all 0.5s;
               background: linear-gradient(182deg, #272727, #0f1116);
    }

    .header-menu ul {
        display: block;
        margin: 0;
        padding: 0px 0px;
        width: 100%;
    }
    div#menu-1 {
        z-index: 99;
        position: relative;
                border: 1px solid #ffffff9e;
        border-radius: 3px;
    }
    
    .menu.open .overlay-1 {
        display: block;
    }

    .header {
        align-items: center;
        justify-content: space-between;
    }
    .mob-inner-logo img {
    width: 69px;
}
.main-header {
        padding: 11px 5px;
        background: #000000b8;
    }

    .header-menu ul li {
        padding: 8px 14px;
        display: block;
        border: 1px solid #8e8e8e4d;
        margin-bottom: 8px;
        background: #17191c;
        border-radius: 7px;
    }
  
    li.mobile-logo {
        border: none !important;
        margin-bottom: 0px !important;
        padding: 0px !important;
}
    li.menu-item.has-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
        border-radius: 7px;
                padding: 9px 23px !important;  
}


    .nav-header-brand{
        display: none;
    }

    a.burger {
        display: block;
        text-align: end;
    }

    a.burger,
    a.closebtn {
        display: block;
    }

    .overlay-1 {
        display: none;
    }

    .chart-title h2 {
        font-size: 24px;
    }

    .overlay-1:after {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #0000005e;
        right: 0;
        left: 0;
        top: 0;
    }

    .chart-btn {
        padding: 7px 8px;
    }

    .game-results-bottom {
        display: flex;
        padding: 6px;
    }

    .game-results-body .results-name {
        font-size: 21px;
    }

    .game-results-body .results-num {
        font-size: 25px;
    }

    .game-results-info {
        padding: 30px;
    }
    table{
        min-width: 0;
        margin-top: 20px;
        overflow-x: auto;
        white-space: nowrap;
    }
    .panel-body{
        padding:  0px 12px;
    }
    .how-to-play{
        padding: 38px 0;
        padding-top: 0px;
    }
    .game-info-section {
        padding: 42px 0;
    }
    .sec-title h2 {
        font-size: 23px;
    }
    .sec-title{
        margin-bottom: 21px;
    }
    .game-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-content-info {
        width: 100%;
    }
    .steps{
            width: 49%;
    }
        .mobile-preview img {
        width: 100%;
        max-width: 100%;
    }
    section.game-results-info.game-results-bg{
        margin-bottom: 0px;
    }
    .mob-inner-logo{
        display: block;
    }
    .dropdown-item a{
            padding: 7px 15px !important;
    }
    li.mobile-logo {
    background: transparent !important;
}
    .dropdown-menu{
        min-width: 198px;
        top: 96%;
        padding: 6px 9px !important;
          background: #000000 !important;
        left: 0px;
            border: 1px solid #4b4b4b;
    }
    
    .feature-highlights-section{
        padding:30px 20px;
    }

    .feature-grid{
        grid-template-columns:1fr;
        gap: 6px;
    }
    .screenshot-sec{
                padding-top: 34px;
                    padding-bottom: 3px;
    }
    .feature-card{
        padding-bottom:20px;
    }

    .feature-card::after{
        display:none;
    }

    .feature-content h4{
        font-size:20px;
    }

    .feature-content p{
        font-size:15px;
    }
    .timing-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
    }
 
}

@media (max-width: 767px) {
    .play-rates {
        padding: 35px 0px;
    }    .card-title {
        padding: 42px 10px;
    }
    .game-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .download-steps-container{
        grid-template-columns: 1fr;
    }
    .footer-top {
     padding: 28px 0px;
    }
    .footer-middle {
        padding: 30px 20px;
    }
    .crown-box {
        padding: 25px;
        clip-path: none;
        border-radius: 15px;
    }
    .phone-frame {
       width: 164px;
        margin-top: 0;
    }
    .step-content h3 {
        font-size: 22px;
    }
    .hero-left,.hero-right{
        display: none;
    }
    .hero-container{
                max-width: 100%;
        grid-template-columns: 1fr;
    }
    .step-content p {
        font-size: 15px;
    }
    .chart-result-info span {
    font-size: 19px;
    }
    .card-info.card-inner-info{
        padding: 0px;
    }
    .card-info.card-inner-info p {
        font-size: 15px;
    }
    .card-list-info{
        gap: 8px;
        margin-top: 22px;
    }
    .card-title {
        padding: 20px 10px;
    }
    .card-info h3 {
        font-size: 18px;
        margin-bottom: 11px;
    }
    .card-info.card-inner-info h2 {
        margin-bottom: 13px;
        font-size: 19px;
    }
    .card-list-box h3{
            padding-top: 9px;
    }
    .card-info.card-inner-info h2{
                margin-top: 17px;
    }
    .card-info.card-inner-info{
        margin-bottom: 20px;
    }
    .card-list-box h3::after{
            height: 125px;  
    }
    .card-list-box {
        width: 100%;
    }
    .card-info h3 {
        font-size: 20px;
        margin-bottom: 11px;
    }
    .blog-description strong {
        font-weight: 600;
        font-size: 17px;
    }
    .blog-description  h3 strong{
        font-size: 15px;
    }
    .main-blog-content{
        padding: 12px;
    }
    .blog-social h2 {
        font-size: 21px;
        margin-bottom: 20px;
    }
    .blog-content.blog-content-data .blog-img img {
        height: auto;
    }
    .our-blog-details{
        row-gap: 10px;
    }
    .our-project-card.no-record img {
        width: 194px;
    }
    .custom-pagination{
        padding: 25px 0 10px;
    }
    .our-project-card.no-record{
        margin-top: 1px;
    }
    .our-project-card.no-record p {
        margin-top: 18px;
        font-size: 17px;
    }
    .page-section {
        padding: 39px 0px;
    }
    .our-project-card {
        width: 47.7%;
    }
    .container{
        max-width: 720px;
    }
    .hero-text-sec {
        height: 71%;
        padding: 6px 0px;
    }

    img.bg-shape {
        display: none;
    }

    .how-to-play-img img {
        display: none;
    }

    .overlay-1 {
        display: none;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text-sec .row {
        row-gap: 50px;
        margin: 0;
    }

    .header .row {
        margin: 0;
    }

    .text-box ol li {
        font-size: 18px;
        margin-bottom: 5px;
        text-align: left;

    }

    .text-box ol {
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .hero-img-inner {
        text-align: center;
    }

    .m_top {
        margin-top: 0;
    }

    .privacy-info {
        width: 100%;
        padding: 10px;
    }

    .privacy-info ul {
        padding-left: 21px;
    }

    .privacy-info h2 {
        font-size: 18px;
        margin-top: 16px;
    }
    .inner-wrapper {
    padding-top: 5px;
}

    .privacy-info h3 {
        color: #6e6e6e;
        font-size: 16px;
        margin: 7px 0px;
    }

    .privacy-info ul li {
        list-style: disc;
        font-size: 13px;
    }

    .privacy-info p {
        font-size: 13px;
        margin: 6px 0px;
    }

    .privacy-title h1 {
        margin-bottom: 11px;
        font-size: 23px;
    }


    .mb15 {
        margin-bottom: 15px;
    }

    .mt10 {
        margin-top: 0;
    }

    .how-to-play .row {
        row-gap: 40px;
    }

    .text-box h3 {
        font-size: 28px;
    }

    .chart-btn {
        padding: 7px 11px;
    }

    .all-chart-info {
        margin-bottom: 19px;
        padding-top: 10px;
    }

    .hero-img-inner img {
        max-width: 150px;
        margin-bottom: 14px;
    }

    .hero-text-sec .row {
        row-gap: 0;
        flex-direction: column-reverse;
    }
    .contact{
        padding: 39px 10px;
    }
    
    .timing-grid{
        margin-top: 26px;
        grid-template-columns: repeat(1, 1fr);
    }
    .game-rates-info .row {
        row-gap: 12px;
    }
    .game-results-box{
            margin-bottom: 10px;
    }
    .game-results-bottom{
                font-size: 15px;
    }
    .game-results-bottom{
                padding: 6px 15px;
    }
    .about-image{
        display: none;
    }
    .about-section {
    padding: 26px 0;
    }
        .game-rates {
        padding: 25px 0;
    
        }
        .game-results-info {
        padding: 30px 3px;
    }

    .hero-section {
        padding-bottom: 0px;
    }
    table tbody td,.tbl-font{
        font-size: 12px;
    }
    .main-section{
        padding-top: 30px;
    }
    section.game-results-info.game-results-bg{
        margin-bottom: 36px;
    }
      .sec-title.mt-5 {
        margin-top: 55px !important;
    }
    ul.game-list-grid.game-list.game-list-inner {
        grid-template-columns: repeat(2, 1fr);
    }
        .step-card {
        width: 47.9%;
    }
        .download-steps-section {
        margin-top: 0px;
    }
    .download-section{
        padding: 64px 20px;
    margin-top: 33px;
    }
    .game-list-grid {
        gap: 8px;
        margin-top: 34px;
    }
    .screenshot-sec .swiper {
        width: 100%;
        margin-top: 28px;
    }

    .sec-title.chart-title {
    display: block;
    margin-bottom: 22px;
}

}

@media (max-width: 575px) {
    .download-app {
        text-align: center;
        margin-top: 26px;
    }
    .phone-frame img {
        display: none;
    }
    .card-info h3 {
        font-size: 17px;
    }
    .download-steps-section {
        padding: 2px 0;
    }
    .card-title h1 {
        font-size: 17px;
    }
    .card-title{
        margin-bottom: 0px;
    }
        .inner-chart-btn {
        margin-top: 1px;
    }
    .step-content {
        margin-top: 0px;
    }
        .step-content h3 {
        font-size: 20px;
                margin-bottom: 7px;
    }
    .footer-top{
                grid-template-columns: repeat(1, 1fr);
    }
    .footer-brand img {
        width: 115px;
        margin-bottom: 5px;
    }
    .crown-box {
    padding: 9px;
    }
    .footer-middle {
        gap: 9px;
    }
    .mob-inner-logo img {
        width: 52px;
    }
    .main-header {
        padding: 5px 0px;
    }
    .footer-bottom {
        padding: 13px 8px;
        font-size: 14px;
    }
    .security h4 {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .security{
        justify-content: left;
        text-align: left;
    }
    .footer-middle {
        padding: 16px 11px;
    }
    .security i{
            font-size: 15px;
                width: 34px;
    height: 34px;
    }
    .footer-top {
        padding: 18px 11px;
    }
    .footer-support{
            padding: 14px;
    }
    .blog-info-inner span{
            font-size: 15px;
    }
    .card-info {
        margin-top: 1px;
        padding: 10px;
        margin-bottom: 37px;
    }
    a.small-btn.chart-btn-info {
        margin-top: 17px;
    }
    .panel-body{
        overflow-x: auto;
        padding: 0px;
    }
    .page-section {
        padding: 15px 0px;
    }
    .sec-title.chart-title{
                margin-bottom: 5px;
    }
    .mobile-num::after{
        display: none;
    }
        .card-title {
        padding: 13px 10px;
    }
    .card-title{
            margin-top: 14px;
    }
    .mobile-num{
        font-size: 19px;
        padding: 3px 0px;
        margin-right: 0px;
    }
    .results-times i{
            font-size: 19px;
    }
    .timing-card-name {
        flex: 1;
        font-size: 13px;
    }
    .choose-us-content {
    width: 100%;
}
    .choose-us-img{
        display: none;
    }
    .timing-card-badge{
        display: none;
    }
        .game-results-bottom {
        font-size: 11px;
    }
    
    .about-content{
            padding: 25px 14px;
    }
    .about-content .sec-title h2 {
        font-size: 19px;
            text-align: left;
    }
    .game-results-body .results-times{
        font-size: 15px;
        font-weight: 400;
        margin-top: 8px;
        padding-bottom: 7px;
         margin-bottom: 8px;
        padding-top: 7px;
    }
        .contact {
        padding: 13px 6px;
    }
    .step-content-info{
        padding: 16px 14px;
        margin-top: 17px;
    }
    .whatsapp-info{
          padding: 3px 0px;
               font-size: 19px;
    }
    .game-rates-box img {
        width: 75px;
    }
    .chart-result-info span {
    font-size: 21px;
    font-weight: 500;
    }
    thead th{
            font-size: 13px;
                color: #000000;
    }
     .game-rates-box::before {
            display: none;
    }
    .game-rates-box{
            gap: 11px;
    }
    .blog-social h2 {
           font-size: 16px;
        margin-bottom: 7px;
    }
    .blog-description p {
        margin-bottom: 7px;
        font-size: 15px;
    }
    .our-project-card {
        width: 100%;
    }
        .feature-content h4 {
        font-size: 15px;
    }
    .feature-highlights-section {
        padding: 16px 11px;
    }
    
    .swiper-slide{
        text-align: center;
    }
    .feature-content h4{
            margin-bottom: 4px;
    }
        .feature-card {
        padding-bottom: 11px;
    }
        .feature-icon img {
        width: 36px;
    }
    .feature-icon {
        width: 38px;
    }
    .step-card {
        width: 100%;
    }
    .game-list li {
        margin: 0px 0;
    }
    .sec-title.mt-5 {
        margin-top: 27px !important;
    }
    .container{
        max-width: 540px;
    }
    section.game-results-info.game-results-bg{
              margin-bottom: 0;
        padding-bottom: 0;

    }
    .chart-title.all-chart-title {
        margin-bottom: 19px;
    }

    .modal-body {
        padding: 7px;
    }

    .chart-title {
        text-align: center;
        margin-top: 17px;
        padding: 0px 10px;
    }

    .chart-btn {
        padding: 7px 11px;
    }

    .faqs-info h2 {
        text-align: center;
    }
    .main-section{
        padding-top: 28px;
        padding-bottom: 26px;
    }
    .main-section     .chart-table-data table th {
        font-size: 15px;

    }
    .hero-section {
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .hero-center{
            padding: 0px 19px;
    }
    .tbl-td {
        padding: 7px !important;
    }
    .main-section .sec-title.mb-4 {
        margin-bottom: 0px !important;
    }

    .faqs-info .sec-title h2::after {
        left: 134px;
        bottom: -12px;
    }

    .chart-table-data table tbody td {
        padding: 5px;
    }

    .all-card-box h3 {
        font-size: 18px;
    }

    .copy-right {
        padding: 47px 0px 19px;
        padding-top: 16px;
    }

    .modal-body.time-chart-info tbody td {
        padding: 5px;
    }

    .players-img {
        margin-top: 16px;
    }

    .game-results-box {
        margin-bottom: 9px;
    }

    .play-rates {
        padding-bottom: 0px;
    }

    .game-results-bottom {
        display: flex;
        padding-top: 4px !important;
    }

    .contact {
        flex-wrap: wrap;
        row-gap: 14px;
        border-radius: 0px;
    }

    .header .row {
        padding: 0px 16px;
        padding-top: 24px;
    }

    .small-btn {
        font-size: 15px;
        padding: 9px 19px;
    }

    .hero-img-inner img {
        max-width: 189px;
        margin-bottom: 0px;
    }
    .top-games-result .game-results-body::before{
            width: 170px;
            top: -28px;
            right: -84px;
    }
    .chart-result-info span {
        font-size: 19px;
    }

    .small-btn img {
        width: 21px;
    }

    .how-to-play-img img {
        display: none;
    }

    .section-title h2 {
        font-size: 24px;
    }
    .steps {
        width: 100%;
    }
    .text-box h3 {
        font-size: 22px;
    }


    .p-60 {
        padding: 45px 0px;
    }

    .text-box ol li {
        font-size: 14px;
        margin-bottom: 1px;
    }
    .step-content-info ul li{
        font-weight: 500;
        line-height: 26px;
        font-size: 15px;
    }
    .step-item{
        justify-content: left;
        margin: 8px 0;
    }

    .play-wrapper{
        flex-direction: column;
    }
    ul.game-list-grid.game-list.game-list-inner{
                grid-template-columns: repeat(1, 1fr);
    }
    .screenshot-sec {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .how-to-play.p-60 {
        margin: 20px 0px;
    }

    .result-inner-main {
        margin-top: 45px;
    }

    .today-result.p-60 {
        padding: 40px 0px 40px 0px;
    }

    .top-shape h3 {
        font-size: 22px;
    }

    .hero-text-sec .row {
        row-gap: 0;
        flex-direction: column-reverse;
    }

    .logo img {
        width: 71px;
    }
    .footer-column h4{
            margin-bottom: 15px;
    }
    .hero-text h5{
        letter-spacing: normal;
        margin-bottom: 2px;
        margin-top: 21px;
        font-size: 11px;
    }

    .game-results-head {
        padding: 9px 12px;
    }

    .game-results-body .results-name {
        font-size: 20px;
    }
    .about-image{
        display: none;
    }
    .inner-chart-info{
        gap: 9px;
    }
    .chart-details{
        padding: 4px 0px;
        padding-bottom: 15px;
    }
        .hero-image img {
        width: 205px;
    }
    ul.game-list li{
        font-size: 15px;
            padding: 12px 10px;
    }
    .game-info-section .sec-title h2{
                font-size: 15px;
    }
    .game-info-section .sec-title{
        gap: 4px;
    }
    .hero-text h1 img{
                margin-bottom: 0;
                
    }
    .download-text {
        font-size: 15px;
                margin-bottom: 15px;
    }
    .download-heading {
        font-size: 21px;
        margin-bottom: 12px;
    }
    .small-btn.chart-btn {
        padding: 11px 19px;
        display: table;
        font-size: 14px;
    }
    .download-section {
        padding: 33px 10px;
        margin-top: 16px;
    }
    .mobile-preview{
        display: none;
    }
    .mobile-preview img {
        width: 100%;
    }
    .inner-chart-info a {
        width: 100%;
    }
    .game-rates-info .row {
        row-gap: 10px;
    }
    .about-section::before, .about-section::after{
        opacity: 0.2;
    }
    .about-text {
        font-size: 16px;
        line-height: normal;
    }
    .about-section{
        padding: 12px 0;
    }

    .accordion-button {
        font-size: 15px;
        font-weight: 500;
    }

    .copy-right-img p {
        font-size: 12px;
        margin-top: 0;
        text-align: center;
    }
    .game-info-section {
        padding: 32px 0;
    }
    .game-results-body {
        padding: 11px 15px;
    }

    .game-results-body .results-num {
        font-size: 20px;
        font-weight: 600;
    }

    .hero-text-sec {
        height: 48%;
    }

    .game-rates,
    .game-results-info,
    .faqs-info {
        padding: 22px 0px;
    }
    .all-chart-data {
        padding: 11px 15px;
    }
    .main-section .container {
        padding-left: 3px;
        padding-right: 3px;
    }
    .timing-card-slot{
            font-size: 10px;
    padding: 0 11px;
    }
    .chart-table-data table tbody td {
        font-size: 14px;
    }
    tbody td {
        font-size: 19px;
        padding: 1px;
    }
    .copy-right-img{
        gap: 11px;
        flex-direction: column-reverse;
    }
    .right-social-media a{
            font-size: 19px;
            width: 30px;
            height: 30px;
    }
    .search-input{
            margin-bottom: 13px;
            margin-top: 24px;
    }
    .chart-table-data table th {
        font-size: 11px;
        padding:4px 10px;
    }
    .chart-table-data .tbl-font {
        font-size: 10px;
    }
    .scroll-info.footer {
        margin-bottom: 26px;
    }
    .chart-title h2 {
        font-size: 21px;
    }
    table th {
        padding: 4px;
    }
    .small-btn.scroll-btn {
        width: 151px;
        font-size: 13px;
        margin-bottom: 0px;
    }
    .modal-header {
        padding: 6px 10px;
    }
    .header {
        padding: 0px 0px;
    }

    .modal-title {
        margin-bottom: 0;
        font-size: 17px;
    }

    .game-rates-box p {
        font-size: 17px;
        font-weight: 500;
        margin-top: 4px;
    }

    .sec-title h2 {
        position: relative;
        font-size: 19px;
    }

    .mobile-num {
        width: auto;
        height: 40px;
    }

    .mobile-num-img,
    .whatsapp-num-img {
        width: 40px;
        height: 40px;
    }

    .mobile-num-img img,
    .whatsapp-num-img img {
        font-size: 14px;
            width: 24px;
    }

    .whatsapp-info {
        width: auto;
        height: 40px;
    }

    .game-rates-box {
        border-radius: 5px;
        padding: 12px 12px;
    }

    .btn-1 img {
        width: 19px;
        margin-right: 0px;
    }

    .btn-1 {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-text h1 {
        margin-bottom: 16px;
        font-size: 21px !important;
        line-height: 30px;
    }


    .hero-text-sec {
        padding-bottom: 0px;
        padding-top: 7px;
    }

    .footer-logos img {
        width: 105px;
    }

    .footer-logos {
        margin: 6px 0px;
    }

    .inner-row {
        flex-wrap: wrap;
    }
    .login_text {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        border-radius: 0px;
        padding: 15px;
    }
    .sec-title {
        margin-bottom: 19px;
    }

    .close_btn {
        font-size: 12px;
    }

    .faqs-info {
        padding-top: 0px;
    }

    .header-menu img {
        width: 35px;
    }

    .text-box ol {
        margin-top: 14px;
        margin-bottom: 18px;
    }
    .navbar-light .navbar-nav .nav-link {
        padding: 15px 10px;
    }

}

