.klic-safety-tip-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }
        .klic-safety-tip-card:hover {
            transform: translateY(-5px);
            border-color: rgba(6, 182, 212, 0.35) !important;
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.08) !important;
            background: rgba(255, 255, 255, 0.03) !important;
        }
        
        [data-theme="light"] .klic-safety-tip-card {
            background: #ffffff !important;
            border-color: rgba(0, 0, 0, 0.08) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        }
        [data-theme="light"] .klic-safety-tip-card:hover {
            background: #ffffff !important;
            box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12) !important;
            border-color: rgba(6, 182, 212, 0.4) !important;
        }
        
        /* Light mode link visibility */
        [data-theme="light"] #ctl00_MainContent_lnkLongUrl {
            color: #1d4ed8 !important; /* High contrast blue */
        }
        [data-theme="light"] #ctl00_MainContent_lnkLongUrl:hover {
            color: #1e40af !important;
            text-decoration: underline !important;
        }

/* ─── Redirect Timeline Hops ─── */
.klic-hops-border {
    border-color: var(--glass-border) !important;
}
.klic-redirect-line {
    background: linear-gradient(180deg, #a855f7 0%, #6366f1 50%, #22c55e 100%) !important;
    opacity: 0.75;
}
.klic-redirect-node {
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}
.klic-redirect-hop:hover .klic-redirect-node {
    transform: scale(1.2);
}
.klic-redirect-node.node-start {
    background-color: #a855f7 !important; /* purple */
    border: 3px solid #0a0a1a;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}
.klic-redirect-node.node-middle {
    background-color: #6366f1 !important; /* indigo */
    border: 3px solid #0a0a1a;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}
.klic-redirect-node.node-end {
    background-color: #22c55e !important; /* green */
    border: 3px solid #0a0a1a;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

/* Light Mode Hops */
[data-theme="light"] .klic-redirect-node.node-start {
    border-color: #ffffff !important;
}
[data-theme="light"] .klic-redirect-node.node-middle {
    border-color: #ffffff !important;
}
[data-theme="light"] .klic-redirect-node.node-end {
    border-color: #ffffff !important;
}

/* Badges for hops */
.badge-hop {
    font-size: 0.7rem;
    padding: 3px 8px;
    font-weight: 600;
}
.badge-hop.badge-start {
    background: rgba(168, 85, 247, 0.15) !important;
    color: #c084fc !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
}
.badge-hop.badge-middle {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
}
.badge-hop.badge-end {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(34, 197, 94, 0.25) !important;
}

/* Light Mode Badges */
[data-theme="light"] .badge-hop.badge-start {
    background: rgba(168, 85, 247, 0.08) !important;
    color: #7c3aed !important;
    border-color: rgba(168, 85, 247, 0.15) !important;
}
[data-theme="light"] .badge-hop.badge-middle {
    background: rgba(99, 102, 241, 0.08) !important;
    color: #4f46e5 !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
}
[data-theme="light"] .badge-hop.badge-end {
    background: rgba(34, 197, 94, 0.08) !important;
    color: #16a34a !important;
    border-color: rgba(34, 197, 94, 0.15) !important;
}

/* Hop type label styling */
.hop-type-label {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hop link typography styling */
.klic-redirect-link {
    transition: color 0.2s ease;
}
.klic-redirect-link.intermediate-hop {
    color: rgba(241, 245, 249, 0.78) !important;
    opacity: 0.85;
}
.klic-redirect-link.intermediate-hop:hover {
    color: #f1f5f9 !important;
    opacity: 1;
}
.klic-redirect-link.final-hop {
    color: #4ade80 !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}
.klic-redirect-link.final-hop:hover {
    color: #22c55e !important;
}

/* Light Mode Links */
[data-theme="light"] .klic-redirect-link.intermediate-hop {
    color: #4b5563 !important;
}
[data-theme="light"] .klic-redirect-link.intermediate-hop:hover {
    color: #111827 !important;
}
[data-theme="light"] .klic-redirect-link.final-hop {
    color: #16a34a !important;
    text-shadow: none;
}
[data-theme="light"] .klic-redirect-link.final-hop:hover {
    color: #15803d !important;
}