.hover-tooltip {
    position: relative;
    cursor: help;
    color: inherit;
    text-decoration: none;
}

.tooltip-bubble {
    position: absolute;
    z-index: 9999;
    min-width: 200px;
    max-width: 300px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    color: #000;
    font-size: 14px;
    line-height: 1.4;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tooltip-title {
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
}

.tooltip-desc {
    font-weight: normal;
}
