.rune-text {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: auto;
    white-space: nowrap;
}

.rune:hover .rune-text {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.5);
    transform: translateY(15px);
    padding: 10px 20px;
}
