body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
    font-family: 'Rubik';
    color: #333333;
    width: 100%;
    position: relative;
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(10, 46, 61, 1) 100%);
    z-index: -1;
}
:root {
    --text-main: #f2e9d8;
    --primary: #11CFE8;
    --primary-hover: #006D78;
    --background: #006D78;
    --headings: rgba(255, 255, 255, 0.9);
    --body-text: rgba(255, 255, 255, 0.95);
    --borders: #007a884d;
    --gold-gradient: linear-gradient(180deg, rgba(0, 108, 120, 0.4) 0%, rgba(3, 247, 247, 0.5) 100%);
    --bg-page: #fdf9f3;
    --card-bg: #fdf7ee;
    --card-border: #f0dcb8;
    --gold-1: #11CFE8;
    --gold-2: #00C9DE;
    --gold-3: #006D78;
    --text-dark: #ffffffcf;
    --accent-orange: #006D78;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;

}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
       background:linear-gradient(180deg, #013543 0%, #0c4859 100%);
}

::-webkit-scrollbar-thumb {
    background: #008081;
 
    border-radius: 10px;
}

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 {
    padding-top: 30px;
}

.main-header-info {
    position: relative;
}

.header {
    width: 100%;
}

.mobile-num-img img {
    filter: invert(1);
    animation: phoneShake 2s 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: 20px;
    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: 13px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 9px 8px;
}

.header-menu ul li a svg {
    width: 26px;
    height: 26px;
}

.header-menu ul li a:hover {
    color: rgba(3, 247, 247, 0.8);
}

.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 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%{
        box-shadow:0 0 0 0 rgba(17,207,232,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(17,207,232,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(17,207,232,0);
    }
}

@keyframes glowBlink {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.small-btn {
    font-size: 18px;
    display: inline-flex;
    padding: 11px 21px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    align-items: center;
    margin-bottom: 29px;
    gap: 6px;
    position: relative;
    background: #13BADB;
    background: linear-gradient(180deg, rgba(19, 186, 219, 1) 0%, rgba(0, 122, 136, 1) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .4s;
    overflow: hidden;
    line-height: normal;
}

.hdr-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn {
    border: none;
    border-radius: 4px;
    font-size: 21px;
    padding: 10px 28px;
    text-transform: uppercase;
    font-weight: 400;
    align-items: center;
    color: var(--card-bg);
    text-decoration: none;
    transition: .4s;
    display: flex;
    overflow: hidden;
    background: #007A88;
    background: linear-gradient(180deg, rgba(19, 186, 219, 1) 0%, rgba(0, 122, 136, 1) 100%);
    gap: 10px;
    border: none !important;
}
.download-btn{
    display:inline-flex;
    align-items:center;
    animation:pulse 2s infinite;
}

.download-btn:hover{
    transform:translateY(-4px) scale(1.03);
}

.download-btn i{
    animation:bounce 1.2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(17,207,232,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(17,207,232,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(17,207,232,0);
    }
}

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(4px);
    }
}
.wtp-btn svg {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    background-color: #25D366;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
}

.our-blog-details.no-record {
    margin: auto;
    justify-content: center;
    text-align: center;
}

.read-more-btn {
    color: #c7c7c7;
    font-size: 13px;
    cursor: pointer;
}


.our-blog-details {
    column-gap: 19px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    row-gap: 23px;
}

.search-input {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px;
    /* <-- key change: match input's width, not full container */
    margin: 25px auto 46px;
}

.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;
}

img.whatsapp-icon {
    background: #fff;
    border-radius: 50%;
}

.form-control:focus {
    box-shadow: none;
}

.our-project-card.no-record:hover {
    border: none;
    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: #ffffffa6;
    margin-top: 21px;
    font-size: 20px;
}

.our-project-card.no-record img {
    width: 280px;
}

.loader-bars span:nth-child(1) {
    animation-delay: 0s;
}

.loader-bars span {
    width: 8px;
    height: 10px;
    background: #03adbc;
    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;
    }
}

.form-control {
    color: #fff;
}

.game-results-body .results-name {
    text-align: center;
}

.form-control:focus {
    color: #fff;
}

.footer-brand img {
    width: 235px;
    margin-bottom: 26px;
}

.read-more:hover {
    color: #fff;
}

.small-btn img {
    width: 22px;
    margin-right: 5px;
}

.hero-section {
    padding: 9px 0 0;
    overflow: hidden;
}

.feature-card-info {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-badge {
    background: linear-gradient(182deg, #272727, #0f1116);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 184, 61, .15);
}

.top-badge h4 {
    font-size: 16px;
    color: #0f1116;
    text-transform: uppercase;
}

.top-badge {
    width: 160px;
    padding: 8px;
    border-radius: 20px 0 20px 0px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 223, 127, 1) 0%, #FFC300 100%);
}

.feature-grid-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.feature-card-ingo {
    padding: 25px;
    text-align: center;
}

.feature-card-info img {
    width: 50px;
}

.feature-card-info h5 {
    color: var(--primary);
    font-size: 24px;
}

.feature-card-info p {
    color: #000;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    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;
}

.hiro-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
}

.hero-image img {
    width: 360px;
}

.banner {
    position: relative;
    max-width: 100%;
    border-radius: 14px;
    height: 84vh;
}

.sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sparkles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #8ff2f7;
    border-radius: 50%;
    box-shadow: 0 0 6px 1px rgba(143, 242, 247, 0.9);
    opacity: .8;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 134px;
}

.headline {
    color: var(--card-bg);
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px #8ff2f7;
}

.subline {
    color: #ffffffc6;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.play-wrap {
    position: static;
    left: 50%;
    bottom: 0%;
    z-index: 2;
}

.play-wrap img {
    display: block;
    width: 662px !important;
    height: auto;
    margin-top: 78px;
}

.cards-wrap {
    position: absolute;
    right: 174px;
    top: 0px;
    z-index: 2;
}

.dice-wrap,
.cards-wrap {
    width: 361px;
}

.play-wrap {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.dice-wrap img,
.cards-wrap img,
.play-wrap img {
    width: 100%;
}

.dice-wrap {
    position: absolute;
    top: 130px;
    left: 207px;
}
.hiro-btns a:first-child{
    display:flex;
    align-items:center;
    gap:10px;
    font-size: 21px;
    padding:8px 20px;
    border:2px solid #007A88;
    border-radius:4px;
    color:#fff;

    background:linear-gradient(
        180deg,
        rgba(19,186,219,0) 0%,
        rgba(0,122,136,0) 100%
    );

    transition:all .35s ease;
}

.hiro-btns a:first-child:hover{
    background:linear-gradient(180deg,#13BADB 0%,#007A88 100%);
    border-color:#13BADB;
    transform:translateY(-3px);
    box-shadow:0 0px 6px rgba(19,186,219,.35);
}
.hiro-btns a:last-child:hover{
    transform:translateY(-3px);
}
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-text h1 {
    color: #000000d1;
    font-size: 50px;
    line-height: 56px;
    font-weight: 700;
    /* -webkit-text-stroke: 1px #d48c3f; */
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 2px #FFC300;
    margin: 20px 0 0;
}

.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 {
    display: inline-flex;
    align-items: center;
    gap: 0px;
}

.chart-btn .left-icon,
.chart-btn .right-icon {
    transition: all .5s ease;
}

.chart-btn .right-icon {
 opacity: 0;
    width: 0;
    overflow: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.chart-btn:hover .right-icon {
 opacity: 1;
    width: 20px;
    transform: translateX(0);
}

.sec-title {
    margin-bottom: 40px;
    text-align: center;
}

.sec-tle-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sec-tle-flex .sec-title,
.sec-tle-flex a {
    margin-bottom: 0;
}

.swiper-card {
    background: linear-gradient(90deg, rgba(34, 106, 128, 0.2) 0%, rgba(0, 68, 91, 0.2) 100%);
    border: 1px solid #226A80;
    border-radius: 4px;
    padding: 60px;
    position: relative;
}

.screenshot-sec .swiper {
    width: 100%;
    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: auto;
    border-radius: 10px;
}

.mobile-num:hover {
    color: #f7862e;
}

.whatsapp-info:hover {
    color: #1bd470;
}

.swiper-button-next,
.swiper-button-prev {
    background: #146c7f;
    border: 1px solid #146c7f;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: -20px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -20px;
}

.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: 20px;
    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;
}

.screenshot-sec {
    padding-top: 62px;
    padding-bottom: 50px;
    /* background-image: url('../img/coin-bg.png'); */
    background-position: bottom;
    background-size: contain;
}

.live-result-card {
    background: linear-gradient(90deg, rgba(34, 106, 128, 0.2) 0%, rgba(0, 68, 91, 0.2) 100%);
    border: 1px solid #226A80;
    border-radius: 4px;
    padding: 50px 12px 12px 12px;
}

.game-results-info {
    background-position: center;
    background-size: cover;

}

section.game-results-info.game-results-bg {
    margin-bottom: 0;
    padding-top: 126px;
}
.download-section  {
    display: none;
}
.card-download .download-btn {
    padding: 12px 22px;
    font-size: 20px;
}
.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;
}

.mobile-num {
    transition: 0.3s;
    display: flex;
    color: #000000;
    text-shadow: 0px 1px 2px #f7862eb3;
    height: 48px;
    font-size: 21px;
    font-weight: 500;
    position: relative;
    padding: 3px 0px;
    border-radius: 12px;
    align-items: center;
}

.manu-card-bg {
    background-image: url('../img/manu_bg.png');
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    min-height: 310px;
    padding: 20px;
    margin-top: 80px;
    gap: 30px;
    width: 20p;
}

.menu-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    gap: 14px;
    position: relative;
    flex-direction: column-reverse;
    background: #ffffffd6;
    box-shadow: #e7ad5c 0px 2px 8px 0px;
    border: 1px solid #ffbc5d;
    border-radius: 30px;
    width: 268px;
    height: 184px;

}

/* .menu-card img {
    width: 100px;
    height: 69px;
} */
.menu-card h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 3px;
}

.menu-card span {
    color: var(--body-text);
    font-size: 14px;
    display: block;
    text-align: center;
}

.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-info h3 b {
    color: #f7b04d;
    font-weight: 500;
}

.about-section {
    padding: 164px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.chart-btn-info {
    padding: 6px 29px !important;
    margin-bottom: 6px;
}

.chart-btn-info {
    padding: 10px 18px;
}

.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;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    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: 3px 0;
    padding-bottom: 28px;
}

.download-steps-container {
    width: 95%;
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
position: relative;
    flex: 1;
    min-width: 220px;
    padding: 38px 22px 30px;
    border-radius: 20px;
    border: 1px solid #ffffff26;
    backdrop-filter: blur(8px);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(28, 58, 74, .55), rgba(9, 20, 28, .55) 60%);
    transition: .35s;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #00bab459;
    box-shadow: 0 20px 45px rgb(0 186 180 / 3%);
}

.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-list-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 58px;
}

.game-list {
    list-style: none;
    padding: 0;
}

.game-list li {
    position: relative;
    margin: 12px 0;
    font-size: 15px;
}

.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: 113%;
    left: -61px;
    display: block !important;
    min-width: 180px;
    list-style: none;
       padding: 2px 0px !important;
    margin: 0;
    background: rgb(253 252 249 / 95%);
    /* Transparent background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari */

    border: 1px solid #fbaa59;
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    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;
    justify-content: left;
    align-items: baseline !important;
}

.dropdown-item a:hover {
    background: #ffffff14;
    color: #11cfe8 !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: #013543;
}

ul.game-list li i {
    color: #fff;
}

.copy-right-img {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

ul.game-list-grid.game-list.game-list-inner li {
    position: relative;
    overflow: hidden;
}

.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;
    margin: 0px;
    color: #fff;
    flex-direction: column;
    text-align: center;
    display: flex;
    border-radius: 6px;
    padding: 30px 29px;
    background-position: center;
    background-size: cover;
    position: relative;
}
ul.game-list li h5{
    font-size: 16px;
    font-weight: 400;
    background: #226A80;
    background: linear-gradient(90deg,rgba(34, 106, 128, 1) 0%, rgba(0, 69, 91, 1) 50%);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #226A80;
    margin-top: 16px;
}

ul.game-list li:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(10, 46, 61, 0.8) 0%, rgba(19, 186, 219, 0.7) 50%, rgba(10, 46, 61, 0.8) 100%);
}

.choose-us-section {
    padding: 62px 0px;
    background: #ffffffc2;
}

.cta-banner {
    width: 485px;
    background: #fff;
    border: 2px solid #FFC300;
    border-radius: 22px;
    padding: 10px 22px 10px 22px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.cta-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-icon img {
    width: 35px;
    display: block;
}

.cta-content {
    flex: 1;
}

.cta-text {
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.cta-highlight {
    color: #d89b22;
}

.download-btn-info {
    border-radius: 10px;
    margin-top: 49px;
    display: flex;
    justify-content: center;
}


.choose-us-img {
    width: 50%;
    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;

    gap: 15px;
}

.steps-right .step-item {
    justify-content: flex-start;
}

.step-text {
    font-size: 18px;
    color: #000;
}

.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;
}
.step-card h3{
        color: #fff;
}
.step-card h3 b{
    color: #03F6F7;
}
.mobile-preview {
    text-align: center;
}

.mobile-preview img {
    width: 100%;
    max-width: 666px;
    height: auto;
}

.inner-chart-info a img {
    width: 60px;
}

.about-image img {
    max-width: 570px;
    width: 100%;
}

.about-content {
    flex: 1;
    padding: 0;
}

.about-content .sec-title {
    margin-bottom: 20px;
    margin-top: 0;
    text-align: start;
}

.about-content .sec-title h2 {
    text-align: start;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--headings);
}

.about-title b {
    color: var(--primary);
}

.about-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--body-text);
    font-weight: 400;
    margin-bottom: 24px;
}

.about-footer ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.about-footer ul li {
    width: 48%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-footer ul li bdi {
    display: block;
    color: #ffffffab;
}

.mobile-num-img {
    position: relative;
    color: #fff;
    background: #f28e16;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    margin-right: 0;
}

.whatsapp-info {
    transition: 0.3s;
    display: flex;
    color: #fff;
    text-shadow: 0px 1px 2px #f7862eb3;
    height: 48px;
    font-size: 21px;
    font-weight: 400;
    position: relative;
    padding: 3px 0px;
    border-radius: 12px;
    align-items: center;
}

.whatsapp-num-img {
    position: relative;
    background-color: #1bd470;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    margin-right: 0;
    border: 2px solid #fff;
}

.contact span {
    color: #ffc842;
    font-weight: 600;
    margin-right: 15px;
}

.section-title {
    text-align: center;
}

.header-menu ul {
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, rgba(0, 122, 136, 0.3) 0%, rgba(19, 186, 219, 0.2) 100%);
       padding: 2px 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 126, 135, 0.8);
    /* padding-top:20px; */
}

.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-text p {
    width: 472px;
    font-size: 16px;
    margin: 20px 0;
    color: #787878;
}

.hero-img-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.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: 80px 69px;
    padding-bottom: 0px;
    overflow: hidden;
    z-index: 1;
}

.right-social-media a {
    width: 37px;
    height: 37px;
    border-radius: 7px;
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-size: 22px;
    justify-content: center;
    border: 1px solid;
    transition: 0.3s ease;
}

.facebook {
    color: #1877F2;
    border-color: #1877F2;
}

.youtube {
    color: #FF0000;
    border-color: #FF0000;
}

.instagram {
    color: #dc2743;
    border-color: #dc2743;
}

.right-social-media a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.facebook:hover {
    color: #fff;
    border-color: #1877F2;
    background-color: #1877F2;

}

.youtube:hover {
    color: #fff;
    border-color: #FF0000;
    background-color: #FF0000;
}

.instagram:hover {
    color: #fff;
    border-color: #dc2743;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.table-responsive {
    box-shadow: rgb(0 250 246 / 20%) 0px 0px 15px 0px;
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: rgb(0 250 246 / 20%);
}

.timing-table .open-time,
.timing-table .close-time {
    display: table-cell;
    font-size: 16px;
}

.timing-table .open-time::after {
    display: none;
}

.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: 20px;
    position: absolute;
    padding: 7px 11px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #00cecb;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.inner-chart-info a {
    gap: 0px;
    display: flex;
    padding: 0;
    background-size: cover;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    color: #ffffff;
    width: 100%;
    justify-content: left;
}

.inner-chart-info a:hover span {
    color: #fff;
}

.inner-chart-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    flex-wrap: wrap;
    gap: 20px;
}

.info_card {}

.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: 27px 37px;
    font-size: 20px;
    color: #ffbc5d;
    width: 100%;
}

.info_card li a,
.info_card a span {
    border-radius: 10px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
    clip-path: none;
    position: relative;
    background-image: url(../img/info-shape.png);
    background-position: center;
    background-size: cover;
    line-height: normal;
    transition: 0.4s ease;
    padding: 24px 18px;
}

.info_card li a {
    font-size: 20px;
}
.info_card li a:hover {
    color: #03F6F7;

}
 

.info_card a span:hover {
    color: #03F6F7;
}

.info_card a span:hover::before {
    color: #fff;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
}

.game-rates-box span {
    display: block;
}

.game-rates-box {
    padding: 40px 20px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    gap: 4px;
}

.game-rates-box p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.game-rates-box p span {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 400;
    border-top: 1px solid #226A80;
    margin-top: 12px;
    padding-top: 12px;
}

.game-rates-info .row {
    position: relative;
    justify-content: center;
    z-index: 111;
}

.game-results-info {
    padding: 62px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.game-card {
    padding: 46px 20px;
    margin-bottom: 20px;
    background-image: url('../img/our-gemas-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 98% 94%;
}

.game-type-info .game-results-body {
    padding: 0px;
}

.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: #d31a423d;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.text-green {
    background: rgba(0, 255, 0, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.game-results-body {
    padding: 3px 0px;
    color: #fff;
    text-align: center;
}

.live-result-body {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
}

.live-result-img {
    text-align: center;
}

.game-results-body .results-times {
    font-size: 18px;
    font-weight: 400;
    color: var(--body-text);
    border-top: 1px solid rgba(1, 53, 67, 0.6);
    border-bottom: 1px solid rgba(1, 53, 67, 0.6);
    padding: 16px 0;
    margin: 18px 0;
    text-align: center;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-times i {
    background: rgba(3, 247, 247, 0.8);
    background-clip: text;
    color: transparent;
    padding-right: 8px;
    font-size: 28px;
}

.game-results-body a {
    margin-top: 10px;
    padding: 6px 23px;
    color: hsla(0, 0%, 100%, 0.7);
    border: 1px solid #00cecb;
    font-size: 18px;
    border-radius: 4px;
    display: block;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.game-results-body a:hover {
    background: linear-gradient(90deg, rgba(11, 149, 195, 0.8) 0%, rgba(3, 247, 247, 0.8) 100%);
}

.game-results-body a:hover i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.game-type-icon {
    padding: 7px 14px;
    background: linear-gradient(182deg, rgba(0, 122, 136, 0.3), rgba(1, 53, 67, 0.4));
    border-radius: 0px 0px 10px 10px;
    border: 1px solid rgba(0, 122, 136, 0.3);
    text-align: center;
    color: #fff;
}

.game-type-icon img {
    width: 45px;
}

.game-results-box.game-result-card {
    margin-bottom: 17px;
    padding: 0;
    border-radius: 10px;
}

.game-results-box.game-result-card:hover {
    box-shadow: #013543 0px 0px 12px;
}

.game-result-body {
    display: flex;
    border: 1px solid rgba(0, 122, 136, 0.3);
    border-radius: 10px 10px 0 0;
    padding: 20px;
    align-items: center;
    background: linear-gradient(180deg, #13badb42 0%, #007a8800 100%);
}

.game-result-body img {
    width: 80px;
    margin-right: 30px;
}

.results-name {
    font-size: 22px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: none;
    color: #fff;
}

.top-games-result .game-results-box {
    border: 1px solid #013543;
    padding: 22px 30px;
    margin-bottom: 20px;
    height: 320px;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.results-num {
    font-size: 25px;
    font-weight: 500;
    color: rgba(3, 247, 247, 0.8);
    text-align: center;
    line-height: normal;
}

.game-card .game-results-body {
    padding: 0px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0 16px;
}

.game-card .results-num {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(13, 202, 240, 0.8);
    line-height: normal;
    padding: 7px 34px 0px;
    ;
    background: linear-gradient(182deg, rgba(0, 68, 91, 0.4), rgba(34, 106, 128, 0.4));
}

.open-time,
.close-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}

.open-time {
    color: #199300;
    position: relative;
}

.game-results-bottom::after {
    content: " ";
    width: 1px;
    height: 30px;
    position: absolute;
   left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, rgba(11, 149, 195, 0.4) 0%, rgba(3, 247, 247, 0.3) 100%);
}

.close-time {
    color: #9D0000;
}

.open-time p,
.close-time p {
    color: var(--headings);
}

.open-time h6,
.close-time h6 {
    font-size: 20px;
}

.game-results-bottom {
    display: flex;
    justify-content: center;
    border-radius: 13px;
    gap: 76px;
    font-size: 16px;
    color: #fff;
    align-items: center;
    padding: 12px 12px;
    position: relative;
}

.game-results-bottom .open-time,
.game-results-bottom .close-time {
    display: block;
    text-align: center;
}

.game-results-bottom .open-time p,
.game-results-bottom .close-time p {
    color: #fff;
    font-weight: lighter;
    letter-spacing: 1px;
}

.accordion-item {
    margin-bottom: 10px;
    border: none;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius:6px;
    border-top-right-radius:6px;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #007d87;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
        filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1510%) hue-rotate(179deg) brightness(116%) contrast(100%);
}

.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;
}
.no-live-result {
    grid-template-columns: 12fr;
}
.no-result-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-result {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.no-result img {
    width: 180px;
    max-width: 100%;
    margin-bottom: 15px;
}

.no-result h5 {
    margin: 0 0 8px;
    color: #ffffffcc;
}

.no-result p {
    margin: 0;
    max-width: 400px;
    color: #ffffff96;
}
.panel-heading {
    background-color: #3f51b5;
}

.time-chart-info table {
    min-width: 0;
}

.small-btn.chart-btn {
    padding: 14px 22px;
}

.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: 20px;

}

.chart-title h2::after {
    left: 100%;
    margin-left: -50px;
}

.chart-title p {
    margin-top: 15px;
    color: #ffffff;
}

.chart-table-data {
    overflow-x: auto;
}

table tbody tr:nth-child(odd) td {
    background-color: transparent;
}


.scroll-info {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 12px;
}

.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;
}

.results-time-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.results-time-text i {
    color: #00e2edc4;
}

.timing-card-name {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.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;
}

.timing-table {
    margin-bottom: 0 !important;
}
.faq-image img {
    max-width: 331px;
}
.faq-image{
    text-align: center;
}
.faq-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-section{
        padding: 62px 0px;
        padding-bottom: 121px;
}
.accordion-item {

    background-color: transparent;
}

.accordion-button {
    background-color: transparent;
    border: 1px solid #007A88;
    border-radius: 6px;
}

.timing-table tbody tr:nth-child(odd) {
    background: #0000001f;
}
.timing-table tbody tr:nth-child(even) {
    background: #07303b4f;
}

.faq-wrapper .accordion-button:not(.collapsed) {
    border: 1px solid #00cecb6b;
    background-color: transparent;
    border-radius: 6px 6px 0 0;
    color: #fff;
}

.accordion-body {
    background-color: #002e3c61;
    border: 1px solid #00cecb6b;  
    border-radius: 0 0 6px 6px;
    color: rgba(255, 255, 255, 0.8);
}


.step-wrap {
    position: relative;
        padding: 100px 0px;
}

.step-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0px;
}

.step-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px
}

.step-eyebrow::before,
.step-eyebrow::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--cyan)
}

h1 {
    font-size: 56px;
    margin: 18px 0;
    font-weight: 800
}

h1 span {
    color: var(--cyan)
}

.step-rule {
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    margin: 0 0 26px;
    position: relative
}

.step-rule::after {
    content: "◆";
    position: absolute;
    left: 90px;
    top: -8px;
    color: var(--cyan);
    font-size: 10px
}

.step-lead {
    max-width: 360px;
    color: var(--dim);
    line-height: 1.7;
    margin: 0 0 34px
}

.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    background: linear-gradient(135deg, #12707c, #0d4750);
    border: 1px solid rgba(130, 230, 240, .35);
    border-radius: 40px;
    padding: 8px 8px 8px 28px;
    font: 700 15px Poppins, sans-serif;
    color: #fff;
    box-shadow: 0 0 40px rgba(52, 217, 234, .25);
    cursor: pointer
}

.step-cta i {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0d4750;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-style: normal
}

.step-track {
    display: flex;
    gap: 34px;
    align-items: flex-end;
}
.step-how-to-play .sec-title {
    margin-bottom: 0px;
}
.faq-content {
    font-size: 16px;
    max-width: 500px;
    font-weight: 300;
}

.step-card {
    position: relative;
    flex: 1;
    min-width: 220px;
    padding: 38px 22px 30px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(28, 58, 74, .55), rgba(9, 20, 28, .55) 60%);
    
}

.step-card:nth-child(2) {
    margin-bottom: 55px
}

.step-card:nth-child(3) {
    margin-bottom: 130px
}

.step-card:nth-child(4) {
    margin-bottom: 230px
}


.step-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2
}

h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 1.4
}

h3 b {
    color: var(--cyan2);
    font-weight: 700
}

.step-card hr {
    width: 70px;
    height: 1px;
    background: rgb(126 224 238);
    border: 0;
    margin: 0 auto 18px;
    position: relative
}

.step-card hr::after {
    content: "◆";
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    color: var(--cyan2);
    font-size: 8px
}

.step-card p {
    text-align: center;
    font-size: 13.5px;
    color: #ffffffcf;
    line-height: 1.85;
    margin: 0
}

/*==============================*/

.footer {
    background: linear-gradient(180deg,rgba(34, 106, 128, 0.6) 0%, rgba(0, 69, 91, 0.5) 100%);
    border: 1px solid rgba(255, 174, 73, .15);
    overflow: hidden;
    position: relative;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.4fr 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: #fff;
    line-height: 26px;
    font-weight: 300;
    font-size: 19px;
    max-width: 447px;
}

.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: #fff;
    margin-right: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li a {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-column a {
    font-size: 16px;
    text-decoration: none;
    color: #ffffffa0;
    transition: .3s;
}

.footer-column a:hover {
    color: var(--primary);
      padding-left: 4px;
}

/*==============================*/

.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 #11cfe844;
    display: flex;
    padding: 17px 0px;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0px;
    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: #fff;
}

.social a:hover {
    transform: translateY(-4px);
}
.steps-section {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* ---------- badge ---------- */
.steps-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 21px;
}

.steps-badge-line {
    flex: 1;
    max-width: 260px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-2));
    position: relative;
}

.steps-badge-row .steps-badge-line:last-child {
    background: linear-gradient(90deg, var(--gold-2), transparent);
}

.steps-badge-line::after {
    content: "✦";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-2);
    font-size: 13px;
    background: var(--bg-page);
    padding: 0 4px;
}

.steps-badge-row .steps-badge-line:last-child::after {
    right: auto;
    left: -10px;
}

.steps-badge {
    background: linear-gradient(182deg, #ffc1008f, #ffffff);
    border: 0px solid var(--gold-1);
    border-radius: 999px;
    padding: 11px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #000000;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(180, 130, 40, 0.25);
}

/* ---------- grid ---------- */
.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: stretch;
}

.step-connector {
    flex-shrink: 0;
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--gold-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    color: var(--gold-2);
}

.step-connector svg {
    width: 16px;
    height: 16px;
}

/* ---------- card ---------- */

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 65px 65px 0 0;
    border-color: #00b7b4 transparent transparent transparent;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.step-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(180deg, #00b7b4, #00b7b4 100%);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.step-card-number {
    position: absolute;
    top: 8px;
    left: 11px;
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
    z-index: 2;
}

.step-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 22px;
    border: 1px solid #00bab466;
    background: linear-gradient(180deg, #13badb42 0%, #007a8800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -1px 16px rgb(0 186 180 / 38%);
}

.step-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-title-accent {
    color: var(--accent-orange);
}

.step-divider {
    width: 34px;
    height: 2px;
    margin: 0 auto 14px;
    background: repeating-linear-gradient(90deg, var(--gold-2) 0 4px, transparent 4px 8px);
    position: relative;
}

.step-divider::before {
    content: "◆";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: var(--gold-2);
    background: var(--card-bg);
    padding: 0 3px;
}

.step-desc {
    font-size: 13 px;
    line-height: 1.6;
    color: #000;
}


/*==============================*/

.footer-bottom {
    padding: 22px;
    text-align: center;
    color: #ffffffd6;
    font-size: 15px;
    font-weight: 300;
}

.inner-wrapper {
    padding-top: 44px;
}

.nav-header {
    width: 100%;
    position: relative;
    border-radius: 14px;
}

.nav-header-brand img {
    width: 140px;
}

.nav-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-header-links {
    display: flex;
    align-items: center;
    gap: 6px;
    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);
}

.hdr-btn .whatsapp-num-img {
    width: 30px;
    height: 30px;
}

.hdr-btn .whatsapp-num-img img {
    width: 16px;
}

.hdr-btn .whatsapp-info {
    height: auto;
    padding: 0;
    font-size: 18px;
}

.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;
}

.search-input .form-control {
    border-radius: 6px;
    padding: 12px 60px 12px 20px;
      background: #010405;
    border: 1px solid #007a88b3;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}
.btnSearch i {
    color: #fff;
}
.search-input .form-control:focus {
    box-shadow: none;
    border: 1px solid #007a88;
    outline: none;
}

.search-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--background);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    right: 4px;
}

.our-project-card {
    background: linear-gradient(180deg, rgba(0, 69, 91, 0.2) 0%, rgba(34, 106, 128, 0.2) 100%);
    border-radius: 6px;
    border: 1px solid #ffffff45;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px;
    width: 25%;
    position: relative;
    z-index: 1;
}

.our-project-card:hover {
    border: 1px solid var(--background);
    box-shadow: #013543 0px 0px 12px;
}

.our-project-card::after {
    right: 0;
    bottom: 0;
    transition-duration: 0.4s;
}

.our-project-card span::after {
    right: 0;
    bottom: 0;
    transition-duration: 0.4s;
}

.our-project-card::before {
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

.our-project-card span::before {
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

.blog-card-img img {
    width: 100% !important;
    height: 200px;
    object-fit: fill;
    border-radius: 6px;
    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: var(--headings);
    padding: 18px 0px 9px;
    max-width: 100%;
    transition: all .5s;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    transition: color 0.4s ease-in-out;
}
.blog-info-data h3:hover {
    color: #11CFE8;
}
.news-description p {
    font-weight: 400;
    color: var(--body-text);
}
ul.game-list li:nth-child(6) {

}
.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: var(--primary);
    font-weight: 400;
    text-align: left;
    display: flex;
    margin-top: 6px;
    align-items: center;
    gap: 10px;
}

.read-more:hover {
    color: var(--headings);
}

.news-date-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    justify-content: space-between;
    color: var(--primaryColor);
    font-size: 15px;
}

.blog-ftr-details {
    color: var(--background);
    display: flex;
    align-items: center;
}
.blog-ftr-details bdi{
    display: block;
    padding:0 10px;
}

.news-date-time span {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.page-item:first-child .page-link {
    border-radius: 6px !important;
}

li.page-item.disabled .page-link {
    pointer-events: none !important;
}

.page-item.disabled .page-link {
       color: #0dcaf029;
    pointer-events: none;
    background-color: #0dcaf029;
    border-color: #0dcaf029;
}

li.page-item.disabled .page-link {
    pointer-events: none !important;
}

.page-item:last-child .page-link {
    border-radius: 6px !important;
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary) !important;
    border-color: var(--borders) !important;
    color: var(--headings) !important;
}
.page-link:hover {
    background-color: var(--background) !important;
    border-color: var(--borders) !important;
    color: var(--headings) !important;
}

.page-link {
        position: relative;
    display: block;
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #0dcaf054;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    text-align: center;
    line-height: 38px;
    padding: inherit;
}

.main-blog-content {
    border-radius: 20px;
    background: #11cfe81c;
    border: 1px solid #11cfe87c;
    padding: 20px;
}

.blog-info-inner {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 20px;
}

.blog-info-inner a i {
    margin-right: 10px;
}

.blog-info-inner a {
    color: var(--headings);
    font-weight: 500;
    font-size: 16px;
}

.blog-info-inner span {
    color: var(--headings);
    font-size: 17px;
    font-weight: 400;
}

.blog-social h2 {
    color: var(--headings);
    font-size: 30px;
    margin-bottom: 24px;
    margin-top: 10px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 50px;
}

.blog-share a {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    border: 1px solid var(--borders);
    display: flex;
    align-items: center;
    background-color: #11cfe84a;
    justify-content: center;
    transition: 0.3 ease;
}

.blog-share a:hover {
    background-color: rgba(191, 137, 37, 0.2);
    border: 1px solid var(--background);
}

.blog-share p {
    font-size: 16px;
    color: var(--headings);
}

.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: 20px;
    height: 613px;
    margin-bottom: 28px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.news-featured-items-sec .our-project-card {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--borders);
    box-shadow: none;
    background: #11cfe817;
}

.blog-description p br {
    display: none;
}

.blog-description li br {
    display: none;
}

.blog-description li {
    margin-bottom: 10px;
    font-size: 16px;
        list-style: disc;
    color: #ffffffc4;
    margin-left: 19px;
}

.blog-description strong {
    color: #ffffffc4;
    font-weight: 600;
    font-size: 19px;
}

.blog-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: start;
}

.news-featured-items-sec {
    background: #11cfe81c;
    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: var(--body-text);
}

.blog-description p strong {
    color: var(--body-text) !important;
    font-weight: 500;
}

.blog-footer {
    border: 1px solid var(--borders);
    border-radius: 20px;
    padding: 12px 20px;
    margin-top: 40px;
}

.blog-footer span {
    font-size: 24px;
    font-weight: 600;
    color: var(--headings);
}

.blog-footer p {
    font-size: 16px;
    color: var(--body-text);
}

/* ----------------- Blog --------------- */



/* ----------------- DP Boss Matka --------------- */
.sect-title-mt {
    margin-top: 70px;
    margin-bottom: 40px;
}

.card-title h1 {
    font-size: 26px;
    color: #fff;
}

.card-title {
    text-align: center;
    background: linear-gradient(260deg, rgba(230, 212, 169, 0.49) 0%, rgba(176, 147, 72, 1) 50%, rgba(230, 212, 169, 0.56) 100%);
    ;
    background-position: center;
    background-size: cover;
    padding: 20px 10px;
    margin-bottom: 25px;
    border-radius: 60px;
}

.card-info p {
    color: var(--body-text);
}
.card-info.card-inner-info {
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
    box-shadow: none;
}

.card-list-box p {
    background: transparent;
    color: #000;
    padding: 9px;
    font-size: 17px !important;
    border-radius: 0px 0px 10px 10px;
}

.card-info ul li b {
    font-weight: 600;
    color: var(--primary);
}

table,
th,
td {
    border: 1px solid #ffffff47;
}

thead {
    background: rgb(34 106 128 / 56%);
    color: var(--headings);
    font-weight: bold;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--headings);
    background-color: transparent;
    overflow-x: auto;
    border-radius: 20px;
}

thead th {
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    padding: 16px !important;
}

.small-btn.scroll-btn {
    border: 1px solid #00000075;
    font-weight: 500;
    font-size: 15px;
    justify-content: center;
    display: flex;
    width: 166px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

.small-btn.scroll-btn:hover {
    color: var(fff);
}

.sub-title {
    color: var(--body-text);
    text-align: center;
}

.game-results-box {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 22px;
}

.game-results-box:hover {
    box-shadow: #013543 0px 3px 8px;
}

.sec-title h1,
.sec-title h2 {
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 30px;
    font-weight: 600;
    color: #FFF1F1;
    position: relative;
}

.about-content .sec-title p {
    font-size: 20px;
    font-weight: 400;
    color: #03F6F7;
    margin-bottom: 12px;
}

.card-info.card-inner-info small {
    color: var(--body-text);
}

.swiper-slide img {
    width: 100%;
}

/* ---------------------- design --------------------- */
.sec-title h1 b,
.sec-title h2 b ,
.card-info h2 b, 
.card-info h3 b{
    color: #03F6F7;
    font-weight: 600;
}

.sec-title p {
    color: rgba(255, 255, 255, 0.8);
}

.card-info {
    margin-bottom: 58px;
}
.card-info h2, 
.card-info h3 {
    font-size: 24px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 26px;
    z-index: 1;
    position: relative;
}
.card-info-bdr {
    border:1px  solid var(--borders);
    padding: 26px 26px 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px #031318;
}
.card-info-content {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 20px;
}
.card-info-content h2 {
    padding-top: 0;
}
.card-info-content p{
    margin-bottom: 10px;
}
.card-info-content:last-child p{
    margin-bottom: 10px;
}
.card-info-img{
    margin: auto;
}
::marker{
    color: var(--primary);
}
.card-info ul li {
    margin-top: 4px;
    list-style: disc;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.76);
}

.chart-results-box {
    background: url(../img/chart-bg.png);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 48px 22px;
    box-shadow: #0dcaf04d 0px 0px 8px 0px;
    border-radius: 10px;
}
.card-info.card-inner-info p {
    font-size: 20px;
    color: var(--body-text);
    line-height: 30px;
    font-weight: 400;
    opacity: 0.9;
}
.card-info.card-inner-info p b {
    border-radius: 20px;
    padding: 6px 20px;
    margin: 14px 0;
    display: inline-block;
    color: var(--headings);
    font-weight: 500;
    box-shadow: #0dcaf04d 0px 0px 8px 0px;
    border: 1px solid var(--borders);
}
.rate-highlight {
    color: var(--primary);
}
.card-info.card-inner-info p strong {
    font-weight: 400;
    color: var(--primary);
}
.card-info.card-inner-info h2 {
    margin-bottom: 22px;
    font-size: 24px;
    color: #11cfe8c8;
    padding-top: 0;
}
.card-list-box h3 {
    font-size: 20px;
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
}

.card-list-box {
    width: 32.33%;
    border-radius: 10px;
    border: 1px solid var(--borders);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-list-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
}
.card-list-info .card-list-box h3{
    color: #ffffffbc;
    font-weight: 400;
}
.card-list-info .card-list-box p{
    color: var(--primary);
    background: linear-gradient(182deg, rgba(0, 122, 136, 0.3), rgba(1, 53, 67, 0.4));
    border-radius: 0px 0px 10px 10px;
    border: 1px solid rgba(0, 122, 136, 0.3);
    margin-top: 13px;
    opacity: 1;
    transition: all 0.3s ease;
}
.card-list-info .card-list-box:hover{
    box-shadow: #013543 0px 0px 12px;
}
.chart-card-list {
    margin-top: 0;
}
.chart-card-list h3 {
    padding-bottom: 26px;
}
.card-list-info.chart-card-list p{
    margin-top: 0;
    border-radius: 0;
}
.card-grid {
    grid-template-columns: 1fr;
    gap: 0;
}
.chart-results-box .game-results-body .results-name {
    width: auto;
    text-align: center;
}

table tbody td {
    font-size: 17px;
    text-align: center;
    border: 1px solid rgba(0, 206, 203, 0.4) !important;
    color: #fff;
    padding: 12px !important;
    font-weight: 500;
}

.chart-results-box .results-num{
    margin: 10px 0 20px;
    display: inline-block;
}
.chart-results-box a{
    display: inline-block;
    margin-top: 0;
}

.filter-invert {
    filter: invert(1);
}

@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;
    }
    .content{
            margin-top: 67px;
    }
    .dice-wrap{
            left: 108px;
    }
    .cards-wrap {
    right: 84px;
    }
    .play-wrap img{
     width: 533px !important;
    margin-top: 37px;
    }
    .banner{
        height: auto;
    }
}

@media (max-width:1550px) {
    .dice-wrap, .cards-wrap {
        width: 300px;
    }
    .about-section {
    padding: 105px 0;
    }
}
@media (max-width:1500px) {
    .hero-container {
        max-width: 1210px;
        grid-template-columns: 320px 497px 303px;
    }

    .game-rates-box img {
        width: 146px;
    }

    .results-num {
        margin-bottom: 3px;
    }

    .hero-text h5 {
        margin-top: 18px;
        font-size: 12px;
    }

    .manu-card-bg {
        min-height: 284px;
    }

    .hero-text h1 {
        font-size: 46px;
        line-height: 50px;
    }

    .nav-header-inner {
        padding: 18px 36px;
    }

    .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;
        flex-direction: column-reverse;
    }

    .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: 26px 26px;
    }

    ul.game-list li {
        padding: 25px 14px;
    }

    ul.game-list li a {
        font-size: 19px;
    }

    .step-connector {
        margin: 0 0px;
    }

    .game-list-grid {
        margin-top: 51px;
    }

    .inner-chart-info a img {
        width: 47px;
    }

    .open-time h6,
    .close-time h6 {
        font-size: 15px;
    }

    .open-time i,
    .close-time i {
        font-size: 22px;
    }

    .game-results-bottom {
        gap: 8px;
        justify-content: space-around;
        font-size: 14px;
    }

    .open-time::after {
        right: -27px;
    }

    .sec-title {
        margin-bottom: 32px;
    }
    .card-list-box {
            width: 31.33%;
    }

}

@media (max-width:1400px) {
    .nav-header-links {
        gap: 12px;
    }
  
    .content {
        margin-top: 70px;
    }
    .dice-wrap, .cards-wrap {
        width: 240px;
    }

    .header-menu ul li a svg {
        width: 22px;
        height: 22px;
    }

    .chart-title h2 {
        font-size: 25px;
    }

    .card-list-box p {
        font-size: 15px !important;
    }

    .game-results-bottom {
        gap: 8px;
        font-size: 13px;
    }

    .game-rates-box img {
        width: 120px;
        margin-bottom: 10px;
    }

    .step-connector {
        width: 32px;
        height: 32px;
    }
    .info_card li a {
        font-size: 16px;
    }
    .inner-chart-info a i {
        font-size: 12px;
        padding: 8px 10px;
    }
    .steps-grid {
        gap: 8px;
    }

    .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;
    }



    .phone-frame img {
        max-width: 144px;
    }

    .footer-desc {
        padding-right: 18px;
    }

    .footer-top {
        gap: 14px;
    }

    .phone-frame {
        width: 100%;
        margin-top: -124px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .step-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-card {
        position: relative;
        width: 100%;
        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: 12px 16px;
    }

    .header-menu ul li a {
        font-size: 13px;
    }

    .nav-header-brand {
        width: auto;
        padding: 0px 0px;
        padding-right: 0;
    }

    .about-image img {
        max-width: 371px;
    }

    .nav-header-brand img {
        width: 120px;
    }

    .sect-title-mt {
        margin-top: 31px;
    }

    .scroll-info.footer {
        margin-bottom: 6px;
    }

    .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;
    }

    .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: 48px !important;
        line-height: 54px;
    }

    .feature-grid-info {
        gap: 9px;
        margin: 15px 0;
    }

    .container {
        max-width: 1140px;
    }

    .chart-result-info {
        font-size: 16px;
    }

    .step-item {
        margin-bottom: 15px;
        width: 24%;
        padding: 0;
    }

    .results-num {
        font-size: 23px;
    }

    .game-type-icon img {
        width: 40px;
    }

    .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: 23px 22px;
    }

    .open-time h6,
    .close-time h6 {
        font-size: 15px;
    }

    .inner-chart-info a img {
        width: 48px;
    }

    .manu-card-bg {
        min-height: 255px;
        padding: 29px 48px;
    }

    .about-section {
        padding: 70px 0;
    }

    .top-games-result .game-results-box {
        padding: 12px 26px;
    }

}

@media (max-width: 1250px) {
    .container  {
        max-width: 1000px;
    }
    #sidebar {
        left: -300px;
    }
    .dice-wrap{
        left: 38px;
        top: 94px;
    }

    .user-img img {
        width: 188px;
    }

    .about-image::after {
        display: none;
    }

    .hero-img-inner img {
        max-width: 408px;
    }

    .nav-header-inner {
        padding: 10px 12px;
    }

.about-content .sec-title p {
    font-size: 16px;
}
.about-content .sec-title h2 {
    font-size: 24px;
}
.about-text {
    font-size: 14px;
}
.about-footer img {
    width: 40px;
}
.about-footer span,
.about-footer bdi {
    font-size: 13px;
}
    .game-results-info {
        padding: 42px 0;
    }

    .mobile-preview img {
        width: 100%;
    }

    .our-project-card {
        width: 31.7%;
    }
.game-results-body .results-times {
    font-size: 12px;
}
.results-times i {
        font-size: 18px;
}
    .steps {
        width: 48%;
    }

    .step-card {
        width: 100%;
        height: 290px;
    }

    .inner-chart-info {
        gap: 13px;
            grid-template-columns: 1fr 1fr 1fr;
    }

    .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 {
        margin-bottom: 40px;

    }

    .sec-title h1,
    .sec-title h2 {
        font-size: 24px;
    }

    .card-info.card-inner-info h2 {
        font-size: 18px;
    }

    .card-info.card-inner-info p {
        font-size: 16px;
    }

    .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;
    }

    .download-btn {
        font-size: 16px;
    }

    .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: 45px !important;
        line-height: 44px;
    }

    .header-menu ul li a {
        font-size: 13px;
    }
    .about-footer ul li{
            width: 47%;
    }
        .cards-wrap {
        right: 44px;
    }

    .primary-btn,
    .hdr-btn .whatsapp-info {
        font-size: 15px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .security,
    .social {
        justify-content: center;
    }
 .inner-chart-info a span {
        padding: 30px 16px;
    }
    .sec-title {

        gap: 10px;
    }

    .game-list-grid {
        gap: 8px;
        margin-top: 84px;
    }

    .game-list li {
        margin: 0px 0;
    }

    .steps-grid {
        flex-direction: row;
        align-items: center;
    }

    .step-item {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }

    .step-item:last-child .step-connector {
        display: none;
    }
}

@media (max-width: 1160px) {
    .swiper-card {
        margin:0 20px;
    }
    .cards-wrap {
        right: 10px;
    }
        .dice-wrap {
        left: 10px;
        }
            .dice-wrap, .cards-wrap {
        width: 187px;
    }
    .content {
        margin-top: 90px;
    }
    .play-wrap img {
        width: 432px !important;
    }
    .about-image{
        display: none;
    }
 
}
@media (max-width: 1100px) {
    .nav-header-brand img {
        width: 70px;
    }

    .nav-header-inner {
        padding: 8px 16px;
        min-height: 93px;
    }

    .card-list-box {
        width: 48.33%;
    }

    .card-info h3 {
        font-size: 18px;
    }
    .faq-content {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .step-card:nth-child(n) {
        margin-bottom: 0
    }
    .step-card {
        width: 50%;
    }
    .step-track {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .dice-wrap, .cards-wrap {
        display: none;
    }
    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
    }

    .page-section {
        padding: 48px 0px;
    }
    .swiper-slide img {
            max-width: 220px;
    }
    .news-featured-items-sec {
        margin-top: 20px;
    }
    .hero-text h1 img {
        width: 263px;
    }
    .live-result-body {
        grid-template-columns: 1fr;
    }
    .live-result-img {
        display: none;
    }

    .top-games-result .game-results-body {
        flex-direction: column;
    }

    .game-results-body.results-flex div {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .choose-us-img {
        display: none;
    }

    .choose-us-content {
        width: 100%;
    }

    section.game-results-info.game-results-bg {
        margin-bottom: 0;
        padding-top: 47px;
    }

    .hero-container {
        max-width: 853px;
        grid-template-columns: 212px 280px 222px;
        gap: 9px;
        justify-content: center;
    }

    .nav-header-inner {
        padding: 4px 0px;
    }

    .inner-chart-info a span {
        padding: 30px 16px;
    }
    .nav-header-inner {
        flex-direction: column;
    }

    .container {
        max-width: 960px;
    }

    .text-box h3 {
        font-size: 34px;
    }

    .top-badge h4 {
        font-size: 16px;
    }

    .manu-card-bg {
        margin-top: 0px;
    }

    .top-badge {
        padding: 9px;
        width: 196px;
        margin-bottom: 15px;
    }

    .feature-card-info img {
        width: 32px;
    }

    .game-rates-box img {
        width: 88px;
    }


    .game-rates-box {
        gap: 8px;
        border-radius: 15px;
        padding: 19px 13px;
    }

    .game-rates-box::before {
        display: none;
    }

    li.mobile-logo img {
        width: 80px;
        margin-left: 2px;
        margin-top:12px;
        margin-bottom: 12px;
        display: flex;
    }

    .header .right-social-media {
        display: none;
    }

    .text-box ol li {
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 36px !important;
        line-height: 44px;
    }

    .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);

    }
    .footer-desc{
        font-size: 16px;
        line-height: 23px;
    }

    .header-menu {
        background: #002f3e;
        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: 14px;
        justify-content: left;
    }

    .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;
        box-shadow: 0px 4px 8px 0px rgb(66 66 66);
        transition: all 0.5s;
        border-radius: 0px;
    }

    .nav-header-inner {
        background-image: none;
    }

    li.menu-item.has-dropdown {
        padding: 0px 0px;
    }

    #mob-menu .closebtn {
        position: absolute;
        top: 24px;
        right: 26px;
        font-weight: 100;
        font-size: 36px;
        z-index: 999;
        margin-left: 51px;
        color: #fff;
    }

    .menu.open #mob-menu {
        width: 250px;
        margin-left: 0px;
        display: block;
        text-align: left;
        left: 0px;
        transition: all 0.5s;
                background: linear-gradient(90deg, #00455B, #226A80);
    }

    .header-menu ul {
        display: block;
        margin: 0;
        padding: 0px 0px;
        width: 100%;
    }
    .header-menu ul.nav-header-links {
        background: none;
        border: none;
    }
.download-section{
    display: block;
    background-image: url('../img/download-bg.png');
    background-size: cover;
    background-position: 100%;
    padding: 10px 0;
}
.card-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 34px;
}
.download-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

}
    div#menu-1 {
        z-index: 99;
        position: relative;
        border: 1px solid #007d87;
        border-radius: 3px;
    }

    .menu.open .overlay-1 {
        display: block;
    }

    .header {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

    .mob-inner-logo img {
        width: 100px;
    }

    .main-header {
        padding: 9px 14px;
        background: #13badb4d;
    }

    .header-menu ul li {
       padding: 8px 14px;
        display: block;
        margin: 10px;
        border: 1px solid #13badb5e;
        margin-bottom: 8px;
        background: #b5f6ff26;
        border-radius: 7px;
    
    }

    .header-menu ul li a {
        flex-direction: row;
        padding: 0px;
    }

    li.mobile-logo {
        border: none !important;
        margin-bottom: 0px !important;
        padding: 0px !important;
    }

    .hdr-btn {
        display: none;
    }

    li.menu-item.has-dropdown a {
        display: flex;
        align-items: center;
        border-radius: 7px;
        padding: 9px 13px !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: 20px;
    }

    .top-games-result .game-results-box {
        height: auto;
        padding: 10px;
    }
    .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: 20px;
    }

    .sec-title {
        margin-top: 12px;
        margin-bottom: 21px;
    }

    .game-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .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;
        background: #005060;
    }
    .dropdown-menu .dropdown-item:first-child{
                margin-top: 5px !important;
    }
    .dropdown-menu .dropdown-item{
         margin: 0;
        margin-bottom: 3px !important;
    }
    li.mobile-logo {
        background: transparent !important;
    }

    .dropdown-menu {
        min-width: 198px;
        top: 119%;
        padding: 6px 9px !important;
        background: #11cfe845  !important;
        left: 0px;
        border: 1px solid #11cfe8b0 !important;
    }

    .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;
    }

    .about-image {
        display: none;
    }

    .about-content {
        background-size: cover;
    }
.faq-image {
    display: none;
}
.faq-wrapper {
    flex-direction: column;
    align-items: baseline;
}
}

@media (max-width: 767px) {
    .play-rates {
        padding: 35px 0px;
    }
    .headline  {
        font-size: 40px;
    }
    .card-title {
        padding: 42px 10px;
    }
.card-info-img {
    display: none;
}
.card-info-content {
    grid-template-columns: 1fr;
}
    .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;
    }
.inner-chart-info { 
    grid-template-columns: 1fr 1fr;
}
    .step-content h3 {
        font-size: 22px;
    }

    .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 {
        width: 100%;
        margin-bottom: 20px;
    }

    .card-info.card-inner-info p b {
        padding: 2px 20px;
        margin: 10px 0;
    }

    .card-info h3 {
        font-size: 20px;
        margin-bottom: 0;
        padding-top: 24px;
        margin-bottom: 10px;
    }

    .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%;
    }
    .download-body {
        gap: 2px;
    }
    .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: left;
    }

    .hero-text h1 {
        font-size: 45px !important;
        line-height: 49px;
    }

    .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: 30px;
    }

    .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;
    }

    .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;
    }
.download-section {
    margin: 40px 0 0;
}
    .about-section {
        padding: 40px 0;
    }

    .game-rates {
        padding: 20px 0;

    }

    .game-results-info {
        padding: 12px 3px;
    }

    .hero-section {
        padding-bottom: 0px;
    }

    table tbody td,
    .tbl-font {
        font-size: 12px;
    }

    .main-section {
        padding-top: 30px;
    }
    ul.game-list li:nth-child(even):after{
        display: none;
    }
    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: 100%;
    }

    .hero-right {
        display: none;
    }

    .manu-card-bg {
        min-height: 243px;
        padding: 80px 8px;
        flex-wrap: wrap;
        gap: 13px;
    }

    .menu-card {
        width: 276px;
    }

    .step-item {
        width: 48%;
    }

    .download-steps-section {
        margin-top: 0px;
    }

    .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: 630px) {
    .sec-title h2 {
        font-size: 20px;
        letter-spacing: normal;
    }

    .card-info.card-inner-info h2 {
        font-size: 16px;
    }

    .card-info.card-inner-info p {
        font-size: 14px;

    }
.card-download {
    padding: 0 20px;
}
.download-body p {
    font-size: 12px;
}
.download-body {
    gap: 4px;
}
}

@media (max-width: 575px) {
    .col-sm-12 {
        width: 100%;
    }
    .headline {
            font-size: 36px;
    }
    .download-app {
        text-align: center;
        margin-top: 26px;
    }
.game-info-section .sec-title {
    padding: 20px 34px;
    margin-top: 0;
    margin-bottom: 0;
}
ul.game-list li h5 {
    margin-top: 0;
    font-size: 12px;
    padding: 4px 10px;
}
ul.game-list li:after{
    height: 60px;
}
    .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;
    }
    .step-content {
        margin-top: 0px;
    }
.inner-chart-info { 
    grid-template-columns: 1fr;
}
.info_card li a, .info_card a span {
    background-image: url(../img/info-shap-media.png);
}
    .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;
    }

    .steps-badge {
        font-size: 12px;
        padding: 9px 20px;
    }

    .steps-badge-line {
        max-width: 60px;
    }

    .step-item {
        width: 100%;
    }

    .steps-grid {
        gap: 0px;
    }

    .step-card {
        width: 100%;
        max-width: 100%;
    }

    .crown-box {
        padding: 9px;
    }

    .footer-middle {
        padding: 16px 0px;
        flex-direction: column-reverse;
    }

    .mob-inner-logo img {
        width: 92px;
    }

    .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: 0px;
        padding: 20px;
    }

    .card-info h3 {
        font-size: 16px;
    }

    .card-info .mb-3 {
        margin-bottom: 0px !important;
    }

    a.small-btn.chart-btn-info {
        margin-top: 17px;
    }

    .panel-body {
        overflow-x: auto;
        padding: 0px;
    }

    .page-section {
        padding: 26px 0px;
    }

    .blog-info-inner {
        padding: 0px;
    }

    .sec-title.chart-title {
        margin-bottom: 5px;
    }

    .mobile-num::after {
        display: none;
    }

    .card-title {
        padding: 13px 10px;
    }

    .card-title {
        margin-top: 14px;
    }

    .footer-middle {
        gap: 0px;
    }

    .mobile-num {
        font-size: 19px;
        padding: 3px 0px;
        margin-right: 0px;
    }

    .results-times i {
        font-size: 15px;
        line-height: normal;
    }

    .timing-card-name {
        flex: 1;
        font-size: 13px;
    }
    .timing-table thead th ,
    .timing-table tbody td {
        padding: 8px !important;
        line-height: normal;
    }
.sec-tle-flex {
    margin-bottom: 18px;
}
.game-result-body img {
    width: 50px;
}
.timing-table .open-time, .timing-table .close-time {
    font-size: 12px; 
}

    .cta-text {
        font-size: 14px;
    }

    .cta-banner {
        width: 100%;
        gap: 11px;
        margin-top: 7px;
    }

    .game-results-box.game-result-card {
        margin-bottom: 4px;
        padding-top: 8px;
    }

    .choose-us-content {
        width: 100%;
    }

    .choose-us-img {
        display: none;
    }

    .game-results-bottom {
        font-size: 11px;
    }

    .about-content {
        padding: 25px 0;
    }

    .about-content .sec-title h2 {
        font-size: 18px;
        text-align: left;
    }
    .about-content .sec-title p {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .sec-title img {
        width: 150px;
    }
    .live-result-card {
        padding: 12px 24px;
    }
    .top-games-result .game-results-body {
        padding: 12px 0;
    }
    .faq-wrapper .about-text {
        margin-bottom: 10px;
    }
    .game-results-body .results-times {
        font-size: 14px;
        font-weight: 400;
        margin-top: 8px;
        padding-bottom: 7px;
        margin-bottom: 8px;
        padding-top: 7px;
    }

    .contact {
        padding: 13px 6px;
    }

    .whatsapp-info {
        padding: 3px 0px;
        font-size: 19px;
    }

    .game-rates-box img {
        width: 75px;
                margin-bottom: 0;
    }

    .chart-result-info span {
        font-size: 21px;
        font-weight: 500;
    }

    thead th {
        font-size: 13px;
    }

    .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: 20px;
        padding-bottom: 20px;
    }

    .main-section .chart-table-data table th {
        font-size: 15px;
    }

    .hero-section {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .tbl-td {
        padding: 7px !important;
    }

    .main-section .sec-title.mb-4 {
        margin-bottom: 10px !important;
    }
    .sec-title h1, .sec-title h2 {
        font-size: 18px;
    }
    .sub-title br{
display: none;
    }
.timing-table {
    margin-top: 0;
}
    .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;
        margin-bottom: 10px;
    }
.game-results-body a {
    font-size: 16px;
    margin-top: 10px;
}
.game-results-body a i.me-3 {
    margin-right: 10px !important;
}
    .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-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: 20px;
        padding-bottom: 0px;
    }

    .how-to-play.p-60 {
        margin: 20px 0px;
    }
    .swiper-card {
        padding: 22px 20px;
    }
    .download-btn-info  {
        margin-top: 20px;
    }
    section.game-results-info.game-results-bg {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .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: 18px;
    }

    .about-image {
        display: none;
    }

    .inner-chart-info {
        gap: 9px;
    }

    .chart-details {
        padding: 10px 0px;
        padding-bottom: 20px;
    }

    .hero-image img {
        width: 205px;
    }

    ul.game-list li {
        font-size: 14px;
        padding: 12px 10px;
    }

    .game-info-section .sec-title h2 {
        font-size: 14px;
    }

    .game-info-section .sec-title {
        gap: 4px;
    }
.game-list-grid {
    margin-top: 0;
}
    .hero-text h1 img {
        margin-bottom: 0;

    }
.sec-tle-flex{
    display: block;
    text-align: center;
}
.sec-tle-flex .small-btn {
    margin-top: 14px;
}
    .small-btn.chart-btn {
        padding: 11px 19px;
        /* display: table; */
        font-size: 14px;
    }

    .mobile-preview {
        display: none;
    }

    .mobile-preview img {
        width: 100%;
    }

    .inner-chart-info a {
        width: 100%;
    }

    .game-rates-info .row {
        row-gap: 10px;
    }
.game-rates-info  .col-sm-4 {
    width: 50%;
}
    .about-section::before,
    .about-section::after {
        opacity: 0.2;
    }

    .about-text {
            font-size: 13px;
        line-height: 16px;
    }
.card-download .download-btn {     
    padding: 6px 10px;
    font-size: 16px;
}
    .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: 20px 0;
        padding-top: 0px;
    }
.step-wrap {
    padding: 20px 0;
}
.faq-content {
    font-size: 14px;
}
.step-card {
    height: auto;
}
.step-track {
    gap: 14px;
}
.step-card h3,
.step-card hr{
    margin-bottom: 10px;
    font-size: 16px;
}
.faq-section {
    padding: 20px 0;
}
.step-card p {
    padding: 0 20px;
}
.step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
    ul.game-list li img {
       width: 70px;
        height: 55px;
        object-fit: contain;
    }

    .game-results-body {
        padding: 11px 15px;
    }

    .game-results-body .results-num {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .hero-text-sec {
        height: 48%;
    }

    .game-rates,
    .game-results-info,
    .faqs-info {
        padding: 20px 0px;
    }

    .game-card {
        padding: 36px 0px;
        margin-bottom: 1px;
    }
.about-footer ul li {
    width: 100%;
}
    .inner-chart-info a span {
                font-size: 16px;
        padding: 24px;
    }

    .all-chart-data {
        padding: 11px 15px;
    }

    .main-section .container {
        padding-left: 3px;
        padding-right: 3px;
    }

    .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;
    }

    .top-badge h4 {
        font-size: 14px;
    }

    .hero-text h1 {
        margin-bottom: 9px;
        font-size: 30px !important;
        line-height: 34px;
    }

    .top-badge {
        width: 132px;
        margin-bottom: 7px;
    }

    .header {
        padding: 0px 13px;
    }

    .modal-title {
        margin-bottom: 0;
        font-size: 17px;
    }

    .game-rates-box p {
        font-size: 14px;
        font-weight: 500;
        margin-top: 0;
    }
    .game-rates-box p span {
        font-size: 12px;
        margin-top: 4px;
        padding-top: 4px;
    }

    .sec-title h2 {
        position: relative;
        font-size: 18px;
    }

    .mobile-num {
        width: auto;
        height: 40px;
    }

    .mobile-num-img,
    .whatsapp-num-img {
        width: 24px;
        height: 24px;
        font-size: 7px;
    }

    .mobile-num-img img,
    .whatsapp-num-img img {
        font-size: 14px;
        width: 15px;
    }

    .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;
    }

    .about-content .sec-title {
        margin-top: 9px;
        margin-bottom: 8px;
    }

    .menu-card {
        width: 100%;
    }

    .hiro-btns {
            gap: 4px;
        flex-direction: row;
    }

    .manu-card-bg {
        min-height: 243px;
        padding: 23px 0px;
    }

    .manu-card-bg {
        background-image: none;
    }

    .hero-text h1 {
        margin-bottom: 9px;
        font-size: 30px !important;
        line-height: 34px;
        margin-top: 10px;
    }

    .hero-text p {
        max-width: 472px;
        font-size: 13px;
        margin: 4px 0;
    }


    .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: 16px;
    }

    .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;
    }

    .blog-share p {
        display: block;
        width: 100%;
    }

    .blog-share {
        flex-wrap: wrap;
        margin: 10px 0 15px;
    }

    .news-featured-items-sec {
        padding: 11px;
    }

    .sec-title {
        align-items: center;
    }

    .chart-results-box {
        padding: 19px 18px;
    }

    .page-section .mb-5 {
        margin-bottom: 10px !important;
    }

        .content {
        margin-top: 46px;
    }
    .download-section {
        margin: 13px 0 0;
    }
    .subline {
        font-size: 12px;
        margin: 0 0px;
    }
    .headline {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .subline br {
        display: none;
    }
    .download-body img {
        display: none;
    }
    .card-download {
        padding: 20px 0;
    }
    .play-wrap img {
        width: 251px !important;
    }
    .primary-btn{
            gap: 3px;
                padding: 7px 10px;
    }
    .hiro-btns a:first-child{
        font-size: 14px;
        padding: 4px 9px;
        gap: 5px;
    }
    .whatsapp-num-img{
            border: 1px solid #fff;
    }
}


@media (max-width: 445px) {
    .card-download {
        flex-wrap: wrap;
                justify-content: center;
    }
        .game-rates-info .col-sm-4 {
        width: 50%;
    }
}
