/* Sticky Quick Nav Styles */
.irqn-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.irqn-wrapper>* {
    pointer-events: auto;
    /* Re-enable clicks for children */
}

.irqn-menu {
    list-style: none;
    margin: 0;
    padding: 16px 12px;
    background: rgba(16, 23, 54, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.irqn-menu li {
    margin: 0;
    padding: 0;
}

.irqn-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: #a8b2d1;
    position: relative;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.irqn-link::after {
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.irqn-link:hover::after,
.irqn-link.active::after {
    background: #5dade2;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(93, 173, 226, 0.6);
}

.irqn-link.active::after {
    background: #d100b9;
    box-shadow: 0 0 10px rgba(209, 0, 185, 0.6);
}

.irqn-link span {
    position: absolute;
    right: 24px;
    background: rgba(16, 23, 54, 0.9);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.irqn-link:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.irqn-invest-btn {
    background: linear-gradient(135deg, #d100b9, #7b47fb);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(209, 0, 185, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.irqn-invest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 0, 185, 0.6);
}

@media (max-width: 768px) {
    .irqn-wrapper {
        bottom: 20px;
        right: 20px;
    }

    .irqn-invest-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}