/* --- 12. SKILL TOOLTIP SYSTEM --- */
.tooltip-container {
    position: absolute;
    top: 0;
    left: 0;
    background: #737373;
    color: #000000;
    border: 2px solid #000000;
    padding: 10px 15px;
    border-radius: 6px;
    font-family: 'Lexend Exa', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    pointer-events: none;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    max-width: 280px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.tooltip-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
