body {
    font-family: 'Roboto', sans-serif;
}

#sidebarMenu {
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: #19173e;
    transition: left 0.3s ease;
    z-index: 999;
    border-radius: 0 15px 15px 0;
}

#sidebarMenu.show {
    left: 0;
}

.navbar-toggler {
    margin-right: auto;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

.overlay.show {
    display: block;
}

.wallet-container {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    color: #ffab0b;
}

.wallet-container span {
    margin-left: 5px;
}

@media (max-width: 767px) {
    #sidebarMenu {
        width: 200px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .wallet-container {
        font-size: 16px;
    }

    .btn {
        font-size: 12px;
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar {
    background-color: #0A0D28;
}

.navbar-brand {
    color: #fff;
}

.market-card {
    background-color: #3F416A;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
}

.market-card h5 {
    color: #FFD700;
}

.market-status {
    background-color: #FF1C1C;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.contact-btns a {
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-phone {
    background-color: #34B7F1;
}

.contact-btns a:hover {
    opacity: 0.8; /* Slightly fade on hover */
}


button {
    border-radius: 20px;
}

.game-item {
    border: 2px solid #4b5b72;
}

.badge {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
}

.text-light {
    color: #fff;
}

.text-dark {
    color: #000;
}

.bg-secondary {
    background-color: #3b4d67;
}


.footer {
text-align: center;
margin-top: 20px;
}

.footer button {
background-color: #252739;
color: white;
border: none;
padding: 10px 20px;
border-radius: 10px;
margin-bottom: 10px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {

.footer {
margin-bottom: 10px;
}
}

/* Small screen adjustments */
@media (max-width: 576px) {

.footer button {
font-size: 0.9rem;
padding: 8px 15px;
}
}

.star {
    font-size: 1rem;
    color: #a2b4ff;
  }

  h2 {
    color: white;
}


.card {
    background-color: #2f3640; /* Dark card background */
    border: none; /* Remove border */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

.card-img {
    width: 50px; /* Restrict image size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image */
}

.card p {
    color: white;
    margin-top: 10px;
}