
 
/* Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

 

:root {
    --gold: #daa520;
    --dark-bg: #0a0a0a;
    --card-bg: #111417;
    --border: #1e2023;
    --text-muted: #848E9C;
}

main {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background-color: #000000;
    padding-bottom: 120px;
    min-height: 100vh;
    border-inline: 1px solid rgb(255 255 255 / 5%);
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
}


/* =========================
        SCROLLBAR
        ========================= */

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background: #f4b64f;
    border-radius: 10px;
}

 



.footer-top {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px 15px 0px 0px;
    background-color: rgb(26, 26, 26);
    border-top: 1px solid rgb(176, 176, 176);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 20px;
}

.footer-sign-up-btn {
    background: radial-gradient(ellipse farthest-corner at right bottom, #fedb37 0%, #fdb931 8%, #9f7928 30%, #8a6e2f 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #fff, #ffffac 8%, #d1b464 25%, #5d4a1f 62.5% 100%);
    color: #000000;
    border: none;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration-line: none;
}

.footer-gift-img {
    height: 40px;
}
.Insights-menu {
    margin-left: 212px;
}

@media(max-width:768px) {
    .footer-gift-img {
        height: auto;
    }
    .Insights-menu {
        margin-left: 40px;
    }

}







.theme-btn {
    background: radial-gradient( ellipse farthest-corner at right bottom, #fedb37 0%, #fdb931 8%, #9f7928 30%, #8a6e2f 40%, transparent 80% ), radial-gradient( ellipse farthest-corner at left top, #fff, #ffffac 8%, #d1b464 25%, #5d4a1f 62.5% 100% );
    border: none;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

    .theme-btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -100px;
        width: 90px;
        height: 90px;
        transform: translateY(-50%);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        filter: blur(20px);
        opacity: 0;
        pointer-events: none;
    }

    .theme-btn:hover::before {
        opacity: 1;
        animation: glossyMove 0.5s ease-out forwards;
    }

@keyframes glossyMove {
    from {
        left: -100px;
    }

    to {
        left: calc(100% + 100px);
    }
}


.avtar-icon {
    background-color: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 30px;
    cursor: pointer;
}

    .avtar-icon :hover {
        background-color: #60606052;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
        border-radius: 30px;
    }
body {
    font-family: 'Poppins', sans-serif;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* 100% Solid & High Visibility Dropdown Fix */
.dropdown-solid {
    background: #111118 !important; /* solid non-transparent background */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.gold-gradient {
    background: linear-gradient(90deg, #bfa02c 0%, #e6c64c 50%, #bfa02c 100%);
    background-size: 200% auto;
    transition: 0.3s;
}

    .gold-gradient:hover {
        background-position: right center;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
    }

#profileDropdown:not(.hidden) {
    animation: dropdownSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1) !important;
}

.border-brand-gold\/30 {
    border-color: rgb(212 175 55 / 0.3) !important;
}
/*img[src="UserPanel_Files/norecord.png"] {
    display: inline !important;
}*/
#commonHeader {
    position: sticky;
    top: 0;
    z-index: 999;
}

/*.pagination .page-item:first-child .page-link {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}
.pagination .page-item:last-child .page-link {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}*/
.pagination .page-item.disabled .page-link, .pagination .page-link:disabled {
    color: #ffffff;
    pointer-events: none;
    background-color: #7c7c7c ;
    border-color: #dee2e6;
    opacity: 0.65;
}