.numbertag a,
.finetags a {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 14px;
    margin: 0 10px 10px 0;
    
    /* Liquid Glass Style */
    background: linear-gradient(180deg, rgba(58, 61, 68, 0.75) 0%, rgba(42, 45, 52, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    
    color: #e2e2e2;
    font: 600 12px/1 'Inter', 'Roboto', 'Trebuchet MS', Tahoma, sans-serif;
    text-decoration: none;
    transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
}

.numbertag a:hover,
.finetags a:hover {
    background: linear-gradient(180deg, rgba(68, 71, 78, 0.88) 0%, rgba(50, 53, 60, 0.9) 100%);
    border-color: #920010;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(146, 0, 16, 0.4);
}

.numbertag a > span {
    display: inline-block;
}

.numbertag .tagname {
    padding-right: 8px;
}

.numbertag .tagcount {
    font-size: 11px;
    color: #ffa936;
    font-weight: 700;
}