:root {
    --sidebar-width: 250px;
    --header-height: 60px;
    --primary-green: #2cda3a;
    --dark-bg: #1a2127;
}

body {
    background-color: #1c272b;
    color: white;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgb(28 39 43);
    z-index: 1000;
}

.navbar {
    height: 100%;
}

    .navbar > .container-fluid {
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        padding: 0 15px;
        height: 100%;
    }

/* Logo Styles */
.logo-wrap {
    /* position: static !important; */
    /* margin: 0 !important; */
    /* display: flex; */
    /* align-items: center; */
}

    .logo-wrap img {
        /* height: 40px !important; */
        margin: 0 !important;
        padding: 4px 0;
    }

/* Navigation Items */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    margin: 0;
    z-index: 20;
}

    .navbar-nav.left-nav {
        flex: 0 0 auto;
        /* z-index: 20; */
    }

    .navbar-nav.right-nav {
        flex: 0 0 auto;
    }

/* Button Styles */
.navbar .btn {
    padding: 6px 15px;
    font-size: 0.9rem;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .navbar > .container-fluid {
        padding: 0 10px;
        gap: 8px;
    }

    .logo-wrap img {
        /* height: 32px !important; */
    }

    .navbar .btn {
        padding: 4px 10px;
        font-size: 0.85rem;
    }

    .hover-dropdown .btn {
        padding: 4px 8px;
    }

    /* Remove any absolute positioning or margins */
    .logo-wrap {
        margin-left: 0 !important;
    }
}

/* Very Small Screen Adjustments */
@media (max-width: 375px) {
    .navbar > .container-fluid {
        padding: 0 5px;
        gap: 4px;
    }

    .navbar .btn {
        padding: 4px 8px;
        min-width: 32px;
    }

    .navbar-nav {
        gap: 4px;
    }

    .logo-wrap img {
        height: 28px !important;
    }
}

/* Override any conflicting styles */
.logo-wrap {
    /* position: static !important; */
    /* margin: 0 !important; */
}

    .logo-wrap img {
        margin: 0 !important;
        display: flex;
        justify-content: center;
    }

.navbar-nav.ms-auto {
    margin-left: 0 !important;
}

.navbar-brand {
    color: var(--primary-green) !important;
    font-weight: bold;
}

.nav-link {
    color: white !important;
}

.btn-outline-light {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

    .btn-outline-light:hover {
        border: 1px solid var(--primary-green);
        background: var(--primary-green);
        color: white;
    }

button.btn.btn-success {
    background: var(--primary-green);
}

    button.btn.btn-success:hover {
        background: none;
        color: var(--primary-green);
    }



@media (max-width: 768px) {
    .logo-wrap img {
        display: block;
        /* height: 35px; */
        padding: 0px 0px;
        margin-left: 50px;
    }
}
/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background-color: var(--dark-bg);
    padding: 1rem;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 999;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    padding: 0;
    /* min-height: calc(100vh - var(--header-height)); */
    transition: all 0.3s ease;
    max-width: 1400px;
}

/* Mobile/Tablet Adjustments */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .main-content,
    .main-footer {
        margin-left: 0;
        width: 100%;
    }

    .main-content {
        padding: 0;
    }
}

/* Sidebar Toggle Button */
#sidebar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    border: none;
    background: transparent;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    #sidebar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.navbar .nav-link {
    padding: 0.5rem 0.75rem;
}

/* Ensure the brand stays centered */
.navbar-brand {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .navbar-brand {
        position: static;
        transform: none;
    }
}

/* Main Content Mobile Adjustments */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        padding: 0;
        min-height: calc(100vh - var(--header-height));
    }

        .main-content.expanded {
            margin-left: 0;
            margin-right: 0;
        }

    .main-content-inner {
        padding: 0;
    }

    /* Remove any extra spacing */
    .row {
        margin: 0;
    }

    .col-lg-7,
    .col-md-6,
    .col-12 {
        padding: 0;
    }

    /* Other sections padding */
    .live-transactions,
    .daily-challenges {
        padding: 15px;
    }
}

/* Very Small Screen Adjustments */
@media (max-width: 576px) {
    .main-content {
        padding: 0;
    }

    .main-content-inner {
        padding: 0;
    }
}

/* Update/add these styles */
.promo-container {
    padding: 0;
    width: 100%;
    margin: 0;
}

    .promo-container .row {
        margin: 0;
    }

    .promo-container .col-lg-7 {
        padding: 0;
    }

/* Slider Styles */
#promoSlider {
    border-radius: 0;
    width: 100%;
}

.carousel-item .promo-banner {
    padding: 0;
    margin: 0;
    line-height: 0;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
    display: block;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 10px;
    margin-bottom: 0;
}

    .carousel-indicators button {
        width: 8px;
        height: 8px;
        /* border-radius: 50%; */
        background-color: var(--primary-green);
        opacity: 0.5;
        margin: 0 5px;
    }

        .carousel-indicators button.active {
            opacity: 1;
        }

/* Right Banner Styles */
.share-banner {
    /* background: linear-gradient(45deg, #1a271c, #2a3730); */
    /* height: 280px; */
    position: relative;
    border-radius: 20px;
    /* overflow: hidden; */
}

.banner-content {
    /* height: 100%; */
}

    .banner-content img {
        /* width: 100%; */
        /* height: 100%; */
        object-fit: cover;
        border-radius: 20px;
    }

.social-icons-container {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c272b;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

    .social-icon-btn:hover {
        background: var(--primary-green);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
    }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .social-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .social-icons-container {
        right: 15px;
        bottom: 15px;
    }

    .social-icon-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Game Navigation Styles */
.game-navigation {
    /* padding: 0 20px; */
}

.all-ctr {
    display: flex;
    justify-content: space-between;
}

.game-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.btn-providere {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.btn-provider {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

    .btn-provider.active, .btn-provider:hover {
        border: 1px solid var(--primary-green);
        background: var(--primary-green);
    }

.game-menu::-webkit-scrollbar {
    height: 5px;
}

.btn-provider img {
    height: 50px;
    padding: 5px 10px;
}

.game-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.game-menu::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.btn-game {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

    .btn-game:hover,
    .btn-game.active {
        background: var(--primary-green);
        color: white;
    }

    .btn-game i {
        font-size: 1.1rem;
    }

/* Search Bar Styles */
.search-container {
    max-width: 400px;
    margin-left: auto;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    padding-left: 20px;
}

    .search-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--primary-green);
        color: white;
        box-shadow: none;
    }

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.btn-search {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0 20px;
}

    .btn-search:hover {
        background: #218838;
        color: white;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .all-ctr {
        flex-direction: column;
    }

    .game-navigation {
        padding: 0 10px;
    }

    .search-container {
        margin: 0px;
        margin-top: 15px;
        width: 100%;
        max-width: 100%;
    }

    .game-menu {
        padding-bottom: 10px;
    }
}

/* Provider Section Styles */
.provider-section {
    /* padding: 20px; */
}

.section-title {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.provider-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background: var(--dark-bg);
    margin-bottom: 15px;
}

    .provider-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform 0.3s ease;
    }

.provider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-card:hover .provider-overlay {
    opacity: 1;
}

.provider-card:hover img {
    transform: scale(1.1);
}

.provider-name {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.play-now-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-now-btn:hover {
        background: #218838;
        transform: translateY(-2px);
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .provider-section {
        padding: 15px;
    }

    .provider-card {
        margin-bottom: 10px;
    }
}

/* Pulse effect on button */
.play-now-btn::before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.play-now-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Corner decoration */
.provider-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    background: transparent;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.provider-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    transition: all 0.3s ease;
}

.provider-card:hover::before,
.provider-card:hover::after {
    width: 30px;
    height: 30px;
    border-color: var(--primary-green);
}

/* Update Footer Titles Styles */
.footer-titles-wrapper {
    margin-bottom: 15px;
}

.footer-titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-title {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.footer-logos {
    /* margin-bottom: 25px; */
}

.footer-menu {
    padding: 15px 0;
    background: #262c32;
    margin-bottom: 20px;
}

    .footer-menu ul {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .footer-menu ul li a {
            color: var(--primary-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-menu ul li a:hover {
                color: white;
            }

.btn-footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

    .btn-footer-menu i {
        transition: transform 0.3s ease;
    }

    .btn-footer-menu[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

@media (max-width: 768px) {
    .footer-menu ul {
        flex-direction: column;
        gap: 0;
    }

        .footer-menu ul li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

            .footer-menu ul li:last-child {
                border-bottom: none;
            }

            .footer-menu ul li a {
                display: block;
                padding: 12px 16px;
                background: var(--dark-bg);
            }

                .footer-menu ul li a:hover {
                    background: rgba(255, 255, 255, 0.1);
                }
}

/* Mobile Footer Dropdown */
.footer-dropdown {
    position: relative;
    width: 100%;
}

.footer-menu-items {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 8px;
    overflow: hidden;
}

.footer-menu-item {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .footer-menu-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-menu-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-green);
    }

.footer-menu .table {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border: none;
}

    .footer-menu .table td {
        text-align: center;
        padding: 10px 15px;
        border: none;
        width: 25%;
    }

    .footer-menu .table a {
        color: var(--primary-green);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

        .footer-menu .table a:hover {
            color: #ffffff;
        }

@media (max-width: 768px) {
    .footer-menu .table td {
        display: block;
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .footer-menu .table tr {
        display: block;
        margin-bottom: 0;
    }

    .footer-dropdown {
        padding: 0px 15px;
    }
}

.partner-logos,
.license-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

    .partner-logos img,
    .license-logos img {
        max-width: 100%;
        height: auto;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-titles {
        flex-direction: column;
        text-align: left;
        gap: 15px;
    }

    .footer-logos .row > div {
        margin-bottom: 20px;
    }

    .partner-logos,
    .license-logos {
        padding: 10px 0;
        position: relative;
    }

        .partner-logos::after,
        .license-logos::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }
}

/* Update Footer Text Styles */
.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 20px;
    padding: 15px 0;
    max-width: 100%;
}

    .footer-text p {
        margin-bottom: 15px;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }

/* Update Footer Container */
.main-footer {
    background: #1a2127;
    padding-bottom: 40px;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    transition: all 0.3s ease;
}

    .main-footer .container-fluid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

/* Footer Titles */
.footer-titles-wrapper {
    margin-bottom: 30px;
}

.footer-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-title {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    text-align: center;
}

/* Footer Logos */
.footer-logos {
    /* margin-bottom: 40px; */
}

.partner-logos,
.license-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.partner-logo,
.license-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Provider Logos */
.provider-logos {
    /* padding: 15px 0; */
    /* margin: 10px 0; */
    overflow: hidden;
}

.provider-logos-inner {
    display: flex;
    gap: 30px;
    animation: slideLogos 30s linear infinite;
}

.provider-logo {
    /* height: 40px; */
    width: auto;
    object-fit: contain;
}

/* Footer Text */
.footer-text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links {
    margin-bottom: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .main-footer .container-fluid {
        max-width: 992px;
    }
}

@media (max-width: 992px) {
    .main-footer .container-fluid {
        max-width: 768px;
    }

    .partner-logos,
    .license-logos {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .main-footer {
        margin-left: 0;
        width: 100%;
    }

        .main-footer .container-fluid {
            padding: 0 15px;
        }

    .footer-titles {
        flex-direction: column;
        gap: 15px;
    }

    .partner-logo,
    .license-logo {
        max-width: 150px;
    }

    .provider-logo {
        /* height: 30px; */
    }

    .footer-text {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .partner-logo,
    .license-logo {
        max-width: 120px;
    }

    .provider-logo {
        /* height: 25px; */
    }

    .footer-social-links {
        gap: 15px;
    }

    .footer-social-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Login Modal Styles */
.modal-dialog {
    max-width: 400px;
}

.modal-content {
    background: transparent;
    border: none;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c272b;
    padding: 20px;
}

.login-box {
    background: var(--dark-bg);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.login-icon {
    text-align: center;
    margin-bottom: 30px;
}

    .login-icon i {
        font-size: 48px;
        color: var(--primary-green);
    }

.input-group-text {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--primary-green);
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
}

    .form-control:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-green);
        box-shadow: none;
        color: white;
    }

.form-check-input {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

    .form-check-input:checked {
        background-color: var(--primary-green);
        border-color: var(--primary-green);
    }

.form-check-label {
    color: rgba(255, 255, 255, 0.7);
}

.forgot-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

    .forgot-link:hover {
        color: var(--primary-green);
    }

.btn-login {
    background: var(--primary-green);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

    .btn-login:hover {
        background: #218838;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }

.btn-activation {
    background: transparent;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

    .btn-activation:hover {
        background: rgba(40, 167, 69, 0.1);
        border-color: var(--primary-green);
        transform: translateY(-2px);
    }

/* OTP Section Styles */
.otp-section {
    text-align: center;
    padding: 20px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.otp-input {
    width: 45px;
    height: 45px;
    text-align: center;
    border: 1px solid rgba(40, 167, 69, 0.3);
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    font-size: 1.2rem;
    color: white;
}

    .otp-input:focus {
        border-color: var(--primary-green);
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
        outline: none;
        background: rgba(40, 167, 69, 0.15);
    }

.resend-otp {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.countdown {
    color: var(--primary-green);
    font-weight: 600;
}

/* Success Modal Styles */
.success-box {
    background: rgba(40, 167, 69, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: white;
}

.success-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.btn-continue {
    background: var(--primary-green);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 20px;
}

    .btn-continue:hover {
        background: #218838;
        transform: translateY(-2px);
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
    }

/* Prelaunch Modal Enhanced Styles */
#prelaunchModal .modal-content {
    background: transparent;
    border: none;
}

#prelaunchModal .modal-dialog {
    max-width: 500px;
}

#prelaunchModal .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1050;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

    #prelaunchModal .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
        transition: all 0.3s ease;
    }

#prelaunchModal .carousel-item {
    position: relative;
}

    #prelaunchModal .carousel-item img {
        border-radius: 15px;
        box-shadow: 0 0 30px rgba(0,0,0,0.4);
    }

#prelaunchModal .carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 60px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

    #prelaunchModal .carousel-caption h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    #prelaunchModal .carousel-caption p {
        font-size: 16px;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

#prelaunchModal .btn-claim {
    background: var(--primary-green);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

    #prelaunchModal .btn-claim:hover {
        background: #218838;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

#prelaunchModal .modal-footer {
    border: none;
    justify-content: center;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
}

#prelaunchModal .form-check-label {
    color: #333;
    font-size: 14px;
}

#prelaunchModal .carousel-indicators {
    bottom: 5px;
}

    #prelaunchModal .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.5);
        border: 2px solid rgba(255,255,255,0.3);
        margin: 0 5px;
    }

        #prelaunchModal .carousel-indicators button.active {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }

#prelaunchModal .carousel-control-prev,
#prelaunchModal .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#prelaunchModal .carousel-control-prev-icon,
#prelaunchModal .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

#prelaunchModal:hover .carousel-control-prev,
#prelaunchModal:hover .carousel-control-next {
    opacity: 1;
}

/* Register Page Styles */
.register-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-box {
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* Left Side Styles */
.register-left {
    background: linear-gradient(135deg, var(--primary-green), #218838);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.register-left-content {
    text-align: left;
    color: white;
}

.music-icon {
    font-size: 3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.register-left h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.register-left p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Right Side Styles */
.register-right {
    padding: 30px 40px 60px;
    color: white;
}

.register-header {
    margin-bottom: 40px;
}

    .register-header h3 {
        color: var(--primary-green);
        font-size: 2rem;
        font-weight: 600;
    }

.register-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 1rem;
}

    .register-form .form-control:focus {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border: 1px solid var(--primary-green);
        color: white;
    }

    .register-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.register-form .form-check-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.terms-link {
    color: var(--primary-green);
    text-decoration: none;
}

    .terms-link:hover {
        color: #218838;
    }

.btn-signup {
    background: var(--primary-green);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .btn-signup:hover {
        background: #218838;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        color: white;
    }

.register-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.login-link {
    color: var(--primary-green);
    text-decoration: none;
}

    .login-link:hover {
        color: #218838;
    }

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: var(--dark-bg);
        padding: 0 15px;
        color: rgba(255, 255, 255, 0.5);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .register-container {
        margin: 10px;
    }

    .register-left {
        min-height: auto;
        padding: 40px;
    }

    .register-right {
        padding: 40px;
    }

    .register-left h2 {
        font-size: 2.5rem;
    }
}

/* New Hover Dropdown Styles */
.hover-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    background-color: #1a1a1a;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    border-radius: 8px;
    padding: 8px;
}

    .dropdown-content a {
        color: #fff;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        transition: all 0.2s ease;
        border-radius: 8px;
    }

        .dropdown-content a:hover {
            background: linear-gradient(90deg, rgba(40, 167, 69, 0.2), transparent);
            transform: translateX(10px);
        }

/* Show dropdown on hover */
.hover-dropdown:hover .dropdown-content {
    display: block;
}

/* Create hover bridge */
.hover-dropdown:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -10px;
    left: 0;
}

/* Top Buttons Styles */
.top-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.btn-top {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-buttons {
        top: 10px;
        right: 10px;
    }

    .btn-top {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Update placeholder color */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Verification image styles */
.verification-image {
    width: 120px;
    height: 38px;
    border-radius: 0 5px 5px 0;
    margin-left: 1px;
    cursor: pointer;
    object-fit: cover;
}

/* Adjust input group for verification image */
.input-group {
    align-items: stretch;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .verification-image {
        width: 100px;
    }
}

/* Back to Home Button */
.back-home {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

    .back-home .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

/* Responsive adjustment */
@media (max-width: 768px) {
    .back-home {
        top: 10px;
        left: 10px;
    }

        .back-home .btn {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

    ::-webkit-scrollbar-thumb:hover {
        background: #218838;
    }

/* For Firefox */
/** {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(255, 255, 255, 0.05);
}*/

/* For horizontal scrollbars */
::-webkit-scrollbar-track:horizontal {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
    background: var(--primary-green);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* For modal scrollbars */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

/* For sidebar scrollbar */
.sidebar::-webkit-scrollbar {
    width: 0px;
    scrollbar-width: 0px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 0px;
}

/* Update register left side styles */
.register-left .bi-coin {
    font-size: 3.5rem;
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.promo-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .promo-list li {
        margin: 15px 0;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .promo-list .bi-check-circle-fill {
        color: var(--primary-green);
        font-size: 1.2rem;
    }

.register-left h2 {
    margin-top: 20px;
    font-size: 2.8rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.register-left p {
    font-size: 1.3rem;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.6);
}

/* Provider logos auto-slide styles */
.provider-logos {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    /* padding: 10px 0; */
}

.provider-logos-inner {
    display: flex;
    animation: slideLogos 30s linear infinite;
    gap: 30px;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.provider-logos:hover .provider-logos-inner {
    animation-play-state: paused;
}

/* Footer specific social links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
}

    .footer-social-btn:hover {
        transform: translateY(-5px);
        background: var(--primary-green);
        color: white;
        border-color: var(--primary-green);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Live Transaction Styles */
.transaction-card {
    background: var(--dark-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.transaction-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transaction-table-wrapper {
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

    .table thead th {
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        padding: 12px;
    }

    .table tbody td {
        color: white;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .table tbody tr {
        transition: opacity 0.5s ease, transform 0.5s ease;
        animation: fadeIn 0.5s ease forwards;
    }

        .table tbody tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }

.transaction-amount {
    font-weight: 600;
}

.transaction-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animation keyframes for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add fade out animation */
.table tbody tr.fade-out {
    opacity: 0;
    transform: translateX(10px);
}

/* Daily Challenge Styles */
.daily-challenges {
    padding: 20px;
    position: relative;
}

.challenge-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.challenge-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    justify-content: flex-start; /* Align cards to start */
}

.challenge-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
}

.challenge-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

    .challenge-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.challenge-content {
    padding: 15px;
}

    .challenge-content h4 {
        color: white;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

.challenge-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.prize-pool {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

    .prize-pool span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .prize-pool h5 {
        color: var(--primary-green);
        font-size: 1.5rem;
        margin: 5px 0 0;
    }

/* Navigation Arrows */
.challenge-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

    .challenge-nav.prev {
        left: 0;
    }

    .challenge-nav.next {
        right: 0;
    }

    .challenge-nav:hover {
        background: var(--primary-green);
    }

    .challenge-nav i {
        font-size: 1.2rem;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .daily-challenges {
        padding: 15px 30px;
    }

    .challenge-slider {
        margin: 0 40px;
    }

    .challenge-nav {
        width: 35px;
        height: 35px;
    }

        .challenge-nav.prev {
            left: -40px;
        }

        .challenge-nav.next {
            right: -40px;
        }
}

/* Challenge Table Styles */
.challenge-table {
    margin-bottom: 15px;
}

    .challenge-table .table {
        margin-bottom: 0;
        font-size: 0.85rem;
    }

    .challenge-table th {
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .challenge-table td {
        color: white;
        border: none;
    }

    .challenge-table small {
        display: block;
        color: var(--primary-green);
        font-size: 0.75rem;
    }

.place-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Challenge Actions */
.challenge-actions {
    display: flex;
    gap: 10px;
}

.btn-view-more, .btn-tnc {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-view-more {
    background: var(--primary-green);
    color: white;
    border: none;
}

    .btn-view-more:hover {
        background: #218838;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }

.btn-tnc {
    background: transparent;
    color: white;
    border: none;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--primary-green);
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
}

.challenge-actions .btn-tnc {
    border: 1px solid var(--primary-green);
    justify-content: center;
    border-radius: 5px;
}

.btn-tnc:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Winner List Modal Styles */
#winnerListModal .modal-content,
#tncModal .modal-content {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#winnerListModal .modal-header,
#tncModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#winnerListModal .modal-title,
#tncModal .modal-title {
    color: white;
}

/* Update Main Content Styles */
.main-content-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Update container widths */
.promo-container,
.live-transactions,
.daily-challenges {
    max-width: 1400px;
    margin: 0 auto;
}

/* Add spacing between sections */
.promo-container {
    margin-bottom: 40px;
}

.live-transactions {
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .main-content-inner {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .main-content-inner {
        max-width: 992px;
    }
}

@media (max-width: 992px) {
    .main-content-inner {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .main-content-inner {
        padding: 0 15px;
    }
}

/* Mobile Header Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 0;
        height: var(--header-height);
    }

        .navbar > .container-fluid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 10px;
            width: 100%;
        }

    /* Left side */
    .navbar-nav.left-nav {
        flex: 0 0 auto;
        margin: 0;
    }

    /* Center logo */
    .logo-wrap {
        flex: 1;
        display: flex;
        justify-content: center;
        margin: 0 0px !important;
    }

        .logo-wrap img {
            /* height: 35px; */
        }

    /* Right side buttons */
    .navbar-nav.right-nav {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 0;
    }

    /* Button adjustments */
    .navbar .btn {
        padding: 4px 10px;
        height: 32px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hover-dropdown .btn {
        padding: 4px 8px;
    }
}

/* Very Small Screen Adjustments */
@media (max-width: 375px) {
    .navbar > .container-fluid {
        padding: 0 5px;
    }

    .navbar .btn {
        padding: 4px 6px;
        min-width: 30px;
    }

        .navbar .btn span {
            display: none;
        }

    .logo-wrap img {
        height: 30px;
    }

    .navbar-nav.right-nav {
        gap: 4px;
    }
}

/* Update Promo Container and Slider Styles */
.promo-container {
    padding: 0;
    width: 100%;
    margin: 0;
}

    .promo-container .row {
        margin: 0;
    }

    .promo-container .col-lg-7 {
        padding: 0;
    }

#promoSlider {
    border-radius: 0;
}

.carousel-item .promo-banner {
    padding: 0;
    background: none;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Row spacing reset */
.row.g-4 {
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-content {
        padding: 0;
    }

    .main-content-inner {
        padding: 0;
        max-width: 100%;
    }

    .promo-container {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }

        .promo-container .row,
        .promo-container .col-lg-7 {
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 100%;
        }

    #promoSlider,
    .carousel-item,
    .promo-banner,
    .banner-img {
        max-width: 100vw;
    }

    /* Other sections padding */
    .live-transactions,
    .daily-challenges {
        padding: 15px;
    }
}

/* Very Small Screen Adjustments */
@media (max-width: 576px) {
    .promo-container {
        margin-bottom: 20px;
    }
}

/* Sidebar Menu Styles */
.sidebar-content .nav-link {
    color: white;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px; /* Space between icon and text */
    transition: all 0.3s ease;
    border-radius: 8px;
}

    .sidebar-content .nav-link i {
        color: var(--primary-green);
        font-size: 1.2rem;
        width: 24px; /* Fixed width for icons */
        text-align: center;
    }

    .sidebar-content .nav-link:hover, .sidebar-content .nav-link.active {
        background: rgba(44, 218, 58, 0.1);
        color: var(--primary-green);
    }

/* Social Links in Sidebar */
.social-links {
    padding: 1rem 0;
}

    .social-links .btn {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .social-links .btn i {
            color: var(--primary-green);
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

/* Winner List Table Styles */
.table-dark {
    background-color: var(--dark-bg);
    margin-bottom: 0;
}

    .table-dark th {
        border-bottom: 2px solid rgba(255,255,255,0.1);
        font-weight: 500;
        color: #999;
    }

    .table-dark td {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

.place-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(44, 218, 58, 0.1);
    color: var(--primary-green);
}

.text-success {
    color: var(--primary-green) !important;
    margin-left: 5px;
}

/* Winner List Table Styles */
.turnover-amount {
    color: var(--primary-green) !important;
    font-weight: 500;
}

/* Daily Challenge Card Styles */
.challenge-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
}

/* Mobile Adjustments for Challenge Cards */
@media (max-width: 768px) {
    .challenge-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin: 0;
    }

    .challenge-wrapper {
        gap: 15px;
    }

    .daily-challenges {
        padding: 15px;
    }

    .challenge-slider {
        margin: 0px;
    }

    .challenge-nav.prev {
        left: 5px;
    }

    .challenge-nav.next {
        right: 5px;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .challenge-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

/* Referral Page Styles */
.referral-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.profile-avatar img {
    width: 64px;
    height: 64px;
    border: 2px solid #4CAF50;
    padding: 2px;
}

.profile-info h4 {
    color: #ffffff;
    font-size: 1.25rem;
}

.level-info {
    display: flex;
    align-items: center;
}

.level-badge {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.progress-section {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 100%);
    transition: width 0.3s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    text-align: left;
}

    .stat-item label {
        color: #9CA3AF;
        font-size: 0.875rem;
        display: block;
        margin-bottom: 4px;
    }

.value-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
}

.value {
    color: #4CAF50;
    font-weight: 600;
}

/* Info icon styling */
.bi-info-circle {
    color: #9CA3AF;
    font-size: 1.25rem;
}

/* Referral QR Code and Links Styles */
.section-title.text-success {
    color: #4CAF50 !important;
    font-size: 1.25rem;
    text-align: center;
}

    .section-title.text-success::after {
        display: none;
    }

.qr-container {
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 16px;
    /* padding: 24px; */
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 8px;
    padding: 6px;
}

.referral-links .link-item label {
    color: #4CAF50;
    font-size: 0.875rem;
    margin-bottom: 8px;
    display: block;
    font-weight: bold;
    margin: 0px;
}

.referral-links .input-group {
    background: none;
    border-radius: 8px;
    overflow: hidden;
}

.referral-links .form-control {
    background: none;
    border: none;
    color: white;
    padding: 0px;
    font-size: 0.875rem;
}

    .referral-links .form-control:focus {
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
    }

.btn-copy {
    /* background: transparent; */
    border: none;
    color: #4CAF50;
    padding: 0 16px;
    /* border-left: 1px solid rgba(255, 255, 255, 0.1); */
}

    .btn-copy:hover {
        background: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .btn-copy i {
        font-size: 1.25rem;
    }

.referral-links .link-item {
    display: flex;
    justify-content: space-between;
    background: #29343c;
    border-radius: 50px;
    padding: 10px 17px;
}

.referral-wrapper {
    width: 100%;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .qr-code {
        width: 160px;
        height: 160px;
    }

    .referral-links .form-control {
        font-size: 0.75rem;
    }
}

/* Transaction History Styles */
.transaction-history {
    margin-top: 30px;
}

.history-header {
    background: #29343c;
    border-radius: 8px;
    padding: 12px 20px;
}

    .history-header .row {
        margin: 0;
    }

    .history-header .col-4 {
        padding: 0;
    }

.header-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

.history-content {
    background: rgba(41, 52, 60, 0.5);
    border-radius: 8px;
    margin-top: 2px;
    padding: 20px;
}

    .history-content p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.875rem;
    }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .header-text {
        font-size: 0.75rem;
    }

    .history-content p {
        font-size: 0.75rem;
    }
}
/* Promo Card Styles */
.promo-card {
    /* position: relative; */
    /* border-radius: 10px; */
    /* overflow: hidden; */
    /* height: 120px; */
    /* background: #29343c; */
    /* display: inline-block; */ /* Change from block to inline-block */
    /* width: 100%; */
}

    .promo-card img {
        /* width: 100%; */
        /* height: 100%; */
        /* object-fit: cover; */
    }

    .promo-card .btn-claim {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 6px 20px;
        border-radius: 5px;
        font-size: 0.875rem;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

/* Promo Filter Styles */
.promo-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.btn-filter {
    padding: 8px 20px;
    border-radius: 5px;
    background: transparent;
    color: white;
    border: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

    .btn-filter.active {
        background: var(--primary-green);
        color: white;
    }

    .btn-filter:hover:not(.active) {
        background: rgba(76, 175, 80, 0.1);
    }

.search-box {
    margin-left: auto;
}

    .search-box .form-control {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        width: 200px;
    }

/* Promo Grid Styles */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    /* position: relative; */
    /* border-radius: 10px; */
    /* overflow: hidden; */
    /* height: 120px; */
    /* background: #29343c; */
    /* width: 100%; */
}

    .promo-card img {
        /* width: 100%; */
        /* height: 100%; */
        /* object-fit: cover; */
    }

.btn-claim {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 5px;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .btn-claim:hover {
        background: #45a049;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-filters {
        gap: 10px;
    }

    .btn-filter {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .search-box {
        width: 100%;
        margin: 10px 0 0;
    }

        .search-box .form-control {
            width: 100%;
        }
}

/* Filter Section Styles */
.filter-section {
    padding: 25px;
    background: rgb(26 33 39);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    /* margin-top: 82px; */
}

.filter-buttons {
    display: flex;
    gap: 12px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 5px;
}

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

.btn-filter {
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .btn-filter.active {
        background: var(--primary-green);
        color: white;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        border: 1px solid rgba(76, 175, 80, 0.5);
    }

    .btn-filter:hover:not(.active) {
        background: rgb(44 218 58);
        /* transform: translateY(-2px); */
    }

.search-box {
    padding: 10px 20px 0;
}

    .search-box .form-control {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        width: 100%;
    }

/* Promo Grid Styles */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.mix {
    display: block;
}

    .mix.mixitup-hide {
        display: none !important;
    }

.promo-card {
    background: rgba(31, 41, 55, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    /* height: 180px; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

    .promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
        border: 1px solid rgba(76, 175, 80, 0.2);
    }

    .promo-card img {
        width: 100%;
        /* height: 100%; */
        /* object-fit: cover; */
        transition: transform 0.3s ease;
    }

    .promo-card:hover img {
        transform: scale(1.05);
    }

.promo-content {
    padding: 20px;
}

    .promo-content h3 {
        color: white;
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .promo-content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        margin-bottom: 15px;
    }

.btn-more {
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

    .btn-more:hover {
        background: #45a049;
        color: white;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        padding-bottom: 5px;
    }

    .btn-filter {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .promo-card {
        height: 150px;
    }

    .btn-claim {
        padding: 8px 20px;
        font-size: 0.813rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Promo Modal Styles */
.modal-content {
    /* background: rgb(26 33 39); */
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 15px;
}

.modal-header {
    background: var(--primary-green);
    border: none;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
}

.modal-title {
    color: #29343c;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Replace the promo-info-grid styles with these */
.promo-modal {
    max-width: 800px;
}

    .promo-modal .modal-body {
        background: var(--dark-bg);
    }

    .promo-modal .modal-title {
        color: #fff;
    }

.promo-info-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
    padding: 10px;
}

.promo-rules ul {
    list-style: disc;
}

.promo-info-table td {
    text-align: center;
    padding: 10px 10px !important;
    background: none !important;
    border: 1px solid rgb(44 218 58) !important;
    width: 25%;
}

.promo-info-table .info-label {
    color: #29343c;
    font-size: 0.813rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.promo-info-table .info-value {
    color: #29343c;
    font-size: 1rem;
    font-weight: 600;
}

.promo-rules {
    padding: 0px 10px;
}

    .promo-rules h6 {
        color: var(--primary-green);
    }
/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-modal .modal-body {
        max-height: 465px;
        overflow-y: auto;
    }

    .promo-info-table td {
        /* display: block; */
        /* width: 50%; */
        /* float: left; */
        /* padding: 12px 8px; */
    }

    .promo-info-table tr {
        display: block;
    }

    .promo-info-table .info-label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .promo-info-table .info-value {
        font-size: 0.875rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .promo-info-table td {
        /* width: 100%; */
        /* float: none; */
        vertical-align: middle;
    }
}
/*slot*/
.intro-section {
    display: flex;
    justify-content: space-between;
}

/* Provider Bar Styling */
.provider-bar {
    padding: 20px;
    background: rgb(26 33 39);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    z-index: 1;
}

/* Desktop Menu Styling */
.game-menu {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: thin;
    scrollbar-color: #4a4d5c #1e2130;
}

/* Mobile Dropdown Styling */
.provider-dropdown {
    position: relative;
    width: 100%;
}

.btn-provider-select {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

    .btn-provider-select img {
        height: 30px;
        width: auto;
        margin-right: 12px;
        object-fit: contain;
    }

    .btn-provider-select .provider-name {
        flex-grow: 1;
        text-align: left;
    }

    .btn-provider-select i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .btn-provider-select.active i {
        transform: rotate(180deg);
    }

.provider-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e2130;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

    .provider-dropdown-menu.show {
        display: block;
    }

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-item img {
        height: 30px;
        width: auto;
        margin-right: 12px;
        object-fit: contain;
    }

    .dropdown-item span {
        color: white;
    }

/* Maintain existing desktop styles */
/* ... (keep the previous desktop styles for .btn-provider, etc.) ... */

/* Custom scrollbar for dropdown menu */
.provider-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.provider-dropdown-menu::-webkit-scrollbar-track {
    background: #1e2130;
}

.provider-dropdown-menu::-webkit-scrollbar-thumb {
    background: #4a4d5c;
    border-radius: 3px;
}

/* Add these styles */
.intro-section {
    margin: 0;
    padding: 0;
}

.intro-slider {
    position: relative;
    overflow: hidden;
}

.intro-wrapper {
    display: flex;
    gap: 20px;
}

.intro-content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

    .intro-content img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        border: 1px solid rgba(76, 175, 80, 0.2);
    }

/* Mobile styles */
@media (max-width: 768px) {
    .intro-wrapper {
        gap: 0;
        transition: transform 0.3s ease;
    }

    .intro-content {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }

        .intro-content img {
            border-radius: 0;
        }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: rgba(44, 218, 58, 0.1);
        border: none;
        border-radius: 50%;
        color: var(--primary-green);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        .slider-nav:hover {
            background: var(--primary-green);
            color: white;
        }
}
/*lobby*/
.lobby-all {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.casino-all {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

/* Add these styles */
.sports-tabs {
    border-bottom: none;
    gap: 10px;
    padding: 15px;
    background: var(--dark-bg);
    border-radius: 10px 10px 0 0;
}

    .sports-tabs .nav-item {
        margin: 0;
    }

    .sports-tabs .nav-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: white;
        background: rgba(255, 255, 255, 0.05);
        background: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
        border: 1px solid rgba(76, 175, 80, 0.2);
    }

        .sports-tabs .nav-link:hover {
            background: var(--primary-green);
            border: 1px solid var(--primary-green);
        }

        .sports-tabs .nav-link img {
            height: 40px;
            width: auto;
        }

        .sports-tabs .nav-link.active {
            background: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
        }

.sports-content {
    background: var(--dark-bg);
    border-radius: 0 0 10px 10px;
    padding: 20px;
}

    .sports-content iframe {
        width: 100%;
        height: 800px;
        border-radius: 8px;
    }

/* Mobile responsive */
@media (max-width: 768px) {
    .sports-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px;
    }

        .sports-tabs .nav-link {
            white-space: nowrap;
            padding: 8px 15px;
        }

            .sports-tabs .nav-link img {
                height: 20px;
            }

    .sports-content iframe {
        height: 500px;
    }

    .casino-all {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .intro-slider {
        padding: 15px;
    }
}

.vip-wrapper {
    padding: 20px;
    color: white;
}

.vip-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.tab-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .tab-btn:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .tab-btn.active {
        background: var(--primary-green);
        color: white;
    }

/* Tab Content Styles */
.tab-content {
    /* display: none; */
    animation: fadeIn 0.3s ease-in-out;
}

    .tab-content.active {
        display: block;
    }

/* Coming Soon Styles */
.coming-soon {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

    .coming-soon i {
        font-size: 48px;
        color: var(--primary-green);
        margin-bottom: 20px;
    }

    .coming-soon h3 {
        color: white;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .coming-soon p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
    }

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vip-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 8px;
        gap: 8px;
    }

    .tab-btn {
        padding: 6px 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .coming-soon {
        padding: 40px 20px;
    }

        .coming-soon i {
            font-size: 36px;
        }

        .coming-soon h3 {
            font-size: 20px;
        }

        .coming-soon p {
            font-size: 14px;
        }
}

/* VIP Layout Styles */
.vip-wrapper {
    padding: 20px;
    color: white;
}

/* VIP Tab Styles */
.vip-tabs {
    border-bottom: none;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
}

    .vip-tabs .nav-item {
        margin: 0;
    }

    .vip-tabs .nav-link {
        border: none;
        color: white;
        background: rgba(0, 0, 0, 0.3);
        padding: 12px 20px;
        border-radius: 4px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .vip-tabs .nav-link .vip-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .vip-tabs .nav-link span {
            font-weight: 500;
            font-size: 14px;
        }

        .vip-tabs .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
        }

        .vip-tabs .nav-link.active {
            background: var(--primary-green);
            color: white;
            border: none;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .vip-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 8px;
        gap: 8px;
    }

        .vip-tabs .nav-link {
            padding: 8px 16px;
            font-size: 12px;
            white-space: nowrap;
            flex-direction: column;
            min-width: 90px;
        }

            .vip-tabs .nav-link .vip-icon {
                width: 20px;
                height: 20px;
            }
}

/* VIP Progress Section */
.vip-progress-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
}

.main-challenge, .challenge {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
}

.star-points {
    font-size: 24px;
    margin-bottom: 10px;
}

    .star-points i {
        color: var(--primary-green);
    }

.progress {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.progress-bar {
    background: var(--primary-green);
    border-radius: 10px;
    height: 100%;
}

.progress-text {
    position: absolute;
    right: 10px;
    color: white;
}

.challenge.disabled {
    opacity: 0.5;
    position: relative;
}

    .challenge.disabled::after {
        content: '×';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 48px;
        color: red;
    }

/* Achievement Styles */
.vip-achievements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

    .achievement-box:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

.achievement-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .achievement-status i {
        font-size: 12px;
    }

.achievement-progress {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    margin: 30px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

    .achievement-icon i {
        font-size: 24px;
        color: var(--primary-green);
    }

.achievement-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
}

.achievement-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

#vipTabContent {
    display: block;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .achievement-row {
        grid-template-columns: 1fr;
    }

    .achievement-box {
        padding: 15px;
    }

    .achievement-icon {
        margin: 25px auto 12px;
    }
}

/* TNC Button */
.tnc-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(44 218 58);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgb(44 218 58);
}

    .tnc-btn:hover {
        background: none;
        border: 1px solid rgb(44 218 58);
    }

/* TNC Modal Styles */
.modal-content {
    /* background: #1a1a1a; */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--primary-green);
}

.btn-close {
    background-color: white;
    opacity: 0.7;
}

    .btn-close:hover {
        opacity: 1;
    }

.modal-body h6 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.modal-body ol {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.modal-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

    .modal-footer .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Make sure the modal is visible over other content */
.modal {
    z-index: 1050;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tnc-btn {
        top: 10px;
        right: 10px;
        padding: 4px 12px;
        font-size: 12px;
    }

    .modal-dialog {
        margin: 10px;
        max-width: none;
    }

    .login-box {
        max-width: none;
    }
}

/* Fix modal backdrop issue */
.modal-backdrop {
    z-index: 1040;
}

    .modal-backdrop.show {
        opacity: 0.5;
    }

/* Ensure modal is above backdrop */
.modal {
    z-index: 1045;
}

/* Add this to remove backdrop when modal is closed */
.modal-backdrop.fade.show {
    pointer-events: auto;
}

.modal-backdrop.fade {
    pointer-events: none;
}

/* Fix for backdrop remaining after close */
body:not(.modal-open) .modal-backdrop {
    /* display: none; */
}

/* Submenu Styles */
.submenu {
    padding-left: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--primary-green);
    margin: 5px 0;
    padding: 0px;
}

    .submenu .nav-link {
        padding: 8px 15px;
        font-size: 14px;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        .submenu .nav-link:hover {
            opacity: 1;
            background: rgba(44, 218, 58, 0.1);
        }

        .submenu .nav-link i {
            font-size: 14px;
            margin-right: 8px;
        }

/* Dropdown Toggle Animation */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .submenu {
        padding-left: 1.5rem;
    }

        .submenu .nav-link {
            padding: 6px 12px;
            font-size: 13px;
        }
}
/*daily*/
.daily-bg {
    position: relative;
}

    .daily-bg ul {
        position: absolute;
        bottom: 55px;
        display: flex;
        gap: 10px;
        justify-content: center;
        left: 0;
        right: 0;
        margin: 0px auto;
        list-style: none;
    }

        .daily-bg ul li a {
            position: relative;
            display: block;
            color: #fff;
        }

            .daily-bg ul li a.claimed .daily-content {
                display: none;
            }

.daily-content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.daily-bg ul li a img {
    filter: grayscale(0.8);
}

.daily-bg ul li a.claimed img {
    filter: none;
}

.daily-bg ul li a.active img {
    filter: none;
}

.bg-daily img {
    display: block;
    margin: 0px auto;
}

.daily-wrap {
    max-width: 1040px;
    margin: 0px auto;
    padding-bottom: 20px;
}

.daily-wrap-in {
    background: #24262b;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px var(--primary-green);
}

.daily_modal .close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: #fff;
    opacity: 1;
    font-size: 47px;
    z-index: 2;
}

.daily_modal .modal-body {
    background: none;
}

.daily_modal .modal-content {
    background: none;
    border: none;
}

.modal-congrat h5 {
    color: var(--primary-green);
    font-size: 38px;
    font-weight: bold;
    text-align: center;
}

.congrat-text {
    text-align: center;
    font-size: 20px;
}

.image-wrap img {
    display: block;
    margin: 0px auto;
    position: relative;
}

.color-text1 {
    color: var(--primary-green);
    font-weight: bold;
}

.color-text2 {
    color: #edb543;
    font-weight: bold;
}

.img-wrap-top {
    position: absolute !important;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

img.img-wrap {
    height: 80%;
    margin-top: 30px;
}

#daily-1 .btn-close {
    position: absolute;
    right: 15px;
    top: -22px;
    z-index: 1050;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

    #daily-1 .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
        transition: all 0.3s ease;
    }

.btn-close {
    position: absolute;
    right: 15px;
    top: 18px;
    z-index: 1050;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

    .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
        transition: all 0.3s ease;
    }

.blog_title {
    font-weight: bold;
    font-size: 24px;
}

@media (max-width: 999px) {
    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: relative;
        padding: 0px 15px;
    }
}

@media (max-width: 600px) {
    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: relative;
        padding: 0px 15px;
    }
}
/*mission*/
.mission-bg ul {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0px;
}

    .mission-bg ul li a {
        display: block;
        position: relative;
    }

.ms-wrap {
    position: absolute;
    top: 0px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.ms-ttl {
    text-transform: uppercase;
    color: var(--primary-green);
    font-weight: bold;
}

.ms-amt {
    font-weight: bold;
    color: #fbe621;
    text-transform: uppercase;
}

.ms-btn {
    position: absolute;
    bottom: -5px;
}

.mission_modal .modal-content {
    background: #1a2127;
}

.mission_modal .modal-dialog {
    max-width: 800px;
}

.mission_modal .close {
    position: absolute;
    right: 0px;
    color: #fff;
}

.mission_modal ul, .mission_modal ol {
    padding-left: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #787878;
    font-size: 12px;
}

    .mission_modal ul li {
        list-style: circle;
        margin-bottom: 15px;
    }

    .mission_modal ol li {
        list-style: auto;
        margin-bottom: 10px;
    }

.mission_modal .modal-body {
    padding: 20px 30px;
    max-height: 465px;
    overflow-y: auto;
}

.mission_modal h4 {
    border-bottom: 1px solid #fff;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.mission_modal table tr td {
}

.mission_modal table tr td, .mission_modal table tr th {
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.mission_modal .close {
    color: #fff;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}

.clm-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

    .clm-btn button {
        background: var(--primary-green);
        border-radius: 6px;
        font-size: 12px;
        padding: 10px 14px;
        color: #fff;
        font-weight: 600;
        border: none;
        margin: 0 5px;
    }
/*p2e*/
.play2earn {
    padding: 40px;
}

.play2earn-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-ttl-1 {
    background: var(--primary-green);
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
}

.p2e-info-content {
    padding: 10px;
    border: 1px solid #37393f;
    border-top: none;
    padding-bottom: 0;
    background: #1a2127;
}

.p2e-amount {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-amount-box {
    width: 100%;
    background: #262c32;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p2e-col .progress-bar {
    width: 100%;
    background-color: #494949;
    border-radius: 25px;
    margin: 10px 0;
}

.progress-bar-fill {
    height: 20px;
    background: linear-gradient(to bottom, rgb(44 218 58) 0%, var(--primary-green) 99%);
    transition: width 0.5s;
    border-radius: 25px;
}

.p2e-btn-group {
    display: flex;
    justify-content: center;
    padding: 10px;
}

    .p2e-btn-group a {
        background: var(--primary-green);
        color: #ffffff !important;
        padding: 5px 10px;
        display: block;
        text-align: center;
        width: 40%;
        margin-left: 5px;
        margin-right: 5px;
        border-radius: 5px;
        text-decoration: none;
        border: 1px solid var(--primary-green);
    }

        .p2e-btn-group a:hover {
            background: none;
            color: #fff !important;
            border: 1px solid var(--primary-green);
        }

.btn-p2e {
    color: var(--primary-green);
    font-weight: bold;
}

.sel-form {
    margin-bottom: 10px;
}

    .sel-form select {
        color: #fff;
        background: #262c32;
    }

.pse-bnr {
    margin-bottom: 15px;
}

table.rwdin-table tr th:first-child {
    text-align: left;
}

table.rwdin-table tr th:last-child {
    text-align: right;
}

table.rwdin-table {
    width: 100%;
}

    table.rwdin-table tr td:first-child {
        text-align: left;
    }

    table.rwdin-table tr td:last-child {
        text-align: right;
    }

    table.rwdin-table tr:nth-child(even) {
        background: #202a39;
    }

    table.rwdin-table tr th {
        font-size: 12px;
        font-weight: 100;
        color: #6a717b;
        padding: 10px 20px;
    }

    table.rwdin-table tr td {
        padding: 10px 20px;
        font-size: 15px;
    }

    table.rwdin-table tr {
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
    }

.af-wrap.aff-off {
    margin: 0px auto;
}

.dataTables_wrapper {
    color: #fff;
}

table.dataTable.compact thead th, table.dataTable.compact thead td {
    background: #7a7a7a;
    color: #fff;
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

.dataTables_length label {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    max-width: 30%;
    color: #fff;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
    border: 1px solid #4f586e;
    text-align: center;
    color: #ffffff;
}

.dataTables_paginate {
    display: flex;
    gap: 10px;
}

.p2e .a.paginate_button {
    color: #000;
    display: block;
}

.p2e a.paginate_button.current {
    color: #fff;
}

.p2e .btn-apply {
    background: linear-gradient(to bottom, rgba(84,63,22,1) 0%, rgba(173,132,57,1) 99%);
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 6px 20px;
}

.dataTables_length label select {
    background: #7a7a7a;
    border: none;
    padding: 8px;
    border-radius: 5px;
    width: 100px;
    color: #fff;
}

.dataTables_scroll {
    margin-top: 25px;
}

.p2e-table {
    max-width: 1000px !important;
}

.btn-apply {
    background: var(--primary-green);
    color: #fff;
    font-weight: bold;
    border: 1px solid var(--primary-green);
}

.history-play-to-earn {
    margin: 10px 0px;
}

.btn-apply:hover {
    color: #fff;
    background: none;
    border: 1px solid var(--primary-green);
}

.sel-form select option {
    color: #ffffff;
    background: #262c32;
}

.paging_full_numbers a {
    color: var(--primary-green);
}
/*wheel*/
.wheel_product .wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    height: 880px;
    margin-bottom: -120px;
}

.wheel-wrap .wheel_product_bg {
    width: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    top: auto;
    right: 23.5%;
    bottom: 29%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_frame {
    width: 55.5%;
    position: absolute;
    bottom: 5%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0px auto;
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
}

.wheel-wrap .wheel_product_zeus {
    width: 38%;
    position: absolute;
    left: -0%;
    bottom: 25%;
    z-index: 2;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg)
    }

    80% {
        transform: rotate(1turn)
    }

    to {
        transform: rotate(1turn)
    }
}

.wheel-wrap .wheel_product_arrow {
    width: 9%;
    position: absolute;
    bottom: 45%;
    z-index: 6;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.wheel-wrap .lightning {
    position: absolute;
    width: 28%;
    height: 50%;
    right: 1.3%;
    bottom: 25%;
    mix-blend-mode: lighten;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    right: 23.5%;
    bottom: 32%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.wheel_product.wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 600px;
    margin-bottom: 40px;
    z-index: -1;
}

.slider_title.wheel-ttl {
    color: #e2e7f3;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.wheel-all ul {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
    gap: 20px;
    font-weight: bold;
}

span.yell-text {
    color: var(--primary-green);
    font-weight: bold;
}

.whl-btn {
    background: #2b2e35;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    gap: 5px;
}

a.btn-spin {
    background: var(--primary-green);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    color: #fff;
    border: 1px solid var(--primary-green);
}

.wheel-all .btn-more {
    background: none;
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    font-size: 15px;
    border: 1px solid var(--primary-green);
}

.wheel-bg {
    display: block;
}

.wheel-all .btn-more:hover {
    background: var(--primary-green);
}

a.btn-spin:hover {
    background: none;
}
/*Redemption*/
.red-bg {
    background: url("../images/reward-redemption/rr-bg.png") no-repeat center top;
}

.redemp-title {
    padding-bottom: 15px;
}

.redemption-wrapper {
    text-align: center;
    /* max-width: 1000px; */
    margin: 0 auto;
    margin-bottom: 55px;
    margin-top: 45px;
    display: flex;
}

.redemp-box {
    position: relative;
    margin: 15px 2px 35px;
    display: inline-block;
    text-transform: uppercase;
}

.redemp-box {
    background: url( "../images/reward-redemption/bg-reward.png")no-repeat;
    background-size: 100%;
    width: 312px;
    height: 226px;
    margin: 0 auto;
    padding: 13px 25px;
    position: relative;
}

.redemp-inner {
    position: relative;
    top: -40px;
}

.prize-credit {
    padding-bottom: 15px;
}

.point-text {
    line-height: 8px;
    color: #c498ff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000;
}

.require-text {
    font-size: 14px;
    font-weight: 100;
    padding: 9px 0;
}

.claim-btn-wrap {
    margin-top: -30px;
}

.point-text.top {
    margin-top: -15px;
}

.prize-item {
    margin-top: -40px;
}

.prize-sub {
    font-size: 11px;
    font-weight: 600;
}

.require-text.top {
    min-height: 78px;
}

.bg-daily img {
    display: block;
    margin: 0px auto;
}

.max-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* top: -75px; */
}

.top-btn {
    display: flex;
    position: relative;
}

.top-btn-wrap {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pred-btn-point {
    display: flex;
    position: relative;
    align-items: center;
    font-weight: bold;
}

.subtitle-wrap {
    position: relative;
}

.sub-box.redemp {
    position: relative;
    top: 2px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 100;
    justify-content: center;
    margin-bottom: 20px;
}

.top-btn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.red-txt {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.pred-btn {
    background: none;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

span.red-pnt {
    color: #edc983;
}

.pt-btn {
    font-size: 20px;
}

.red-txt-gd {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: #F5E489;
    background: linear-gradient(to bottom, #F5E489 0%, #D88127 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 20px;
    filter: drop-shadow(2px 2px 0px black);
}

.submit-btn {
    background: none;
    border: none;
    display: block;
    margin: 0px auto;
    position: relative;
}

img.img-sh {
    position: absolute;
    z-index: 1;
    left: 0px;
}

img.img-sh2 {
    z-index: 2;
}

.transc-l img {
    display: block;
    margin: 0px auto;
}

.btn-live {
    display: flex;
    align-items: center;
}

.text-trs {
    color: #859cbf;
    font-size: 20px;
    line-height: 21px;
}

.fnt-wh {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.rep_modal .modal-dialog {
    background: none;
}

.rep_modal .modal-content {
    background: none;
    border: none;
}

.rep_modal .daily-wrap-in {
    box-shadow: none;
    border: none;
    background: url( "../images/reward-redemption/bg-reward.png")no-repeat center top;
    background-size: contain;
    min-width: 312px;
}

.rep_modal img.img-wrap {
    height: 85% !important;
    position: relative;
    top: -100px;
}

.modal-congrat {
    position: relative;
}

.rep_modal .modal-congrat h5 {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
    color: #c498ff;
    font-size: 28px;
}

.rep_modal .congrat-text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 67px;
}

.rep_modal .color-text1 {
    color: #c498ff;
}

.rep_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
}

.reptnc_modal .modal-content {
    background: none;
    padding: 0px;
}

.reptnc_modal .modal_body_view {
    background: #070315;
    border: 1px solid #db9bfc;
    box-shadow: 0px 0px 19px 4px #6b12ae;
}

.reptnc_modal .tnc-content ul, .reptnc_modal .tnc-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

    .reptnc_modal .tnc-content ul li {
        list-style: circle;
    }

    .reptnc_modal .tnc-content ol li {
        list-style: auto;
    }

.reptnc_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
}

.reptnc_modal .modal_body_view h5 {
    color: #db9bfc;
}

.reptnc_modal .tnc-content {
    color: #ffffff;
    border-top: 1px solid #db9bfc;
}

.rep_modal .claim-btn-wrap {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin: 0px auto;
    right: 0;
}

.btn-clm {
    position: absolute;
    color: #dd9dfd;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: 0px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 20px #8e23d6;
    font-weight: bold;
}

.btn-bfr {
    position: absolute;
    bottom: 30%;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0px auto;
    list-style: none;
}

button.btn-dly {
    background: linear-gradient(to right, rgba(250,137,57,1) 0%, rgba(251,62,109,1) 100%);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border: 1px solid #aa284a96;
    box-shadow: 0px 0px 20px 8px #77267d, 0px 0px 20px 0px #603d92;
    font-size: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-shadow: 0px 2px 0px black;
}

.rep_modal .daily-wrap-in {
    box-shadow: none;
    border: none;
    background: url(../images/reward-redemption/bg-reward.png) no-repeat center top;
    background-size: contain;
    min-width: 312px;
}


/*download*/
.downloadbody {
    text-align: center;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}

.ndl-btn {
    background: var(--primary-green);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 78%;
    border: 1px solid var(--primary-green);
}

    .ndl-btn:hover, .ndl-btn:focus {
        color: #ffffff;
        background: none;
    }

.adl-btn {
    background: var(--primary-green);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    width: 78%;
    margin-top: 10px;
    border: 1px solid var(--primary-green);
}

    .adl-btn:hover, .adl-btn:focus {
        color: #ffffff;
        background: none;
    }

.dl {
    max-width: 500px;
    margin: auto;
    margin-top: 10px;
}

    .dl table {
        border-collapse: collapse;
        width: 100%;
        font-size: 12px;
    }

        .dl table th {
            border: 1px solid #454545;
            text-align: center;
            padding: 8px;
            background: #191b1e;
            color: #fff;
            text-transform: uppercase;
            font-weight: 500;
        }

        .dl table td {
            text-align: left;
            padding: 8px;
            background-color: #232528;
            border: 1px solid #454545;
            color: #ffffff;
        }

    .dl .username_custom {
        color: var(--primary-green);
        font-weight: bold;
    }

.downloadboxContent {
    padding: 20px;
    border: 1px solid #ce9c2d;
    background: #000000;
}

@media screen and (max-width: 768px) {
    .daily-wrap {
        padding: 10px;
    }

    .wheel_product.wheel-wrap {
        height: 260px;
        width: 100%;
        margin: 0px auto;
        min-height: 215px;
    }

    .wheel-all ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .mission-bg ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .play2earn-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .redemption-wrapper {
        display: flex;
        flex-direction: column;
        gap: 86px;
    }

    .downloadbox {
        width: 46%;
    }
}

/* Modal Styles */
.modal-content {
    /* background-color: #2a2a2a; */
    color: white;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid #3a3a3a;
}

    .modal-header .btn-close {
        color: white;
        opacity: 0.8;
    }

.point-item, .token-balance {
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
}

    .point-item i.text-warning,
    .token-balance i.text-warning {
        color: #ffd700 !important;
    }

    .point-item i.text-secondary {
        color: #c0c0c0 !important;
    }

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-weight: 600;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.modal-title {
    font-weight: 600;
}

.point-types strong,
.token-balance strong {
    font-size: 1.2em;
    color: #fff;
}
/*info*/
.info-menu {
    padding: 25px 15px;
    background: rgb(26 33 39);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .info-menu ul {
        display: flex;
        padding: 0px;
        margin: 0px;
        gap: 5px;
        justify-content: space-between;
    }

        .info-menu ul li a {
            padding: 10px 20px;
            border-radius: 50px;
            background: rgba(76, 175, 80, 0.1);
            color: #4CAF50;
            border: 1px solid rgba(76, 175, 80, 0.2);
            font-size: 0.875rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3sease;
        }

            .info-menu ul li a.active, .info-menu ul li a:hover {
                background: var(--primary-green);
                color: white;
                box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
                border: 1px solid rgba(76, 175, 80, 0.5);
            }

.info-wrapper {
    padding: 25px;
    background: rgb(26 33 39);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.intro_title {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 24px;
}

.intro_subtitle {
    display: block;
    margin-bottom: 30px;
}

.intro_inner {
    margin-bottom: 30px;
}

.bi-chevron-down {
    color: var(--primary-green);
    font-size: 14px;
}

.tnc-body {
    font-size: 12px;
    padding: 10px;
}
/* Complete mobile sidebar solution */
@media (max-width: 991.98px) {
    body {
        padding-top: 60px;
    }
    /* Override the inline margin-left on main content */
    .main-content {
        margin-left: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: auto !important;
        !i;
        !;
        !i;
        !;
        min-height: auto;
    }

    /* Mobile sidebar base styles */
    .sidebar {
        position: fixed;
        top: 60px; /* Match header height */
        left: -100%;
        width: 280px;
        height: calc(100% - 60px); /* Full height minus header */
        z-index: 1050;
        overflow-y: auto;
        transition: left 0.3s ease;
        background-color: #1a2127;
        border-top-right-radius: 8px;
    }

        /* Active sidebar state */
        .sidebar.active {
            left: 0;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

    /* Ensure header stays above everything */
    .main-header {
        /* position: relative; */
        /* z-index: 1060; */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--header-height);
        background-color: rgb(28 39 43);
        z-index: 1048;
    }

    /* Disable scrolling when sidebar is open */
    body.sidebar-active {
        overflow: hidden;
    }

    /* Keep toggle button above overlay */
    #sidebar-toggler {
        position: relative;
        z-index: 1061;
    }

    /* Reset any CSS variables that affect layout */
    :root {
        --sidebar-width: 0px !important;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-section {
    margin-top: 30px;
}

.contact-card {
    background: #1c272b;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border-color: #383850;
    }

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .contact-icon i {
        font-size: 30px;
        color: #fff;
    }

.contact-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info {
    color: #b3b3cc;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-contact {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

    .btn-contact:hover {
        background: linear-gradient(135deg, #3498db, #2a80b9);
        color: white;
    }

/* Contact Form Styles */
.contact-form-section {
    background: #151521;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #222232;
}

.section-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-green), #1c272b);
    }

.contact-form label {
    color: #b3b3cc;
    margin-bottom: 8px;
    display: block;
}

.contact-form .input-group-text {
    background-color: #1c1c2d;
    border-color: #222232;
    color: #b3b3cc;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: #1a1a28;
    border-color: #222232;
    color: #fff;
}

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        background-color: #1a1a28;
        border-color: #2a80b9;
        box-shadow: 0 0 0 0.25rem rgba(42, 128, 185, 0.25);
        color: #fff;
    }

    .contact-form .form-control::placeholder {
        color: #8585a0;
    }

.file-attachment {
    background-color: #1a1a28;
    border: 1px dashed #222232;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

    .file-attachment label {
        cursor: pointer;
        margin-bottom: 0;
        color: #b3b3cc;
    }

    .file-attachment input[type="file"] {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

.btn-submit-message {
    background: linear-gradient(135deg, #2a80b9, #1d4361);
    border: none;
    padding: 10px 30px;
    font-size: 16px;
}

    .btn-submit-message:hover {
        background: linear-gradient(135deg, #3498db, #2a80b9);
    }

/* Business Hours and FAQ Section */
.hours-card, .faq-card {
    background: #151521;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    border: 1px solid #222232;
}

.hours-list, .faq-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .hours-list li {
        padding: 10px 0;
        border-bottom: 1px solid #222232;
        display: flex;
        justify-content: space-between;
        color: #b3b3cc;
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list li strong {
            color: #fff;
        }

.hours-note {
    color: #92929e;
    font-size: 14px;
    margin-top: 15px;
}

.faq-links li {
    padding: 10px 0;
    border-bottom: 1px solid #222232;
}

    .faq-links li:last-child {
        border-bottom: none;
    }

.faq-links a {
    color: #b3b3cc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

    .faq-links a:hover {
        color: #fff;
    }

.faq-links i {
    margin-right: 10px;
    color: #2a80b9;
    transition: transform 0.3s ease;
}

.faq-links a:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .contact-card, .hours-card, .faq-card {
        margin-bottom: 20px;
    }
}
/*bank detail*/
.info-wrap .intro {
    /* min-height: 150px; */
}

.info-wrap p {
    margin-bottom: 25px;
    font-size: 14px;
}

.info-wrap tr td {
    background: #1c272b;
    color: #fff;
    font-weight: 600;
    padding: 2px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.info-wrap tr.trans td {
    background: rgb(255 255 255 / 50%);
    color: #fff;
    border: 1px solid #0d131c;
    padding: 2px;
}

.bnk-td {
    background: var(--primary-green);
}

.info-wrapper ul {
    list-style: disc;
}
/*blog*/
.blog-item {
    padding: 15px 25px;
    border: 1px solid #ffffff42;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-ttle {
    font-weight: bold;
}

.blog-date {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 15px;
}

.btn-back {
    background: var(--primary-green);
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 3px 20px;
}

.blog-img img {
    border-radius: 5px;
}

.btm-mr {
    display: flex;
    justify-content: end;
    margin-top: 15px;
}

.blog_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 25px;
}

.blog-content {
    padding: 20px 0px;
}

.blog-wrap h4 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-wrap p {
    line-height: 24px;
    margin-bottom: 20px;
}

.blog-wrap h5 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-wrap ul {
    padding-left: 15px;
    margin-bottom: 20px;
}

    .blog-wrap ul li {
        list-style: circle;
    }

.blog-wrap ol li {
    list-style: auto;
}

.blog-wrap ol {
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-wrap table tr td {
    padding: 10px;
    text-align: center;
}

.blog-wrap table tr th {
    padding: 10px;
    text-align: center;
}

.blog-wrap table {
    margin-bottom: 20px;
}
/* Custom styles for game menu dropdown */
.dropdown-menu-dark {
    border: 1px solid #28a745;
}

    .dropdown-menu-dark .dropdown-item {
        color: #e9ecef;
        padding: 10px 15px;
        transition: all 0.3s ease;
    }

        .dropdown-menu-dark .dropdown-item:hover,
        .dropdown-menu-dark .dropdown-item:focus {
            background-color: #28a745;
            color: white;
        }

        .dropdown-menu-dark .dropdown-item.active {
            background-color: #28a745;
            color: white;
            font-weight: 500;
        }

        .dropdown-menu-dark .dropdown-item i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }

#gameMenuDropdown {
    font-weight: 500;
    padding: 10px 15px;
}
/* Success Modal Styles */
.success-box {
    text-align: center;
    padding: 30px;
    background-color: #1a3924;
    color: white;
    border-radius: 10px;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.success-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.success-box .text-success {
    color: #28a745 !important;
    font-weight: 500;
}

.success-box .btn-success {
    background-color: #28a745;
    border: none;
    padding: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .success-box .btn-success:hover {
        background-color: #218838;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

/* OTP Form Styles */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    background: rgba(40, 167, 69, 0.1);
    transition: all 0.2s;
}

    .otp-input:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
        outline: none;
    }

#resendOtpLink {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

    #resendOtpLink:hover:not(.disabled) {
        color: #146c43;
        text-decoration: underline;
    }

    #resendOtpLink.disabled {
        color: #6c757d;
        cursor: not-allowed;
        pointer-events: none;
    }
