/* Game tooltip — dark RPG style */
.game-tooltip {
    position: fixed;
    z-index: 9999;
    display: none;
    pointer-events: none;
    max-width: 420px;
    min-width: 240px;
    padding: 14px 18px;
    background: linear-gradient(180deg, #1a1714 0%, #121010 100%);
    border: 1px solid #4a4030;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(196,163,90,0.08);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #c8c0b0;
    line-height: 1.5;
}

.game-tooltip .tt-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.game-tooltip .tt-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a4030, transparent);
    margin: 6px 0;
}

.game-tooltip .tt-stat {
    display: flex;
    justify-content: space-between;
    padding: 1px 0;
}

.game-tooltip .tt-stat-label {
    color: #8a8070;
}

.game-tooltip .tt-stat-value {
    color: #d4d0c8;
    font-weight: 500;
}

.game-tooltip .tt-stat-bonus {
    color: #1eff00;
}

.game-tooltip .tt-stat-worse {
    color: #ff4444;
}

.game-tooltip .tt-skill {
    color: #c4a35a;
    font-weight: 500;
    margin-top: 4px;
}

.game-tooltip .tt-element {
    font-size: 11px;
    margin-top: 2px;
}

.game-tooltip .tt-ilvl {
    font-size: 11px;
    color: #6a6050;
    margin-top: 4px;
}
