/* =========================
   BOTTOM MENU CONTAINER
   ========================= */
#bottomMenu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 72px;
    background: #090911; /* Deep Solid Background */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif; /* Proper Font Integration */
}

.bottom-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 8px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* STANDARD ITEMS */
.menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #94a3b8; /* Balanced Gray for better visibility on dark */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    gap: 4px; /* Icon aur Text ke beech clean gap */
}

.menu-icon {
    font-size: 20px; /* Slightly increased size */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-text {
    font-size: 10px;
    font-weight: 500; /* Medium weight for readability */
    letter-spacing: 0.02em; /* Character spacing for clarity */
    text-transform: capitalize;
}

/* ACTIVE STATE - High Visibility */
.menu-item.active {
    color: #d4af37; /* Solid Brand Gold */
}

    .menu-item.active .menu-text {
        font-weight: 600; /* Active text thoda bold rahega */
    }

    .menu-item.active .menu-icon {
        transform: translateY(-2px); /* Subtle lift */
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); /* Soft glow */
    }

/* =========================
   CENTER FLOATING BUTTON (TRADE)
   ========================= */
.trade-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    top: -20px; /* Increased float for notch feel */
}

.trade-center {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Boundary/Border to separate from footer */
    box-shadow: 0 0 0 6px #090911, 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trade-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff; /* High contrast white */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090911;
    font-size: 22px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.trade-label {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700; /* Extra bold for main action */
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em; /* Pro spacing */
}

/* Interaction States */
.trade-wrapper:hover .trade-center {
    transform: translateY(-4px) scale(1.05);
}

.trade-wrapper.active .trade-label {
    color: #d4af37;
}

/* Mobile Touch Optimization */
@media (max-width: 480px) {
    .menu-text {
        font-size: 9px; /* Very small adjustment for narrow screens */
    }

    .trade-center {
        width: 54px;
        height: 54px;
    }
}
