.custom-menu-btn {
    background: transparent;
    border: none;
    color: #d4a53d;
    font-size: 28px;
}

/* DROPDOWN MENU */
.custom-dropdown {
    background: #0b0b0b;
    border: 1px solid #d4a53d;
    border-radius: 14px;
    min-width: 220px;
    padding: 10px 0;
    overflow: hidden;
}

    /* MENU ITEMS */
    .custom-dropdown .dropdown-item {
        color: #fff;
        padding: 12px 18px;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .custom-dropdown .dropdown-item i {
            color: #d4a53d;
            font-size: 18px;
        }

        .custom-dropdown .dropdown-item:hover {
            background: rgba(212,165,61,0.12);
            color: #d4a53d;
        }

.main-wrapper {
    background-color: black;
}
    .main-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 20px 15px 100px;
}

.title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

.dashboard-card {
    border: 1px solid #c99a2e;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 20px;
    background: #0A0A0A;
    background: linear-gradient(180deg,rgba(10, 10, 10, 1) 25%, rgba(56, 55, 55, 1) 44%);
}

.card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #cfa34b;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #d4d4d4;
}

    .stat-row:last-child {
        border-bottom: none;
    }

.stat-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-value {
    color: #fff;
    font-weight: 700;
}

.gold {
    color: #d8a63a;
}

.small-text {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}
.download-btn {
    display: inline-block;
    text-decoration: none;
}
.download-btn {
    width: 50%;
    border: none;
    border-radius: 50px;
    padding: 10px;
    background: linear-gradient(90deg,#f7df8b,#c88a09,#f4d86a);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 25px;
    text-align: center;
}

.down-btn {
    text-align: center;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #050505;
    border-top: 1px solid #222;
    padding: 10px 0;
    z-index: 999;
}

    .bottom-nav .nav-item {
        flex: 1;
        text-align: center;
        color: #bbb;
        font-size: 14px;
    }

        .bottom-nav .nav-item i {
            display: block;
            font-size: 16px;
            margin-bottom: 4px;
        }

    .bottom-nav .active {
        color: #d6a741;
    }

.trade-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg,#f3d67c,#8a5a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -35px;
    border: 4px solid #000;
    color: #000;
    font-weight: bold;
}

.custom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 9999;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 90px;
    position: relative;
}

.footer-item {
    flex: 1;
    text-align: center;
    color: #bfbfbf;
    font-size: 13px;
    text-decoration: none;
    position: relative;
}

    .footer-item i {
        display: block;
        font-size: 22px;
        margin-bottom: 4px;
    }

    .footer-item.active {
        color: #d7a73f;
    }

/* Center Trade Button */
.trade-wrapper {
    position: relative;
    top: -22px;
}

.trade-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at top,#f7df8b,#d29a19,#7b5200);
    border: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 0 15px rgba(255,196,0,0.45);
}

    .trade-btn img {
        width: 38px;
        height: 38px;
        object-fit: contain;
    }

.trade-text {
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
}

.main-wrapper {
    max-width: 900px; /* SAME WIDTH AS YOUR PAGE */
    margin: auto;
    background: #000;
    min-height: 100vh;
    position: relative;
}

/* FOOTER */
.custom-footer {
    width: 100%;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
    /* IMPORTANT */
    max-width: 900px;
    margin: auto;
    position: fixed;
    bottom: 0;
    /* CENTER FOOTER */
    left: 50%;
    transform: translateX(-50%);
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 90px;
}

.footer-item {
    flex: 1;
    text-align: center;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 13px;
}

    .footer-item i {
        display: block;
        font-size: 20px;
        margin-bottom: 4px;
    }

    .footer-item.active {
        color: #d4a53d;
    }

.trade-wrapper {
    position: relative;
    top: -22px;
}

.trade-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at top,#ffe28a,#c88d0c,#6e4700);
    border: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

    .trade-btn img {
        width: 40px;
    }

ul.dropdown-menu.custom-dropdown.show {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(-245px, 65px) !important;
}

@media(max-width:576px) {
    ul.dropdown-menu.custom-dropdown.show {
        position: absolute;
        inset: 0px auto auto 0px;
        margin: 0px;
        transform: translate(-15px, 75px) !important;
    }

    .title {
        font-size: 24px;
    }

    .dashboard-card {
        padding: 15px;
    }

    .download-btn {
        width: 100%;
        border: none;
        border-radius: 50px;
        padding: 10px;
        background: linear-gradient(90deg,#f7df8b,#c88a09,#f4d86a);
        color: #000;
        font-weight: 600;
        font-size: 14px;
        margin: 10px 0 25px;
        text-align: center;
    }
}
