/* DragonPay Bottom Navigation - 100% Safe & Premium */
.dragon-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 12px;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 22px 22px 0 0;
    backdrop-filter: blur(12px);
    width: 100%;
    width: 410px;
    margin: 0 auto;
}

.dragon-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    font-size: 10.5px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 60px;
}

.dragon-tab i {
    font-size: 23px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.dragon-tab span {
    transition: all 0.3s ease;
}

/* ACTIVE STATE - Purple + Bounce + Dot */
.dragon-tab.active {
    color: #5a3f8c;
    font-weight: 700;
}

.dragon-tab.active i {
    color: #5a3f8c;
    transform: scale(1.22);
}

.dragon-tab.active span {
    color: #5a3f8c;
}

/* Chhota sa active dot upar */
.dragon-tab.active::before {
    content: '';
    position: absolute;
    top: -10px;
    width: 7px;
    height: 7px;
    background: #5a3f8c;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(90, 63, 140, 0.7);
}

/* Hover Effect (optional - bahut pro lagta hai) */
.dragon-tab:hover:not(.active) {
    background: #f8f5ff;
    color: #777;
}