@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

 /*   font-family: "Playfair Display", serif; */
   /* font-family: "Figtree", sans-serif; */

 /* #C4C4C4 */
 
:root {
    --gradient: linear-gradient(90deg, rgb(135 184 151) 0%, rgb(0 163 112) 50%, rgb(0 165 104 / 80%) 100%);;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
    font-family: "Playfair Display", serif;
    background-color: #E7E5D7;
    color: #333333;
    width: 100%;
    position: relative;
}
body::before {
      content: "";
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: url(../img/theme-bg.png) center / cover no-repeat;
    z-index: -1;
    opacity: 0.8;
}

html {
    scroll-behavior: smooth;
}

a,
.btn {
    transition: all 0.3s ease-in-out;
}
li{
    list-style: none;
}

a:hover {
    text-decoration: none;
}

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;
}

.header {
     padding: 15px 16px;
    position: relative;
    z-index: 999;
    background: #ffffffd6;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 0px 0 6px;
    border-left: 36px solid #0f704d;
    border-right: 36px solid #0f704d;
    border-radius: 0px 0px 80px 80px;
    box-shadow: rgb(0 0 0 / 10%) 0px 25px 20px -20px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.mobile-num-img img {
    filter: invert(1);
    width: 20px;
}

.whatsapp-num-img img {
    filter: invert(1);
    width: 22px;
}

.header .row {
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    padding-bottom: 0px;
}
.main-section {
    margin-top: 110px;
    margin-bottom: 80px;
}
.header-menu ul li a {
    font-size: 20px;
    color: #032918;
    text-transform: uppercase;
    font-weight: 500;
}

.header-menu ul li:hover a {
    color: #77A570;
}
.header-content .logo {
    position: absolute;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 50px;
    top: 0px;
    border-radius: 0 0 88px 88px;
    border-bottom: 3px solid #022919;
    box-shadow: rgb(0 0 0 / 18%) 0px 25px 20px -20px;
}
.small-btn-bg {
    border: 2px solid #000 !important;
    color: #000 !important;
}

.small-btn-bg {
    border: 2px solid #000;
    color: #000;
}

.small-btn-bg img {
    filter: invert(1);
}

.small-btn-bg:hover img {
    filter: invert(1) !important;
}

.small-btn {
    font-size: 19px;
    display: inline-flex;
    padding: 11px 21px;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    align-items: center;
    gap: 6px;
    position: relative;
    background-image: var(--gradient);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.small-btn::before,
.small-btn::after {
    content: "";
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    background: #fff;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 2;
    width: 37px;
    height: 199px;
}

.small-btn::before {
    left: -60%;
}

.small-btn::after {
    left: -100%;
}

.small-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.small-btn:hover::before {
    left: 120%;
    opacity: 0.3;
}

.small-btn:hover::after {
    left: 200%;
    opacity: 0.6;
}

.small-btn img {
    width: 22px;
    margin-right: 5px;
    filter: invert(1);
}
.download-btn {
   position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 24px 10px;
    color: #fff;
    background: #04714f;
    border: 2px solid #f1b979;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 45px;
    animation: buttonGlow 2.5s ease-in-out infinite;
    box-shadow: rgb(0 0 0 / 57%) 3px 3px 6px 0px inset, rgb(1 8 2) -3px -3px 6px 1px inset;
    box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
}
/* @keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(255,255,255,.6);
    }
} */
.download-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.download-btn:hover {
    border-color: #666d74;
     background-image: var(--gradient);
     color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.download-btn:hover::before {
    opacity: 1;
}
.scroll-down-icon {
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}
.about-section {
    padding: 80px 0;
}
.top-title {
    margin-bottom: 30px;
}
.top-title i {
    position: absolute;
    width: 34px;
    top: 0;
    bottom:0;
    left: -14px;
    border-radius: 40px;
    border: 2px solid #edbd72;
    background: #04714f;
    color: #fff;
    box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-title h5 {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #edbd72;
    background: #04714f;
    border-radius: 20px;
    padding: 6px 16px 6px 26px;
    width: max-content;
    box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
}
.top-title p{
    font-size: 20px;
      color: #00291a;
      margin: auto;
    font-family: "Figtree", sans-serif;
    margin-top: 10px;
}
.hero-text h1 {
    margin-top: 21px;
    margin-bottom: 20px;
    color: #114f32;
    font-size: 26px;
    font-family: "Figtree", sans-serif;
    line-height: 37px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.hero-text h1 b {
    line-height: 90px;
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(180deg, #f4f4f4 0%, #154f31 45%, #0a432a 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Playfair Display", serif;
    color: #04714f;
    -webkit-text-stroke: 1px #a15b00;
}
.hero-text h1 > b:last-of-type {
       background: linear-gradient(180deg, #a87643 0%, #ca8d46 45%, #0a432a 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;  
}
.hero-text p {
    color: #000000;
    font-size: 16px;
    width: 80%;
    font-family: "Figtree", sans-serif;
}
.hero-text .small-btn:hover {
    text-decoration: none;
    color: #000;
}
.top-title h3 {
    font-size: 50px;
    font-weight: 700;
    color: #a46622;
}
.top-title h3 b {
    background: linear-gradient(180deg, #f4f4f4 0%, #154f31 45%, #166945 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Playfair Display", serif;
    color: #04714f;
}
.top-title p{
    font-size: 16px;
    letter-spacing: 1px;
    font-family: "Figtree", sans-serif;
    font-weight: 500;
}
.about-card ul {
    display: grid;
    align-items: center;
    border: 1px solid #315a45;
    border-radius: 30px;
    margin-top: 20px;
    padding: 12px 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
}
.about-card ul li{
    border-right: 1px solid #b6c8ba;
    margin-right: 6%;
    font-size: 18px;
    font-weight: 700;
    color: #305b46;
}
.about-card ul li i {
    margin-right: 8px
}
.about-card ul li:last-child{
    border-right: none;
    margin-right: 0%;
}
.card-right img {
    width: 80%;
}
.hero-right-img img{
   max-width: 450px;
}
.hero-section::after {
  content: "";
    position: absolute;
    background: url(../img/right-bg.png);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1065px;
    height: 100%;
    right: 0;
    top: -2%;
    z-index: -1;
    opacity: 0.5;
}
.faqs-info {
    background-position: center;
    background-size: cover;
    padding-top: 80px;
}

.chart-btn:hover {
    color: #000;
    transform: translate(0, -5px);
}
.sec-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 69px;
    position: relative;
    text-align: center;
}
.sec-title::before {
      content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../img/title-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: 0;
}

.sec-title h2 {
      position: relative;
    z-index: 1;
    font-size: 34px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 12px 20px;
}

.whatsapp-info:hover {
    color: #fff;
}

.hero-text .small-btn:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
        -4px -4px 6px 0 rgba(116, 125, 136, .2),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

.game-results-info {
    background-position: center;
    background-size: cover;
}
.game-results-info .table-responsive {
    padding: 0;
}

.game-results-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fffdf8;
    border: 1px solid #e8c98f;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(102, 75, 30, 0.08);
    margin-bottom: 0;
}

.game-results-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.game-results-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.game-results-table thead th:last-child {
    border-right: 0;
    border-radius: 0 12px 0 0;
}

.game-results-table tbody td {
    border-right: 1px solid #f0e4cd;
    border-bottom: 1px solid #eee3d0;
}

.game-results-table tbody td:last-child {
    border-right: 0;
}

.game-results-table tbody tr:last-child td {
    border-bottom: 0;
}

.game-results-table tbody tr:hover td {
    background: #fffaf0;
}

.game-results-table .game-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding-left: 5px;
    font-weight: 600;
}

.game-results-table .game-name i {
    color: #c99a42;
    cursor: pointer;
    font-size: 12px;
}

.game-results-table .text-green,
.game-results-table .text-red {
    padding: 2px 9px;
    border-radius: 6px;
}

.game-results-table .text-green {
    color: #237c59;
    background: #fff8e978  !important;
    border: 1px solid #ead8b5;
}

.game-results-table .text-green::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #15945d;
}
.tbl-td.text-red {
    border-radius: 0 !important;
}
.game-results-table .text-red {
    color: #c94d42;
    background: #dd000008;
    border: 1px solid #efd0cc;
}

.game-results-table .text-red::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d94d42;
}

.game-results-table .chart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

.game-results-table .jodi-btn {
 background: no-repeat;
    border: 1px solid #069561;
    color: #069561 !important;
}

.game-results-table .jodi-btn:hover {
    background: #f0f8f4;
}
.game-results-table .pana-btn {
    color: #fff !important;
    background: #007353;
    border: 1px solid #0b6748;
}

.game-results-table .pana-btn:hover {
    background: #083f2f;
}
.game-results-info .game-results-table {
    margin: 0;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    padding: 8px;
}
.contact {
    display: flex;
    text-align: center;
    margin: auto;
    column-gap: 17px;
    margin-top: 0px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    justify-content: left;
}

.mobile-num {
    display: flex;
    color: #fff;
    height: 52px;
    font-size: 18px;
    font-weight: 500;
    padding: 4px 12px 5px 8px;
    background-color: #2978d8;
    border: 1px solid #2978d894;
    border-radius: 30px;
    align-items: center;
    border: 2px solid #fff;
    box-shadow: rgb(0 0 0 / 57%) 3px 3px 6px 0px inset, rgb(33 166 255) -3px -3px 6px 1px inset;
    transition: all 0.5s ease;
   font-family: "Figtree", sans-serif; 
}
.mobile-num:hover {
    color: #fff;
    box-shadow: rgb(33 166 255) -3px -3px 6px 1px inset, rgb(0 0 0 / 57%) 3px 3px 6px 0px inset;
}
.mobile-num-img {
      position: relative;
    color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: #ffffff3b;
    
}

.whatsapp-info {
       display: flex;
       color: #fff;
       height: 52px;
       font-size: 18px;
       font-weight: 500;
       padding: 4px 12px 5px 8px;
       background-color: #25d366;
       border: 1px solid #25d36675;
       border-radius: 30px;
       align-items: center;
        border: 2px solid #fff;
       box-shadow: rgb(0 255 175 / 78%) 3px 3px 6px 0px inset, rgb(4 113 79) -3px -3px 6px 1px inset;
       font-family: "Figtree", sans-serif; 
       transition: all 0.5s ease;
}
.whatsapp-info:hover {
    color: #fff;
    box-shadow: rgb(4 113 79) -3px -3px 6px 1px inset, rgb(0 255 175 / 78%) 3px 3px 6px 0px inset;
}
.whatsapp-num-img {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 20px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: #ffffff36;
}

.contact span {
    color: #ffc842;
    font-weight: 600;
    margin-right: 15px;
}

.section-title {
    text-align: center;
}

.header-menu ul {
    display: flex;
    align-items: center;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 10px;
}
.header-menu ul li.head-home {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 2px solid  #ffffff70;;
}

.hero-img-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}
.hero-img-inner img {
    max-width:473px;
    position: relative;
    z-index: 2;
}
.logo img {
    width: 140px;
}
.hero-text{
    text-align: left;
}
.hero-text-sec .row {
    align-items: center;
    width: 100%;
    justify-content:center;
}
.hero-text-sec {
    padding: 180px 0 80px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
}

a.burger,
a.closebtn {
    display: none;
}
.hero-section {
    position: relative;
    z-index: 1;
}
.game-rates ,.game-results-info,.choose-us-section{
    padding: 80px  0 80px;
}
.game-rates {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.top-shape {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-rates-box p {
    font-size: 18px;
    color: #ADADAD;
    background: linear-gradient(180deg, #a87643 0%, #ca8d46 45%, #4a0303 100%);
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    background-clip: text;
}
.game-rates-box p b{
    font-size: 24px;
    color: #fff;
    background: linear-gradient(180deg, #f4f4f4 0%, #154f31 45%, #0a432a 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Playfair Display", serif;
    color: #04714f;
}
.game-rates-box {
    background: url('../img/sec-theme.png');
    background-size: cover;
    width: 100%;
    background-position: center;
   padding: 34px 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    z-index: 1;
    color: #fff;
    gap: 12px;
    flex-wrap: wrap;
        border-radius: 35px;

}
.choose-us-main {
    display: grid;
    /* grid-template-columns: 1fr; */
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.card-content h3 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}
.card-content p {
    color: #adadad;
    width: 84%;
    font-size: 16px;
}
.card-content h3 small{
    font-size: 22px;
}
.choose-us-section {
     background: url('../img/choose-bg.png');
    background-size: 100%;
     background-position: center;
     background-repeat: no-repeat;
     width: 100%;
     background-size: cover;
    background-position: 100%;
}
.game-rates-box:hover {
    box-shadow: 0 0 15px rgb(255 255 255 / 15%);
    transform: scale(1.02);
}
.game-rates-info {
    margin-top: 40px;
}
.game-rates-info .row {
    row-gap: 19px;
        position: relative;
    z-index: 111;
}
.game-results .row {
    row-gap: 20px;
}
.game-results-box {
    padding: 12px 20px;
    text-align: left;
    background: #dbdbdb17;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.game-results-box:hover {
    box-shadow: 0 0 15px rgb(255 255 255 / 15%);
    transform: scale(1.02);
}

.game-results-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    width: 100%;
    top: 0;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
}

.game-results-head i {
    color: #ffd7d7;
    cursor: pointer;
    font-size: 18px;
}

.game-results-head span {
    font-size: 12px;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
}

.text-red {
     background: #d7000e19;
        color: #ff2737;
    border: 1px solid #d7001073;
}

.text-green {
  background: #0066172e !important;
    color: #00d12f;
    border: 1px solid #0066175e;
}

.game-results-body {
    text-align: center;
    padding-top: 0px;
    color: #eee;
}

.results-name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-num {
   font-size: 24px;
    font-weight: 500;
}

.small-btn.chart-btn {
    padding: 6px 13px;
    font-size: 13px;
    border-radius: 4px;
}

.game-results-bottom {
   display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 15px;
    background: #ebebeb21;
    border-radius: 5px;
}

.accordion-item {
    margin-bottom: 10px;
    border: none;
    background-color: #ffffff00;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background: #198754;
    box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
}

.accordion-button {
    font-size: 17px;
    font-weight: 500;
    padding: 20px 25px;
    background: #ffffff;
    color: #093921;
}
.img-divider img{
    width: 100%;
        max-width: 300px;
}
.accordion-body {
    font-size: 18px;
    padding: 19px 25px;
    background: #ffffffa3;
    color: #02120b;
    font-weight: 200;
    backdrop-filter: blur(10px);
}
.accordion-button::after {
    opacity: 0.6;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1510%) hue-rotate(179deg) brightness(116%) contrast(100%);
}
.accordion-button:not(.collapsed)::after {
    opacity:1;

}
.copy-right {
    text-align: center;
    padding: 80px 0px 40px;
    background: linear-gradient(160deg, #0000003b, #1a1a1a);
    color: #fff;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
    z-index: 1;
    background: url('../img/footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.modal {
    background: #000000a3;
}
.footer-middle-sec {
    position: relative;
    margin: 10px 0;
    padding: 40px 20px;
}
.footer-border {
    border-right: 1px solid #ffffff70;
}
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.copy-right-text {
    font-size: 16px;
    color: #ffffff94 !important;
}
.copy-right-text span {
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 1px;
}
.copy-right-text  b {
    color: #ffbd31;
}
.copy-right-text bdi b{
    color: #ffbd31;
    padding: 10px 8px;
    border: 1px solid;
    border-radius: 33px;
}
.copy-right-img {
    background-color: #fff;
    width: max-content;
    margin: auto;
    border-radius: 6px;
    padding: 12px 20px;
    margin-top: 80px;
}
.copy-right-img  img {
    width: 160px;
}
.copy-right-img p {
    font-size: 15px;
    margin-top: 12px;
    color: #fff !important;
}

.mobile-logo {
    display: none !important;
}
/* ========jodi chart========== */
.panel-heading h3 {
    font-size: 19px;
    color: #fff;
    text-shadow: 0px 0px;
    margin: 0px;
    padding: 12px;
}

.panel-heading {
    background-color: #3f51b5;
}
.time-chart-info table {
    min-width: 0;
}

.main-sec {
    padding-top:70px;
    width: 100%;
    margin-top: -162px;
}
.hero-left-content{
    display: flex;
    gap: 50px;
    align-items:flex-start;
}
.chart-title {
    text-align: center;
}
.title-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.chart-title h2 {
    display: inline-block;
    margin: 0;
    padding: 0 20px;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    z-index: 1;
    background: linear-gradient(180deg, #f4f4f4 0%, #154f31 45%, #0a432a 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.chart-title p {
    margin-top: 16px;
    color: #000000;
    font-family: "Figtree", sans-serif;
}

.chart-table-data {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background-color: #000;
    overflow-x: auto;
}

table,
th,
td {
    border: 1px solid #ffffffd2;
}
thead {
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border: none;
    background: #04714f;
    box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
}
thead th {
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #f5f4f4;
}
table tbody td {
    font-size: 15px;
    text-align: center;
    background-color: #111;
    color: #022919;
    padding: 10px;
    font-family:"Figtree", sans-serif; ;
}
table tbody tr:nth-child(odd) td {
    background-color: #f0fffb00;
}
table tbody tr:nth-child(even) td {
    background-color: #00725117;
}
.time-chart-info table tbody tr:nth-child(odd)td {
    background-color: #1a1a1a;
}
tr {
    line-height: normal;
}
.table>:not(caption)>*>* {
    vertical-align: middle;
}
table {
    min-width: 1000px;
    margin-top: 20px;
}
/* table-end */

.scroll-info {
    margin-top: 50px;
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 12px;
}

.small-btn.scroll-btn {
    border: 1px solid #000000a8;
    font-weight: 500;
    font-size: 15px;
    justify-content: center;
    display: flex;
    width: 182px;
    padding: 10px 14px;
        box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
    background: #04714f;
    border: 2px solid #f1b979;
    color: #fff !important;
}

/* =======panel chart===== */
.tbl-font {
    font-size: 14px;
    display: block;
    width: 100%;
}

.tbl-td {
    padding: 4px !important;
    vertical-align: middle !important;
    line-height: 1.65;
}

.modal-header {
    padding: 8px 15px;
    border-radius: 6px 6px 0px 0px;
    background: #f0fffb00;
    border-bottom: 1px solid #0f5132;
}

.modal-title {
    color: #0f5132;
}

.modal-content {
    border: 2px solid #222;
    border-radius: 10px;
}
.modal-body {
    background: #0072511f;
    border-radius: 0px 0px 7px 7px;
    padding: 0px 16px 16px;
}
/* =====all chart======== */
.all-chart-data {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    cursor: pointer;
    padding: 14px 12px 14px;
    color: #fff;
    background: #04714f;
    border: 2px solid #f1b979;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    /* height: 45px; */
    animation: buttonGlow 2.5s ease-in-out infinite;
    box-shadow: rgb(0 0 0 / 57%) 3px 3px 6px 0px inset, rgb(1 8 2) -3px -3px 6px 1px inset;
    box-shadow: rgb(66 199 157) 3px 3px 6px 0px inset, rgb(3 24 6) -3px -3px 6px 1px inset;
}
.all-chart-data:hover {
    transform: scale(1.02);
}
.all-chart-data:hover h3{
    color: #f1b979;
}
.all-card-box a{
    display: flex;
    align-items: center;
    justify-content: space-between;width: 100%;
}
.all-card-box h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}
.all-card-box {
    position: relative;
    z-index: 11;
    width: 100%;
}
.fa-chevron-right {
    color: #fff;
}

.chart-title.all-chart-title {
    margin-bottom: 48px;
    margin-top: 88px;
}

.all-chart-info {
    width: 100%;
    padding-top: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 11px;
    margin: auto;
}

/*privacy policy*/

.privacy-info {
    padding: 20px;
    margin-bottom: 60px !important;
    width: 85%;
    margin: auto;
    box-shadow: 0px 1px 8px 9px #00000014;
    border-radius: 10px;
}

.privacy-title h1 {
    text-align: center;
    font-size: 28px;
    color: #dbbf73;
    text-shadow: 2px 3px 2px #633215;
    margin-bottom: 21px;
}

.privacy-info a {
    color: #dbbf73;
}

.privacy-info p {
    font-size: 15px;
    margin: 10px 0px;
    color: #d8d5d5;
    font-weight: 400;
}

.privacy-info h2 {
    font-size: 21px;
    margin-top: 22px;
    color: #dbbf73;
}

.privacy-info h3 {
    color: #fff;
    font-size: 18px;
    margin: 10px 0px;
    font-weight: 400;
}

.privacy-info ul li {
    list-style: disc;
    color: #d8d5d5;
}

.privacy-info ul {
    padding-left: 30px;
}
.choose-us-section .top-title {
    margin-bottom: 0;
}
/* ============all-starline-pana============= */

.scroll-info.footer {
    margin-bottom: 59px;
}
.game-results-box h3{
    font-size: 22px;
    color: #ADADAD;
}
@media (max-width:1500px) {
    .container{
        padding: 0px 40px;
    }
    .game-rates-box {
        padding: 30px 0px;
    }
}
@media (max-width:1430px) {
    .game-rates-box {
         border-top: 5px solid #0f5132;
        border-bottom: 5px solid #0f5132;
            padding: 18px 18px;
    }
}
@media (max-width:1400px) {
.header-content .logo {
    padding: 16px 40px;
    border-radius: 0 0 50px 50px;
}
    .sec-title h2::before,
    .sec-title h2::after {
        width: 300px;
    }
    .game-rates-box  img {
        width: 100px;
    }
    .chart-title h2::before, .chart-title h2::after{
        width: 300px;
    }
    .hero-text h1 {
        font-size: 20px;
        line-height: 22px;
    }
    .mobile-num , .whatsapp-info{
        font-size: 16px;
        padding: 8px 12px;
    }
    .mobile-num-img img {
    width: 16px;
}
.mobile-num-img, .whatsapp-num-img {     
    width: 32px;
    height: 32px;
}
.sec-title h2 {
    font-size: 28px;
}
.hero-text .top-title {
    margin-bottom: 0;
}
    .contact{
            margin-top: 36px;
    }
    .container{
        max-width: 1140px;
    }
.hero-text-sec {
    padding: 132px 0 80px;
}
.hero-text h1 b {
    font-size: 50px;
    line-height: 60px;
}
.card-right img{
    width: 100%;
}
.logo img {
    width: 100px;
}
.header-menu ul li a { 
    font-size: 17px;
}
.chart-title h2 {
    font-size: 30px;
}
}

@media (max-width: 1300px) {
    #sidebar {
        left: -300px;
    }
      .whatsapp-info ,.mobile-num{
        height: auto;
        padding: 8px 10px;
    }
    .user-img img {
        width: 188px;
    }
    .hero-img-inner img {
        max-width: 380px;
    }
    .sec-title h2::before,
    .sec-title h2::after {
        width: 200px;
    }
    .chart-title h2::before, .chart-title h2::after{
        width: 200px;
    }
    .hero-left-content{
            gap: 24px;
    }
    .chart-title.all-chart-title {
        margin-top: 50px;
    }
    .logo img {
        width: 100px;
    }
    .hero-text p {
        width: 84%;
    }
}
@media (max-width: 1200px) {
    .hero-text-sec{
        align-items: end;
    }
    .hero-right-img img {
        width: 386px;
    }
    .mobile-num-img {
        margin-right: 4px;
    }
        .contact {
        margin-top: 12px;
    }
        .hero-text-sec {
        padding: 132px 0 68px;
    }
    .about-section ,.game-rates, .game-results-info, .choose-us-section{
    padding: 60px 0;
}
}
@media (max-width: 1100px) {
    .hero-img-inner {
        display: none;
    }
    .game-results-box h3 {
    font-size: 18px;
    }
    .game-results-bottom {
        padding: 10px;
    }
    .results-num {
        font-size: 26px;
    }
    .game-rates{
            padding: 42px 0;
    }
    .sec-title {
        margin-bottom: 36px;
    }
    .hero-right-img img {
    width: 322px;
    }
    .hero-text p  {
            width: 100%;
    }
    .hero-text h5 {
        font-size: 13px;
    }
        .container {
        max-width: 1140px;
        padding: 0px 38px;
    }
    .game-rates-box p b {
    font-size: 20px;
    }
    .chart-title.all-chart-title {
    margin-bottom: 24px;
    }
}
@media (max-width: 991px) {
    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
    }
        .game-rates-box img {
        width: auto;
    }
    .hero-right-img img {
                width: 327px;
    }
        .hero-text p {
        font-size: 14px;
    }
    .container{
        max-width: 960px;
        padding: 0px 30px;
    }
    .header-content .logo {
        padding: 16px 30px;
    }
    .text-box h3 {
        font-size: 34px;
    }
    .sec-title h2::before,
    .sec-title h2::after {
        display: none;
    }
    .copy-right-img img {
        width: 150px;
    }
    .chart-title h2::before, .chart-title h2::after{
        display: none;
    }
    li.mobile-logo img {
                width: 110px;
    }
    .text-box ol li {
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 16px;
        line-height: 24px;
    }
    .hero-text h1 b {
        font-size: 44px;
                line-height: 34px;
    }
    .hero-img-inner img {
        max-width: 300px;
    }
    .mobile-logo {
        display: block !important;
    }
    .slider-testimonial {
        max-width: 100%;
    }
    .header-menu img {
        width: 40px;
    }
    .header-menu {
        background: #ffffffa6;
        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: 104px;
    }
    .header-menu ul li a {
        font-size: 18px;
    }
    .header-menu ul li {
        padding: 0px 11px;
    }
    li.mobile-logo {
        padding-top: 0px !important;
    }
    #mob-menu {
        height: 100%;
        position: fixed;
        z-index: 1;
        top: -30px;
        left: -250px;
        background-color: #fff;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 14px;
        display: block;
        height: 100vh;
        border-right: 1px solid #f1f1f14f;
        box-shadow: 0px 4px 8px 0px rgb(247 247 247 / 35%);
        transition: all 0.5s;
    }

    #mob-menu .closebtn {
               position: absolute;
        top: 18px;
        right: 14px;
        font-size: 36px;
        margin-left: 50px;
        color: #072c1b;
    }
 .header {
        align-items: flex-start;
        align-items: center;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-left: 20px solid #0f704d;
    border-right: 20px solid #0f704d;
        padding: 15px 0px;
    }
    .menu.open #mob-menu {
        width: 250px;
        margin-left: 0px;
        display: block;
        text-align: left;
        left: 0px;
        top: 0;
        transition: all 0.5s;
        background-color: #f2ede3;
    }
.hero-text-sec {
    align-items: center;
}
    .header-menu ul {
        display: block;
        margin: 0;
        padding: 0px 20px;
    }

    div#menu-1 {
        z-index: 99;
        position: relative;
    }

    .menu.open .overlay-1 {
        display: block;
    }

.card-content p {
    width: 100%;
    font-size: 14px;
}
.card-content h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}
    .header-menu ul li {
           padding: 8px 10px;
        display: block;
        margin-bottom: 18px;
        border-radius: 0;
        text-align: center;
        border-bottom: 1px solid #1987544d;
    }
    .header-menu ul li.head-home {
        margin-right: 0;
    } 
   .header-menu ul li.mobile-logo {
        text-align: start;
    }
    .download-btn {
    font-size: 14px;
    }
.header-menu ul li.head-home {
    border-right: none;
}
    .header-menu ul li:last-child,
    .header-menu ul li:first-child {
        border: none;
    }


    a.burger {
        display: block;
        text-align: end;
    }

    a.burger,
    a.closebtn {
        display: block;
    }

    .overlay-1 {
        display: none;
    }

    .chart-title h2 {
        font-size: 28px;
    }
    .main-section {
        margin-top: 70px;
        margin-bottom: 50px;
    }
    .scroll-info {
    margin-top: 20px;
    }
    .scroll-info.footer {
    margin-bottom: 40px;
}
    .copy-right {
    padding: 1px 0px 40px;
    }
    .overlay-1:after {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #0000005e;
        right: 0;
        left: 0;
        top: 0;
    }
    .top-title h3 {
        font-size: 36px;
    }
    .about-card ul {
            padding: 13px 8px;
    }
    .about-card ul li { 
            font-size: 14px;
    }
    .chart-btn {
        padding: 7px 8px;
    }

    .game-results-bottom {
        display: flex;
        padding: 6px;
    }

    .game-results-body .results-name {
        font-size: 21px;
    }

    .game-results-body .results-num {
        font-size: 25px;
    }

    table{
            min-width: 0;
    margin-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
    }
    .panel-body{
       padding:  0px 12px;
    }
    .all-card-box h3 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .main-section  {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .download-btn {
            padding: 7px 14px 7px;
    }
    thead th {
        font-size: 16px;
    }
    .header {
                padding: 12px 0px;
                        border-left: 12px solid #0f704d;
        border-right: 12px solid #0f704d;
    }
        .header-content .logo {
        padding: 16px 22px;
    }
        .logo img {
        width: 94px;
    }
    .play-rates {
        padding: 35px 0px;
    }
    .game-rates-box p {
        font-size: 14px;
    }
    .game-rates-box p b {
    font-size: 18px;
    }
    .choose-us-main {
        grid-template-columns: 1fr;
    }
    .card-right {
        display: none;
    }
    .hero-text-sec{
        flex-direction: column-reverse;
        row-gap: 30px;
        height: 71%;
        align-items: center;
    }
    .about-section .col-6 {
            flex: 0 0 auto;
    width: 100%;
    }
    .about-section ,.game-rates, .game-results-info, .choose-us-section{
    padding: 50px 0;
}
.top-title h3 {
    font-size: 34px;
}
.top-title h5 {
    font-size: 12px;
}
.top-title i {
    width: 30px;
    left: -10px;
}
.about-card ul {
        padding: 5px 12px;
}
    .hero-text {
        text-align: center;
        margin-top: 10px;
    }
    .contact{
        justify-content: center;
            margin-top: 27px;
    }
        .card-right {
            display: none;
        }
    img.bg-shape {
        display: none;
    }

    .how-to-play-img img {
        display: none;
    }

    .overlay-1 {
        display: none;
    }
    .hero-text h5 {
        margin: auto;
    }
    .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;
    }

    .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;
        grid-template-columns: 1fr 1fr;
    }

    .hero-img-inner img {
        max-width: 150px;
        margin-bottom: 14px;
    }

    .hero-text-sec .row {
        row-gap: 0;
        flex-direction: column-reverse;
    }

    table tbody td{
            font-size: 14px;
    }
    .tbl-font{
        font-size: 13px;
    }
    .main-section{
        padding-top: 0px;
    }
    .chart-title.all-chart-title {
    margin-bottom: 20px;
           margin-top: 40px;
}
    .hero-text p {
        width: 100%;
        font-size: 14px;
    }
.main-section {
    margin-top: 46px;
}
.all-chart-data{
    width: 100%;
    padding: 14px 10px;
}
        .game-rates-box img {
        width: 100px;
    }
    .players-img img , .footer-logos img {
        height: auto;
        width: 100px;
    }
    .players-img img  {
        width: 88px;

    }
    .footer-middle-sec {
            margin: 10px 0;
    padding: 34px 10px;
    }
    .copy-right-text span {
        font-size: 16px;
    }
    .copy-right-text {
        font-size: 14px;
        padding: 0 16px;
    }
        .download-btn {
                    font-size: 11px;
        }

}

@media (max-width: 575px) {
    .download-app {
        text-align: center;
        margin-top: 26px;
    }
    .download-btn {
        display: none;
    }
    .game-results .row {
    row-gap: 8px;
}

    .chart-title.all-chart-title {
        margin-bottom: 12px;
        margin-top: 43px;
    }
    .main-section{
        margin-top: 0px;
    }
    .copy-right-img img {
        width: 100px;
    }

    .modal-body {
        padding: 7px;
    }
    

    .chart-title h2{
        border-right: none;
        border-left: none;
    }
    .chart-title {
        text-align: center;
        margin-top: 34px;
        padding: 0px 10px;
    }

    .chart-btn {
        padding: 7px 11px;
    }

    .faqs-info h2 {
        text-align: center;
    }
 .main-section{
        padding-top: 10px;
    }
    .hero-section {
        padding-bottom: 90px;
        padding-top: 20px;
    }

    .faqs-info .sec-title h2::after {
        left: 134px;
        bottom: -12px;
    }

    .chart-table-data table tbody td {
        padding: 5px;
    }

    .all-card-box h3 {
        font-size: 12px;
    }

      .copy-right {
        padding-top: 20px;
    }

    .modal-body.time-chart-info tbody td {
        padding: 5px;
    }
    .game-results-box {
        margin-bottom: 9px;
    }

    .play-rates {
        padding-bottom: 0px;
    }

    .game-results-bottom {
        display: flex;
        padding-top: 10px !important;
    }
    .accordion-body {
    font-size: 16px;
    padding: 13px 15px;
    }
    .accordion-button{
        padding: 14px 15px;
    }
.copy-right-text bdi b {
    padding: 6px 5px;
}
    .contact {
            column-gap: 8px;
    }

    .header .row {
        padding: 0px 16px;
        padding-top: 24px;
    }

    .small-btn {
        font-size: 15px;
        padding: 9px 19px;
    }

    .hero-img-inner img {
        max-width: 150px;
        margin-bottom: 14px;
    }

    .small-btn img {
        width: 21px;
    }

    .how-to-play-img img {
        display: none;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .text-box h3 {
        font-size: 22px;
    }

    .p-60 {
        padding: 45px 0px;
    }

    .text-box ol li {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .screenshot-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .how-to-play.p-60 {
        margin: 20px 0px;
    }

    .result-inner-main {
        margin-top: 45px;
    }

    .today-result.p-60 {
        padding: 40px 0px 40px 0px;
    }
    .hero-text-sec .row {
        row-gap: 0;
        flex-direction: column-reverse;
    }

    .game-results-head {
        padding: 9px 12px 16px;
    }

    .game-results-body .results-name {
        font-size: 23px;
    }

    .accordion-button {
        font-size: 15px;
        font-weight: 500;
    }

    .copy-right-img p {
        font-size: 13px;
    }

    .game-results-body {
        padding: 11px 15px;
    }

    .game-results-body .results-num {
        font-size: 24px;
        font-weight: 600;
    }


    .game-rates,
    .game-results-info,
    .faqs-info,.choose-us-section {
        padding: 30px 0px;
    }

    .all-chart-data {
        padding: 11px 15px;
    }
    .chart-table-data table tbody td {
        font-size: 14px;
    }

    tbody td {
        font-size: 19px;
        padding: 1px;
    }

    .chart-table-data table th {
        font-size: 8px;
        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;
        font-size: 13px;
    }
    .panel-body{
        padding: 0;
    }
    .scroll-info {
        margin-top: 28px;
    }
    .small-btn.scroll-btn {
               width: 133px;
        font-size: 13px;
            padding: 8px 7px;
    }

    .modal-header {
        padding: 6px 10px;
    }

    .modal-title {
        margin-bottom: 0;
        font-size: 17px;
    }
    .game-rates-box p {
        font-size: 17px;
        font-weight: 500;
        margin-top: 4px;
    }
    .header{
       padding: 10px 8px;
    }
    .logo img {
        width: 78px;
    }
        .header-content .logo {
            border-radius: 0 0 40px 40px;
            padding: 12px 24px;
            right: 0;
    left: auto;
    transform: translateX(0%);
        }
   
    .sec-title h2 {
       font-size: 20px;
        padding: 4px 12px;
    }
    .mobile-num , .whatsapp-info{
        width: auto;
        height: 40px;
        font-size: 12px;
        padding: 8px 10px;
    }
    .game-rates-box img{
            width: auto;
        }
    .hero-section{
      padding-bottom: 30px;
        padding-top: 20px;
    }
    .mobile-num-img, .whatsapp-num-img {
        width: 28px;
        height: 28px;
        margin-right: 5px;
    }
    .mobile-num-img img, .whatsapp-num-img img {
        width: 14px;
    }
    
    .game-rates-box {
        border-radius: 22px;
        padding: 20px 10px;
        border-left: none;
        border-right: none;
    }
    
    .btn-1 img {
        width: 19px;
        margin-right: 0px;
    }

    .btn-1 {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-text h1 {
                margin-bottom: 2px;
        font-size: 14px;
        margin-top: 12px;
        line-height: 34px;
    }
    .hero-text h1 b{
        font-size: 32px;
    }

    .hero-text h5 {
              font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 4px;
        font-weight: 600;
        line-height: 14px;
    }
    
    .hero-text-sec {
                margin-top: 90px;
        padding: 16px 12px 12px;
    }
    .hero-section::after {
        opacity: 0.2;
    }
    .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;
    }
    .header-menu img {
        width: 35px;
    }
    .text-box ol {
        margin-top: 14px;
        margin-bottom: 18px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 15px 10px;
    }
        .top-title h3 {
        font-size: 26px;
        }
        .about-card ul li {
        font-size: 12px;
    }
}
@media (max-width: 425px) {
    .download-btn {
        gap: 2px;
        padding: 10px 6px;
        font-size: 10px;
        font-weight: 600;
        height: 36px;
        width: 130px;
    }
    
        .game-rates-box {
        border-radius: 22px;
        padding: 20px 10px;
        border-top: none;
        border-bottom: none;
                border-left: 5px solid #0f5132;
        border-right: 5px solid #0f5132;
    }
    .header-menu img {
        width: 30px;
    }
    .header {
        column-gap: 6px;
    }
    .logo img { 
        top: 16px;
    }
        .footer-logos img {
        width: 70px;
    }
        .players-img img {
        width: 54px;
    }
        .copy-right-text span {
        font-size: 12px;
    }
    .copy-right-text {
        font-size: 10px;
    }
        .all-chart-info {
        grid-template-columns: 1fr;
    }
}