.tippy-box[data-theme~='gdgr-glass'] {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2) !important;
    color: #f1f5f9 !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.025em !important;
    padding: 8px 12px !important;
}

.timeline-tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vjs-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vjs-author-row svg {
    width: 14px;
    height: 14px;
}

.vjs-time-row {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    color: #94a3b8;
}

.custom-timeline {
    position: relative;
    height: 10px;
    background-color: #1a1b20;
    border-radius: 9999px;
    cursor: pointer;
    overflow: hidden;
    transition: height 0.2s;
}
.custom-timeline:hover {
    height: 12px;
}
.timeline-segment {
    position: absolute;
    height: 100%;
    opacity: 1;
    transition: opacity 0.2s;
    z-index: 5;
    border-right: 2px solid #0d0e12;
    box-sizing: border-box;
}
.timeline-segment:hover {
    opacity: 1;
}
.timeline-unplayed {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: rgba(13, 14, 18, 0.6);
    pointer-events: none;
    z-index: 10;
}
.timeline-handle {
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #fff;
    pointer-events: none;
    z-index: 20;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
