/* Category Tags - Based on KVideo */
.category-section {
    position: relative;
    padding: 10px 0;
    z-index: 55;
    background: transparent;
}

.category-container {
    position: relative;
    width: 100%;
}

.category-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 4%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-tag {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.category-tag:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.category-tag.active {
    background: var(--accent-color);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.category-tag:active {
    transform: scale(0.98);
}