:root {
    /* Brand palette */
    --brand-bg: #10106a;
    --brand-accent: #f35927;
    --brand-accent-contrast: #ffffff;

    /* State/utility */
    --success-cta: #51fd01cc;
    --danger: red;

    /* Text */
    --text-strong: #222222;
    --text-muted: #333333;
    --text-muted-2: #666666;

    /* Lines & shadows */
    --border: #cecece;
    --border-light: #cece;
    /* legacy 4-digit hex kept as-is */
    --shadow: #cecece;

    /* Common */
    --white: #ffffff;
}
.green{
    color: var(--success-cta) !important;
}
/* ========== Your CSS (colors replaced with vars) ========== */

body {
    padding: 0;
    margin: 0;
    font-family: "Quicksand", sans-serif;
}

.navbar .navbar-brand img {
    max-width: 200px;
}
.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: end;
}
.nav-item .nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-strong) !important;
    padding: 15px 20px !important;
    transition: all 0.5s;
}
.nav-item .nav-link:hover{
    color: #f35927 !important;
}
.navbar-nav .nav-link.active{
    color: #f35927 !important;
}
.nav-item button {
    border: none;
    background-color: var(--brand-bg);
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--brand-accent);
    font-weight: 700;
}
.navbar-toggler{
    border: none !important;
}
.navbar-toggler:focus{
    box-shadow: none !important;
}
.navbar-toggler img{
    max-width: 30px;
}
.nav-item{
    position: relative;
}
.nav-item:hover .dropdown-menu{
   height: auto;
   overflow: visible;
   display: block;
} 
.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding: 0 !important;
    display: none;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 1px solid #cccccc4f !important;
    box-shadow: 0px 0px 20px 0px #cccccc4f;
}
.dropdown-menu ul{
    padding-left: 0;
}
.dropdown-menu ul li{
    list-style: none;
}
.dropdown-menu ul li a{
   text-decoration: none;
   font-size: 14px;
   font-weight: 600;
   padding: 10px 15px;
   color: #10106a;
   display: block;
   width: 100%;
   
}
.dropdown-menu ul li a:hover{
    color: #f35927;
}



.carousel-inner{
   border-radius: 30px;
}
.carousel-inner .carousel-item {
    max-height: 450px;
}

.carousel-inner .carousel-item img {
    height: 100%;
}
.callnow a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 20px 40px;
    background: var(--brand-bg);
    border-radius: 50px;
}
.callnow a i{
    margin-right: 10px;
}
.btndownload a{
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 20px 40px;
    border-radius: 50px;
    background: #10106a;
    background: linear-gradient(52deg, #10106a 20%, #6879cc 50%, #10106a 80%);
    background-size: 200% 100%;
    animation: 5s infinite gradient1;
}
@keyframes gradient1 {
   0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}
.whats a{
background-color: #00b544;
display: block;
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 20px;
text-align: center;
padding: 20px 40px;
border-radius: 50px;
}
.whats a i{
    margin-right: 10px;
}
.mobile-screen {
    margin-top: 20px;
}
.mobile-screen img {
    width: 100%;
}

.game-namehead h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--brand-accent);
}

.game-box {
    box-shadow: 0px 0px 10px 0px var(--shadow);
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
}

.game-title h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--brand-accent);
}

.game-title p {
    font-size: 14px;
    color: var(--danger);
    font-weight: 600;
}

.game-playbttn button {
    border: none;
    background: transparent;
    max-width: 60px;
}

.game-playbttn button img {
    width: 100%;
}

.join-bttn {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-light);
}

.join-bttn ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}

.join-bttn ul li {
    list-style: none;
}

.join-bttn ul li a {
    display: block;
    text-decoration: none;
    padding: 5px 37px;
    font-size: 15px;
    color: var(--brand-accent);
    border: 1px solid var(--brand-accent);
    border-radius: 20px;
}

.join-bids ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-bids ul li {
    list-style: none;
}

.join-bids ul li span {
    font-size: 15px;
    color: var(--text-muted);
}

.join-bids ul li span small {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted-2);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
    color: var(--text-strong);
}

.rate-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.rate-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 5px;
    border-radius: 3px;
    background: var(--brand-accent);
}

.rate-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--text-strong);
}

.rate-card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text-muted-2);
    font-weight: 500;
}

/* ========== FAQ ========== */

.faq-section h2 {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 10px;
}

.faq-section h2 span {
    color: var(--brand-accent);
}

/* Accordion Styles */

.accordion-button{
    padding-left: 50px !important;
}
.accordion-button::after {
    position: absolute;
    left: 10px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(29, 19, 82, .08));
    background-color: #e4eef9;
    background-position: 50%;
    font-size: 16px !important;
    border-radius: 3px;
    line-height: 35px;
    width: 28px !important;
    height: 28px !important;
 }

/* Footer styling */
.footer {
  background: #F6F6F6 !important;
  color: var(--text-strong);
}

.footer h4 {
  color: var(--brand-accent);
  margin-bottom: 1rem;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li a {
  color: var(--text-strong);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

.footer hr {
  border-color: #222222;
}
.text-whites{
    color: #222222 !important;
}

/* Fixed Center Button */
.btn-download {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  
  background: linear-gradient(52deg, #10106a 20%, #6879cc 50%, #10106a 80%);
  background-size: 200% 100%;
  animation: 5s infinite gradient1;
  color: #f35927;
  width: 40%;
  text-align: center;
  font-weight: 700;
  padding: 20px 100px;
  font-size: 18px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9;
}
.carousel-control-prev, .carousel-control-next {
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5% !important;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    filter: var(--bs-carousel-control-icon-filter);
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}
.about-ussection{
    padding: 50px 0px;
}
.about-uscontent h1{
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.about-uscontent h1::after{
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: #f35927;
    height: 3px;
    width: 10%;
}
.about-uscontent p{
    font-size: 16px;
}
.about-uscontent p i{
    color: #f35927;
    margin-right: 15px;
}
.about-risk{
    text-align: center;
    padding: 10px 0px;
    color: red;
    background: #b500003b;
    font-size: 20px;
    border-radius: 5px;
}

@media (max-width: 992.9px) {
    .navbar-collapse{
        text-align: center;
        justify-content: center;
    }
    .dropdown-menu{
        transform: translateX(0%);
    }

}

@media (max-width: 768.9px) {
     .col-xs-6{
        width: 50% !important;
    }
    .section-title {
        text-align: center;
    }
    .join-bttn ul li a{
        padding: 5px 10px;
    }
    .btn-download {
        width: 98%; 
        text-align: center;
        font-size: 20px;
        padding: 10px 22px;
    }
}

@media (max-width:575px) {
    .mobile {
        width: 50% !important;
    }
    .callnow a,.whats a{
        margin-top: 20px;
        font-size: 12px;
        padding: 10px 20px;
    }
    .mobile-app-screen .col-xl-3:nth-child(2),
    .mobile-app-screen .col-xl-3:nth-child(3){
        display: none;
    }
    .col-xs-6{
        width: 50% !important;
    }
    .downloads ul {
        flex-direction: column;
    }

    .downloads ul li {
        list-style: none;
        width: 100%;
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .btn-download {
        width: 98%; 
        text-align: center;
        font-size: 20px;
        padding: 20px 30px;
    }
}