/* ========================================
   TOOLTIPS POUR STREAMERS HORS LIGNE
   ======================================== */
.streamers-list .streamer-card {
    position: relative !important;
    overflow: visible !important;
}

.streamer-card:hover {
    z-index: 99999 !important;
}

/* Style de base - position gérée par JS */
.streamer-card .streamer-tooltip {
    display: none;
    position: fixed;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 45, 0.98));
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    min-width: 400px;
    max-width: 500px;
    width: max-content;
    z-index: 999999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    pointer-events: none;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.tooltip-last-stream {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
}

.tooltip-last-stream-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.tooltip-last-stream-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooltip-last-stream-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(239, 68, 68, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tooltip-last-stream-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.tooltip-last-stream-ago {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.tooltip-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
}

.tooltip-game {
    font-size: 1rem;
    color: rgba(145, 70, 255, 1);
    font-weight: 600;
    margin-bottom: 12px;
    white-space: normal;
    word-wrap: break-word;
}

.tooltip-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(145, 70, 255, 0.5);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
}

.tooltip-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-stat {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tooltip-details {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 0.75rem;
}

.tooltip-badge {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tooltip-badge-partner {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.3), rgba(165, 107, 255, 0.3));
    border-color: rgba(145, 70, 255, 0.5);
    color: rgba(165, 107, 255, 1);
    font-weight: 600;
}

.tooltip-badge-affiliate {
    background: rgba(255, 111, 177, 0.2);
    border-color: rgba(255, 111, 177, 0.4);
    color: rgba(255, 111, 177, 1);
    font-weight: 600;
}

.tooltip-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tooltip-tag {
    font-size: 0.75rem;
    color: rgba(255, 111, 177, 1);
    background: rgba(255, 111, 177, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 111, 177, 0.3);
}

.tooltip-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.tooltip-labels {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tooltip-label-badge {
    font-size: 0.7rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Force overflow visible */
.streamers-list .streamer-card,
.streamer-card {
    overflow: visible !important;
}
